本文整理匯總了PHP中Versions::addToTemplate方法的典型用法代碼示例。如果您正苦於以下問題:PHP Versions::addToTemplate方法的具體用法?PHP Versions::addToTemplate怎麽用?PHP Versions::addToTemplate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Versions
的用法示例。
在下文中一共展示了Versions::addToTemplate方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: welcomeScreen
/**
* Add the welcome screen
*
* @return string
*/
protected function welcomeScreen()
{
\System::loadLanguageFile('explain');
/** @var \BackendTemplate|object $objTemplate */
$objTemplate = new \BackendTemplate('be_welcome');
$objTemplate->messages = \Message::generate(false, true);
// HOOK: add custom messages
if (isset($GLOBALS['TL_HOOKS']['getSystemMessages']) && is_array($GLOBALS['TL_HOOKS']['getSystemMessages'])) {
$arrMessages = array();
foreach ($GLOBALS['TL_HOOKS']['getSystemMessages'] as $callback) {
$this->import($callback[0]);
$strBuffer = $this->{$callback[0]}->{$callback[1]}();
if ($strBuffer != '') {
$arrMessages[] = $strBuffer;
}
}
if (!empty($arrMessages)) {
$objTemplate->messages .= "\n" . implode("\n", $arrMessages);
}
}
// Add the versions overview
\Versions::addToTemplate($objTemplate);
$objTemplate->welcome = sprintf($GLOBALS['TL_LANG']['MSC']['welcomeTo'], \Config::get('websiteTitle'));
$objTemplate->showDifferences = specialchars(str_replace("'", "\\'", $GLOBALS['TL_LANG']['MSC']['showDifferences']));
$objTemplate->systemMessages = $GLOBALS['TL_LANG']['MSC']['systemMessages'];
$objTemplate->shortcuts = $GLOBALS['TL_LANG']['MSC']['shortcuts'][0];
$objTemplate->shortcutsLink = $GLOBALS['TL_LANG']['MSC']['shortcuts'][1];
$objTemplate->editElement = specialchars($GLOBALS['TL_LANG']['MSC']['editElement']);
return $objTemplate->parse();
}