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 class="detailimages" data-aos="fade-up"> | |
<div class="slick"> | |
<f:for each="{product.positionImages}" as="image"> | |
<div> | |
<a class="slickLightbox" href="<f:uri.image image='{image}' />"> | |
<f:image image="{image}" height="320c" treatIdAsReference="1" alt="{image.originalResource.alternative}" title="{image.originalResource.title}"/> | |
</a> | |
</div> | |
</f:for> | |
</div> |
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
ältere Typo3 Versionen haben noch keine config.yaml, dort ist die Slug config in der LocalConfiguration.php zu machen | |
im Abschnitt "EXTCONF" => 'realurl' | |
'webxCoursesnewShow' => [ | |
[ | |
'GETvar' => 'tx_webxcoursesnew_main[course]', | |
'lookUpTable' => [ | |
'addWhereClause' => ' AND NOT deleted', |
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 class="backBtnWrap"> | |
<a class="btnMore backBtn" onclick="window.history.back()">Zurück</a> | |
</div> |
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
public static function cleanupFilename($filename){ | |
if(substr_count($filename, '.') > 1){ | |
$temp = GeneralUtility::trimExplode('.',$filename, true); | |
$count = count($temp); | |
for($i = 0; $i < $count; $i++){ | |
if($i == ($count-1)){ | |
$filenameClean = $filenameClean.'.'.$temp[$i]; | |
} | |
else{ |
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 = GeneralUtility::makeInstance(CacheManager::class)->getCache('cache_runtime'); | |
$cache->flush(); | |
######################## | |
$TCE = new \TYPO3\CMS\Core\DataHandling\DataHandler(); | |
$TCE->admin = 1; | |
$TCE->start([], []); | |
$TCE->clear_cacheCmd('all'); |
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
$btl = bin2hex(random_bytes(4)); |
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
$task = $this->scheduler->fetchTask(24); | |
$this->scheduler->executeTask($task); | |
/** | |
* @var Scheduler Local scheduler instance | |
*/ | |
protected $scheduler; |
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
$temp = parse_url($trackCurrent[0]['http_referrer'], $component = -1 ); |
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
swal({ | |
title: "Info", | |
text: "Bitte überprüfen Sie ihre Email-Adresse! Please check your email adress! Si prega di verificare l'email! S'il vous plaît vérifier vos données!", | |
type: "info", | |
confirmButtonColor: "#DD6B55", | |
confirmButtonText: "OK", | |
closeOnConfirm: true | |
}); |
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
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { | |
$emailErr = "Invalid email format"; | |
} |