Directions for getting windows 10 to work with virtualbox 6.0.12.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Test\BeModule\Controller; | |
use Neos\Flow\Annotations as Flow; | |
use Neos\Flow\Mvc\View\ViewInterface; | |
use Neos\Fusion\View\FusionView; | |
use Neos\Neos\Controller\Module\AbstractModuleController; | |
class ExampleController extends AbstractModuleController | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Foo\Bar\Service; | |
use Neos\Cache\CacheAwareInterface; | |
use Neos\Flow\Annotations as Flow; | |
use Neos\Neos\Domain\Model\User; | |
/** | |
* The user service provides general context information about the currently | |
* authenticated backend user. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Acme\Api\Controller; | |
use Acme\Api\Domain\Repository\ResourceRepository; | |
use Acme\Api\Utility\AggregateReflectionHelper; | |
use Acme\Api\Utility\ResourceTypeHelper; | |
use Acme\Api\Utility\ViewConfigurationHelper; | |
use Doctrine\Common\Inflector\Inflector; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Neos: | |
Flow: | |
resource: | |
targets: | |
localWebDirectoryPersistentResourcesTarget: | |
target: 'Neos\Flow\ResourceManagement\Target\FileSystemSymlinkTarget' | |
targetOptions: | |
relativeSymlinks: TRUE | |
subdivideHashPathSegment: TRUE | |
localWebDirectoryStaticResourcesTarget: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Backup | |
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
# Restore | |
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Vendor\Site\Command; | |
use Vendor\Site\Service\SocialSharesService; | |
use TYPO3\Eel\FlowQuery\FlowQuery; | |
use TYPO3\Flow\Annotations as Flow; | |
use TYPO3\Flow\Cli\CommandController; | |
use TYPO3\Flow\Configuration\ConfigurationManager; | |
use TYPO3\Flow\Http\Request; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Your\Package\ViewHelpers\Format; | |
use TYPO3\Flow\Annotations as Flow; | |
use TYPO3\Fluid\Core\ViewHelper\AbstractViewHelper; | |
/** | |
* ViewHelper rendering the given HTML string through HTMLPurifier | |
*/ | |
class PurifyViewHelper extends AbstractViewHelper { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Flow 3.0+ | |
Flow_Session_Storage: | |
persistent: TRUE | |
Flow_Session_MetaData: | |
persistent: TRUE | |
# Flow 2.0-2.3 (only works with Surf deployment – not flow:cache:flush command) | |
Flow_Session_Storage: | |
backendOptions: |
NewerOlder