本文整理匯總了PHP中Templates::helpers方法的典型用法代碼示例。如果您正苦於以下問題:PHP Templates::helpers方法的具體用法?PHP Templates::helpers怎麽用?PHP Templates::helpers使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Templates
的用法示例。
在下文中一共展示了Templates::helpers方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: initialize
/**
* Инициализация модуля
*
* @param array $options
*/
public static function initialize(array $options = array())
{
self::options($options);
self::$helpers = Object::Aggregator();
if (Core::option('deprecated')) {
self::$options['templates_root'][] = Core::tao_dir() . '/deprecated/views';
}
}
示例2: initialize
/**
* Инициализация модуля
*
* @param array $options
*/
public static function initialize(array $options = array())
{
self::$helpers = Object::Aggregator()->fallback_to(Templates::helpers());
foreach (self::$options as $k => $v) {
self::$options[$k] = str_replace('%files%', Core::option('files_name'), $v);
}
self::options($options);
self::use_helper('forms', 'Templates.HTML.Helpers.Forms');
self::use_helper('tags', 'Templates.HTML.Helpers.Tags');
self::use_helper('assets', 'Templates.HTML.Helpers.Assets');
self::use_helper('maps', 'Templates.HTML.Helpers.Maps');
}
示例3: initialize
/**
* Инициализирует модуль
*
*/
public static function initialize()
{
self::$helpers = Object::Aggregator()->fallback_to(Templates::helpers());
}