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 Syzygy\SyzygyBase\Command; | |
| /*************************************************************** | |
| * Copyright notice | |
| * | |
| * (c) 2015 Sascha Egerer <sascha.egerer@gmail.com> | |
| * All rights reserved | |
| * | |
| * This script is part of the TYPO3 project. The TYPO3 project is |
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
| <div xmlns="http://www.w3.org/1999/xhtml" lang="en" | |
| xmlns:v="http://typo3.org/ns/FluidTYPO3/Vhs/ViewHelpers" | |
| xmlns:flux="http://typo3.org/ns/FluidTYPO3/Flux/ViewHelpers" | |
| xmlns:f="http://typo3.org/ns/fluid/ViewHelpers" | |
| xmlns:base="http://typo3.org/ns/MRM/T3base/ViewHelpers"> | |
| <f:layout name="Content"/> | |
| <f:section name="Configuration"> | |
| <flux:form id="googlemaps" wizardTab="T3Base_example" options="{icon: 'EXT:t3base_example/Resources/Public/Icons/Content/GoogleMaps.png'}"> |
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
| <div xmlns="http://www.w3.org/1999/xhtml" lang="en" | |
| xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers" | |
| xmlns:v="http://typo3.org/ns/FluidTYPO3/Vhs/ViewHelpers" | |
| xmlns:flux="http://typo3.org/ns/FluidTYPO3/Flux/ViewHelpers"> | |
| <f:layout name="Page" /> | |
| <f:section name="Configuration"> | |
| <!-- Make this page type configurable --> |
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 Onedrop\Common\Service; | |
| /*************************************************************** | |
| * Copyright notice | |
| * | |
| * (c) 2015 Hans Höchtl <hhoechtl@1drop.de> | |
| * All rights reserved | |
| * | |
| * This script is part of the TYPO3 project. The TYPO3 project is | |
| * free software; you can redistribute it and/or modify |
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 My\Ext\Scheduler\Task; | |
| /** | |
| * This file is part of the TYPO3 CMS project. | |
| * | |
| * It is free software; you can redistribute it and/or modify it under | |
| * the terms of the GNU General Public License, either version 2 | |
| * of the License, or any later version. | |
| * |
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
| # Installation on Dell XPS | |
| # Please also consult official documentation: | |
| # https://wiki.archlinux.org/index.php/Installation_Guide | |
| # https://wiki.archlinux.org/index.php/Dell_XPS_13_(9360) | |
| # https://wiki.archlinux.org/index.php/Dell_XPS_15_(9550) | |
| # Enter BIOS with F2 and configure: | |
| # - "System Configuration" > "SATA Operation": "AHCI" | |
| # - "Secure Boot" > "Secure Boot Enable": "Disabled" |
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
| cache: | |
| key: "$CI_COMMIT_REF_NAME/$CI_JOB_STAGE" | |
| paths: | |
| - .composer/ | |
| before_script: | |
| # Install git on machine | |
| - apk add git --update | |
| stages: |
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
| # File EXT:your_ext/Configuration/Yaml/MyCustomActionBackend.yaml | |
| TYPO3: | |
| CMS: | |
| Form: | |
| prototypes: | |
| # add our finisher to the 'standard' form prototype | |
| standard: | |
| formElementsDefinition: | |
| Form: | |
| formEditor: |
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
| cache: | |
| # Use a cache for every branch and every stage | |
| key: "$CI_COMMIT_REF_NAME/$CI_JOB_STAGE" | |
| # Cache the path .cache within the project workspace | |
| paths: | |
| - .cache/ | |
| variables: | |
| # Tell composer to save and load it's cache within the .cache folder | |
| COMPOSER_CACHE_DIR: "$CI_PROJECT_DIR/.cache/composer" |