Пример #1
0
 public function render($file, $send_content_type)
 {
     if ($send_content_type) {
         APF::get_instance()->get_response()->set_content_type($this->get_content_type(), $this->get_charset());
     }
     parent::render($file);
 }
Пример #2
0
 /**
  * 渲染页面文件phtml,也就是执行phtml。
  * 即,页面phtml是作为render方法的一部分来影响最终显示结果的。
  * @param string $file 文件路径
  * @param boolen $send_content_type 内容类型开关
  * @see APF_Component::render()
  */
 public function render($file, $send_content_type)
 {
     if ($send_content_type) {
         // 设置返回内容类型和编码
         APF::get_instance()->get_response()->set_content_type($this->get_content_type(), $this->get_charset());
     }
     // 执行渲染操作
     parent::render($file);
 }
Пример #3
0
 public static function use_component()
 {
     return array_merge(parent::use_component(), array("Comui_Dialog_Dialog", "Comui_Message_Msg"));
 }
Пример #4
0
 public static function use_boundable_styles()
 {
     $strPath = apf_classname_to_path(__CLASS__);
     return array_merge(parent::use_boundable_styles(), array($strPath . 'Header.css'));
 }
Пример #5
0
 public static function use_component()
 {
     return array_merge(parent::use_component(), array("Comui_Form_Form", "Comui_Form_Validate"));
 }
Пример #6
0
 public static function use_component()
 {
     return array_merge(parent::use_component(), array("Ui_Dialog"));
 }
Пример #7
0
 public static function use_boundable_javascripts()
 {
     $path = apf_classname_to_path(__CLASS__);
     return array_merge(parent::use_boundable_javascripts(), array($path . 'Carousel.js'));
 }
Пример #8
0
 public static function use_javascripts()
 {
     return array_merge(parent::use_javascripts(), array('http://api.map.baidu.com/api?v=1.2'));
 }
Пример #9
0
 /**
  * 渲染页面文件phtml,也就是执行phtml。
  * 即,页面phtml是作为render方法的一部分来影响最终显示结果的。
  * @param string $file 文件路径
  * @param boolen $send_content_type 内容类型开关
  * @see APF_Component::render()
  */
 public function render($file)
 {
     $args = func_get_args();
     $send_content_type = isset($args[1]) ? $args[1] : false;
     if ($send_content_type) {
         // 设置返回内容类型和编码
         APF::get_instance()->get_response()->set_content_type($this->get_content_type(), $this->get_charset());
     }
     // 执行渲染操作
     parent::render($file);
 }
Пример #10
0
 public static function use_component()
 {
     return array_merge(parent::use_component(), array("Album_Used"));
 }
Пример #11
0
 public static function use_component()
 {
     return array_merge(parent::use_component(), array("Comui_Dialog_Dialog", "Comui_Select_Select"));
 }
Пример #12
0
 public static function use_javascripts()
 {
     return array_merge(parent::use_javascripts(), array(PageHelper::pure_static_url("/js/localforage/localforage.min.js")));
 }
Пример #13
0
 public static function use_javascripts()
 {
     return array_merge(parent::use_javascripts(), array(PageHelper::pure_static_url('/html/editor/kindeditor-3.5.3/kindeditor-min.js')));
 }