本文整理汇总了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 . ')';
}
}
}
示例2: initToolbarTitle
public function initToolbarTitle()
{
$this->toolbar_title = array_unique($this->breadcrumbs);
parent::initToolbarTitle();
}
示例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]);
}
}