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
config.tx_extbase{ | |
persistence{ | |
enableAutomaticCacheClearing = 1 | |
updateReferenceIndex = 0 | |
classes{ | |
Vendor\Extension\Domain\Model\Pages { | |
mapping { | |
tableName = pages | |
columns { |
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
/** | |
* Equalizer for height of elements | |
*/ | |
$('.equalizer').each(function() { | |
var heights = $(this).find('.watch').map(function() { | |
return $(this).height(); | |
}).get(), | |
maxHeight = Math.max.apply(null, heights); |
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
'Me.My:NodeType': | |
# superTypes and ui stuff here | |
properties: | |
yourProperty: #adjust to your needs | |
type: references | |
ui: | |
label: 'referenced stuff' #adjust to your needs | |
inspector: | |
group: general #adjust to your needs | |
editorOptions: |
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 | |
use TYPO3\CMS\Core\Utility\GeneralUtility; | |
if (!defined('TYPO3_MODE')) { | |
die('Access denied.'); | |
} | |
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['restrictfe']['enable'] = TRUE; | |
/** | |
* !!! IMPORTANT !!! |
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
<f:layout name="Default" /> | |
<f:section name="Main"> | |
<button type="button" class="close"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button> | |
<div class="row"> | |
<div class="col-md-9"> | |
<div class="row"> | |
<f:for each="{suggest}" as="sug"> | |
<div class="col-sm-6 col-md-4"> | |
<div class="thumbnail"> |
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\MyExt\Solr\IndexQueue; | |
class PageIndexer extends \Tx_Solr_IndexQueue_PageIndexer | |
{ | |
/** | |
* @param \Tx_Solr_IndexQueue_Item $item | |
* | |
* @return bool |
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 | |
use TYPO3\CMS\Core\Utility\GeneralUtility; | |
if (\TYPO3\CMS\Core\Core\Bootstrap::getInstance()->getApplicationContext()->isDevelopment()) { | |
/** | |
* This override adds the possibility to use multitree subdomains without domain records (for SHARED_DB, vagrant, etc.) | |
* You can override the mappings or undo the override by creating a config file inside conf.d | |
* | |
* The override PageRepository checks for $subdomain . exec('hostname -f') |
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 | |
/** | |
* Copyright notice | |
* | |
* (c) Onedrop Solutions GmbH & Co. KG, www.1drop.de | |
* | |
* @author Hans Höchtl <[email protected]> | |
* | |
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later | |
*/ |
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 | |
/** | |
* Copyright notice | |
* | |
* (c) Onedrop Solutions GmbH & Co. KG, www.1drop.de | |
* | |
* @author Hans Höchtl <[email protected]> | |
* | |
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later | |
*/ |
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" | |
f:schemaLocation="https://fluidtypo3.org/schemas/fluid-master.xsd" | |
xmlns:flux="http://typo3.org/ns/FluidTYPO3/Flux/ViewHelpers" | |
flux:schemaLocation="https://fluidtypo3.org/schemas/flux-master.xsd" | |
xmlns:v="http://typo3.org/ns/FluidTYPO3/Vhs/ViewHelpers" | |
v:schemaLocation="https://fluidtypo3.org/schemas/vhs-master.xsd"> | |
<f:layout name="Page" /> | |
<f:section name="Configuration"> |