PHP code example of wwwision / neos-modulecomponents
1. Go to this page and download the library: Download wwwision/neos-modulecomponents library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
wwwision / neos-modulecomponents example snippets
declare(strict_types=1);
namespace Some\Package\Controller;
use Neos\Fusion\View\FusionView;
use Neos\Neos\Controller\Module\AbstractModuleController;
final class SomeModuleController extends AbstractModuleController
{
protected $defaultViewObjectName = FusionView::class;
public function indexAction(): void
{
}