本文整理汇总了PHP中ModuleAdminController::display方法的典型用法代码示例。如果您正苦于以下问题:PHP ModuleAdminController::display方法的具体用法?PHP ModuleAdminController::display怎么用?PHP ModuleAdminController::display使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ModuleAdminController
的用法示例。
在下文中一共展示了ModuleAdminController::display方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: display
public function display()
{
global $cookie;
if (isset($_GET["filename"])) {
AgileSellerMessenger::openUploadedFile($_GET["id_seller"], $_GET["filename"]);
} else {
parent::display();
}
}
示例2: display
public function display()
{
parent::display();
}
示例3: displayAjax
public function displayAjax()
{
if (Tools::getValue('action') == 'newCustomPrice' || Tools::getValue('action') == 'editCustomPrice') {
$this->layout = 'layout-modal.tpl';
$this->bootstrap = true;
$this->display_header = false;
$this->display_header_javascript = true;
$this->display_footer = true;
$this->content_only = true;
$this->lite_display = true;
} else {
if ($this->json) {
$this->context->smarty->assign(array('json' => true, 'status' => $this->status));
}
$this->layout = 'layout-ajax.tpl';
$this->display_header = false;
$this->display_header_javascript = false;
$this->display_footer = false;
}
return parent::display();
}