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


PHP AdminController::initToolbarTitle方法代码示例

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


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

示例1: initToolbarTitle

 public function initToolbarTitle()
 {
     parent::initToolbarTitle();
     if ($product = $this->loadObject(true)) {
         if ((bool) $product->id && $this->display != 'list' && isset($this->toolbar_title[2])) {
             $this->toolbar_title[2] = $this->toolbar_title[2] . ' (' . $this->product_name . ')';
         }
     }
 }
开发者ID:rongandat,项目名称:vatfairfoot,代码行数:9,代码来源:AdminProductsController.php

示例2: initToolbarTitle

 public function initToolbarTitle()
 {
     $this->toolbar_title = array_unique($this->breadcrumbs);
     parent::initToolbarTitle();
 }
开发者ID:M03G,项目名称:PrestaShop,代码行数:5,代码来源:AdminLegacyLayoutController.php

示例3: initToolbarTitle

 public function initToolbarTitle()
 {
     parent::initToolbarTitle();
     switch ($this->display) {
         case '':
         case 'list':
             array_pop($this->toolbar_title);
             $this->toolbar_title[] = $this->l('Manage your Customers');
             break;
         case 'view':
             /** @var Customer $customer */
             if (($customer = $this->loadObject(true)) && Validate::isLoadedObject($customer)) {
                 array_pop($this->toolbar_title);
             }
             $this->toolbar_title[] = sprintf('Information about Customer: %s', Tools::substr($customer->firstname, 0, 1) . '. ' . $customer->lastname);
             break;
         case 'add':
         case 'edit':
             array_pop($this->toolbar_title);
             /** @var Customer $customer */
             if (($customer = $this->loadObject(true)) && Validate::isLoadedObject($customer)) {
                 $this->toolbar_title[] = sprintf($this->l('Editing Customer: %s'), Tools::substr($customer->firstname, 0, 1) . '. ' . $customer->lastname);
             } else {
                 $this->toolbar_title[] = $this->l('Creating a new Customer');
             }
             break;
     }
     array_pop($this->meta_title);
     if (count($this->toolbar_title) > 0) {
         $this->addMetaTitle($this->toolbar_title[count($this->toolbar_title) - 1]);
     }
 }
开发者ID:nmardones,项目名称:PrestaShop,代码行数:32,代码来源:AdminCustomersController.php


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