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


PHP Action::display方法代码示例

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


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

示例1: display

 /**
 +----------------------------------------------------------
 * 模板显示
 * 重写父类display方法
 +----------------------------------------------------------
 * @access protected
 +----------------------------------------------------------
 * @param string $templateFile 指定要调用的模板文件
 * 默认为空 由系统自动定位模板文件
 * @param string $charset 输出编码
 * @param string $contentType 输出类型
 +----------------------------------------------------------
 * @return void
 +----------------------------------------------------------
 */
 protected function display($templateFile = '', $charset = '', $contentType = 'text/html')
 {
     if ($this->_CFG['open_gzip'] && extension_loaded('zlib') && strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) {
         ini_set('zlib.output_compression', 'On');
         ini_set('zlib.output_compression_level', 3);
         ob_start('ob_gzhandler');
         parent::display($templateFile, $charset, $contentType);
         ob_end_flush();
     } else {
         parent::display($templateFile, $charset, $contentType);
     }
 }
开发者ID:yunsite,项目名称:tp-coupon,代码行数:27,代码来源:CommonAction.class.php

示例2: display

 public function display($templateFile = '', $charset = 'utf-8', $contentType = 'text/html')
 {
     $this->assign('systemdata_list', $this->systemdata_list);
     $this->assign('systemdata_key', $this->systemdata_key);
     $this->assign('opt', $this->opt);
     //分类列表选项
     $this->assign('onsubmit', $this->onsubmit);
     $this->assign('onload', $this->onload);
     //数据保存动作提交的地址
     $this->assign('savePostUrl', $this->savePostUrl);
     $this->assign('pageKeyList', $this->pageKeyList);
     $this->assign('pageKey', $this->pageKey);
     $this->assign('notEmpty', $this->notEmpty);
     // 页面标题
     $this->pageTitle[ACTION_NAME] && $this->assign('pageTitle', $this->pageTitle[ACTION_NAME]);
     // 页面标题
     $this->assign('pageTab', $this->pageTab);
     $this->assign('submitAlias', $this->submitAlias);
     parent::display($templateFile, $charset, $contentType);
 }
开发者ID:medz,项目名称:thinksns-4,代码行数:20,代码来源:AdministratorAction.class.php

示例3: display

 protected function display($templateFile = '', $title = '', $charset = '', $contentType = '')
 {
     $this->loadHeader($title);
     parent::display($templateFile, $charset, $contentType);
 }
开发者ID:yunsite,项目名称:nuomituan,代码行数:5,代码来源:CommonAction.class.php

示例4: dsp

 /**
 +----------------------------------------------------------
 * 模板显示
 * 只支持PHP模板
 +----------------------------------------------------------
 * @access protected
 +----------------------------------------------------------
 * @param string $templateFile 指定要调用的模板文件
 * 默认为空 由系统自动定位模板文件
 * @param string $charset 输出编码
 * @param string $contentType 输出类型
 +----------------------------------------------------------
 * @return void
 +----------------------------------------------------------
 */
 protected function dsp($templateFile = '', $charset = '', $contentType = 'text/html')
 {
     parent::display($templateFile, $charset, $contentType);
 }
开发者ID:huangwei2wei,项目名称:kfxt,代码行数:19,代码来源:BaseAction.class.php

示例5: display

 protected function display($templateFile = '', $charset = '', $contentType = '', $content = '', $prefix = '')
 {
     $this->include_fetch();
     parent::display($templateFile, $charset, $contentType, $content, $prefix);
 }
开发者ID:sdgdsffdsfff,项目名称:TPhelper,代码行数:5,代码来源:CommonAction.class.php


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