<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
labor-digital / typo3-page-layout-form-element example snippets
use LaborDigital\T3ba\ExtConfig\ExtConfigContext;
use LaborDigital\T3ba\ExtConfigHandler\Table\ConfigureTcaTableInterface;
use LaborDigital\T3ba\Tool\Tca\Builder\Type\Table\TcaTable;
class YourTable implements ConfigureTcaTableInterface
{
/**
* @inheritDoc
*/
public static function configureTable(TcaTable $table, ExtConfigContext $context) : void{
$type = $table->getType();
$type->getField('content')->applyPreset()->pageLayout();
}
}
namespace LaborDigital\YourExt\Domain\Model;
use LaborDigital\T3plfe\Domain\Model\PageLayout;use TYPO3\CMS\Extbase\DomainObject\AbstractEntity;
class MagazineArticle extends AbstractEntity
{
/**
* This field will hold the entity for the page layout
* @var \LaborDigital\T3plfe\Domain\Model\PageLayout
*/
protected $content;
/**
* Return the page layout, MIND the "?", this could be null, if no page layout is enabled
* @return PageLayout
*/
public function getContent(): ?PageLayout
{
return $this->content;
}
}
use LaborDigital\T3ba\ExtConfig\SiteBased\SiteConfigContext;
use LaborDigital\T3fa\ExtConfigHandler\Api\ApiConfigurator;
use LaborDigital\T3fa\ExtConfigHandler\Api\BundleCollector;
use LaborDigital\T3fa\ExtConfigHandler\Api\ConfigureApiInterface;
use LaborDigital\T3fa\ExtConfigHandler\Api\Resource\ResourceCollector;
use LaborDigital\T3plfe\Api\Bundle\PageLayoutBundle;
class Api implements ConfigureApiInterface{
public static function registerBundles(BundleCollector $collector) : void{
// Now the api knows how to handle page layout elements
$collector->register(PageLayoutBundle::class);
}
public static function registerResources(ResourceCollector $collector,SiteConfigContext $context) : void{ }
public static function configureSite(ApiConfigurator $configurator,SiteConfigContext $context) : void{ }
}
use LaborDigital\Typo3FrontendApi\ContentElement\Controller\AbstractContentElementController;
use LaborDigital\Typo3FrontendApi\ContentElement\Controller\ContentElementControllerContext;
abstract class DummyContentElement extends AbstractContentElementController
{
public function handle(ContentElementControllerContext $context): void
{
$context->setInitialStateQuery('myModel', [
'id' => $context->getRequest()->getQueryParams()['id'],
'
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.