PHP code example of cron-eu / cron-context
1. Go to this page and download the library: Download cron-eu/cron-context library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
cron-eu / cron-context example snippets
defined('TYPO3') || die('Access denied.');
// Prevent double loading
if (defined('CRON_TYPO3_ADDITIONALCONFIGURATION')) {
return;
}
YPO3\CMS\Core\Core\Environment::getConfigPath() . '/system/additional')
// Add local configuration
->addConfiguration(\TYPO3\CMS\Core\Core\Environment::getConfigPath() . '/system/additional/local.php')
// Load configuration files (maybe cached)
->loadConfiguration()
// Add context name to sitename (if in development context)
->appendContextNameToSitename();
unset($confLoader);
defined('TYPO3') || die('Access denied.');