当前位置: 首页>>代码示例>>PHP>>正文


PHP Tag::setTitleSeparator方法代码示例

本文整理汇总了PHP中Phalcon\Tag::setTitleSeparator方法的典型用法代码示例。如果您正苦于以下问题:PHP Tag::setTitleSeparator方法的具体用法?PHP Tag::setTitleSeparator怎么用?PHP Tag::setTitleSeparator使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Phalcon\Tag的用法示例。


在下文中一共展示了Tag::setTitleSeparator方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testSetTitleSeparator

 public function testSetTitleSeparator()
 {
     Tag::setTitle('Title');
     Tag::appendTitle('Class');
     $this->assertEquals(Tag::getTitle(), '<title>TitleClass</title>' . PHP_EOL);
     Tag::setTitle('Title');
     Tag::setTitleSeparator('|');
     Tag::appendTitle('Class');
     $this->assertEquals(Tag::getTitle(), '<title>Title|Class</title>' . PHP_EOL);
     $this->assertEquals(Tag::getTitleSeparator(), '|');
     Tag::setTitle('Title');
     Tag::setTitleSeparator('|');
     Tag::prependTitle('Class');
     $this->assertEquals(Tag::getTitle(), '<title>Class|Title</title>' . PHP_EOL);
 }
开发者ID:UqiOnline,项目名称:cphalcon7,代码行数:15,代码来源:TagTest.php

示例2: initialize

 public function initialize()
 {
     $this->view->setTemplateAfter('main');
     Tag::setTitle('财途网');
     Tag::setTitleSeparator(' - ');
     $this->_initLibrary();
     $this->_initSiteConfig();
     $this->_initParams();
     $this->_initMenu();
     $actionName = $this->dispatcher->getActionName();
     $controllName = $this->dispatcher->getHandlerClass();
     $dispatcher = $controllName . '-' . $actionName;
     $this->_initPageTitle($dispatcher);
     $this->_initMetaData($dispatcher);
     $this->view->setVar("server", $_SERVER);
     $this->view->setVar("bdtongji", true);
 }
开发者ID:xujianjun,项目名称:touzilicai,代码行数:17,代码来源:ControllerBase.php

示例3: setTitleSeparator

 public static function setTitleSeparator($titleSeparator)
 {
     parent::setTitleSeparator($titleSeparator);
 }
开发者ID:mattvb91,项目名称:cphalcon,代码行数:4,代码来源:Tag.php

示例4: function

});
/**
 * If the configuration specify the use of metadata adapter use it or use memory otherwise
 */
$di->set('modelsMetadata', function () {
    return new MetaData();
});
/**
 * Start the session the first time some component request the session service
 */
$di->set('session', function () {
    $session = new SessionAdapter();
    $session->start();
    return $session;
});
/**
 * Register the flash service with custom CSS classes
 */
$di->set('flash', function () {
    return new FlashSession(array('error' => 'alert alert-danger', 'success' => 'alert alert-success', 'notice' => 'alert alert-info'));
});
/**
 * Register a user component
 */
$di->set('helpers', function () {
    return new Helpers();
});
$di->set('tag', function () {
    Tag::setTitleSeparator(" | ");
    return new Tag();
});
开发者ID:Kefir92,项目名称:home-bookkeeping,代码行数:31,代码来源:services.php


注:本文中的Phalcon\Tag::setTitleSeparator方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。