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


PHP ModuleAdminController::display方法代码示例

本文整理汇总了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();
     }
 }
开发者ID:evilscripts,项目名称:gy,代码行数:9,代码来源:AgileSellerMessages.php

示例2: display

 public function display()
 {
     parent::display();
 }
开发者ID:raphael-miw,项目名称:modules-bandeau-promo,代码行数:4,代码来源:AdminBandeauxPromoController.php

示例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();
 }
开发者ID:paolobattistella,项目名称:aphro,代码行数:21,代码来源:AdminAphCustomPricesController.php


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