本文整理汇总了PHP中Cell::script方法的典型用法代码示例。如果您正苦于以下问题:PHP Cell::script方法的具体用法?PHP Cell::script怎么用?PHP Cell::script使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cell
的用法示例。
在下文中一共展示了Cell::script方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: do_meta_2
function do_meta_2()
{
$config = Config::get();
$html = Cell::title(Text::parse($config->page_title, '->text'), array(), 2) . NL;
$html .= Cell::__('[if IE]>' . Cell::script($config->protocol . 'html5shiv.googlecode.com/svn/trunk/html5.js') . '<![endif]', 2, "") . NL;
echo Filter::apply('meta', $html, 2);
}
示例2: strip_tags
if (isset($config->article->description)) {
$description = strip_tags($config->article->description);
} else {
if (isset($config->page->description)) {
$description = strip_tags($config->page->description);
} else {
$description = strip_tags($config->description);
}
}
$html .= Cell::meta('description', $description, array(), 2) . NL;
$html .= Cell::meta('author', strip_tags($config->author), array(), 2) . NL;
echo Filter::apply('meta', $html, 1);
}, 10);
Weapon::add('meta', function () {
$config = Config::get();
$html = Cell::title(strip_tags($config->page_title), array(), 2) . NL;
$html .= Cell::_('[if IE]>' . Cell::script($config->protocol . 'html5shiv.googlecode.com/svn/trunk/html5.js') . '<![endif]', 2, "") . NL;
echo Filter::apply('meta', $html, 2);
}, 20);
Weapon::add('meta', function () {
$config = Config::get();
$speak = Config::speak();
$html = Cell::link($config->url . '/favicon.ico', 'shortcut icon', 'image/x-icon', array(), 2) . NL;
$html .= Cell::link($config->url_current, 'canonical', null, array(), 2) . NL;
$html .= Cell::link($config->url . '/sitemap', 'sitemap', null, array(), 2) . NL;
$html .= Cell::link($config->url . '/feed/rss', 'alternate', 'application/rss+xml', array('title' => $speak->feeds . $config->title_separator . $config->title), 2) . O_END;
echo Filter::apply('meta', $html, 3);
}, 30);
Weapon::add('SHIPMENT_REGION_TOP', function () {
Weapon::fire('meta');
}, 10);