This file contains 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
[ | |
'ctrl' => [ | |
'requestUpdate' => 'mySelect,myOtherSelect' | |
] | |
] |
This file contains 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
headerData { | |
10 = TEXT | |
10 { | |
typolink { | |
parameter.data = page:uid | |
parameter.intval = 1 | |
useCacheHash = 0 | |
addQueryString = 1 | |
addQueryString.method = GET | |
addQueryString.exclude = id, cHash, tx_pagebrowse_pi1[page] |
This file contains 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
use setasign\Fpdi\Fpdi; | |
-- -- -- -- | |
header("X-Robots-Tag: noindex", true); | |
$this->response->setHeader('Cache-control', 'public', TRUE); | |
$this->response->setHeader('Content-Description', 'File transfer', TRUE); | |
$this->response->setHeader('Content-Disposition', 'attachment; filename=students.pdf', TRUE); | |
$this->response->setHeader('Content-type:application/pdf; charset=utf-8', TRUE); | |
$this->response->sendHeaders(); |
This file contains 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
register_argc_argv = On |
This file contains 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
[page|uid = 12] | |
mod.wizards.newContentElement.wizardItems.special.show := removeFromList() | |
[global] |
This file contains 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
plugin.tx_solr.index.queue.pages.indexer.authorization { | |
username = username | |
password = password | |
} |
This file contains 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 | |
$TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT'] = array( | |
'postVarSets' => array( | |
'_DEFAULT' => array( | |
'controller' => array( | |
array( | |
'GETvar' => 'tx_EXT_pi1[action]', | |
'noMatch' => 'bypass' | |
), | |
array( |
This file contains 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 Slider\Slider\Hooks; | |
use TYPO3\CMS\Backend\Utility\BackendUtility; | |
use TYPO3\CMS\Backend\View\PageLayoutView; | |
use TYPO3\CMS\Backend\View\PageLayoutViewDrawItemHookInterface; | |
use TYPO3\CMS\Core\Utility\GeneralUtility; | |
/** | |
* Contains a preview rendering for the page module of CType="slider" |
This file contains 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 class="ce-column | |
{f:if(condition:'{gallery.count.columns}<{data.imagecols}',then:' | |
col-sm-{f:cObject(typoscriptObjectPath:\'lib.math\',data:\'12/{data.imagecols}\')} | |
',else:' | |
col-sm-{f:cObject(typoscriptObjectPath:\'lib.math\',data:\'12/{gallery.count.columns}\')} | |
')} | |
"> |
This file contains 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
google.maps.event.addDomListener(window, 'load', init); | |
var map; | |
function init() { | |
...... | |
// Resizer | |
google.maps.event.addDomListener(window, 'resize', function() { | |
map.setCenter(mapOptions.center); | |
}); | |
} |
NewerOlder