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); }
/** * 渲染页面文件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); }
public static function use_component() { return array_merge(parent::use_component(), array("Comui_Dialog_Dialog", "Comui_Message_Msg")); }
public static function use_boundable_styles() { $strPath = apf_classname_to_path(__CLASS__); return array_merge(parent::use_boundable_styles(), array($strPath . 'Header.css')); }
public static function use_component() { return array_merge(parent::use_component(), array("Comui_Form_Form", "Comui_Form_Validate")); }
public static function use_component() { return array_merge(parent::use_component(), array("Ui_Dialog")); }
public static function use_boundable_javascripts() { $path = apf_classname_to_path(__CLASS__); return array_merge(parent::use_boundable_javascripts(), array($path . 'Carousel.js')); }
public static function use_javascripts() { return array_merge(parent::use_javascripts(), array('http://api.map.baidu.com/api?v=1.2')); }
/** * 渲染页面文件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); }
public static function use_component() { return array_merge(parent::use_component(), array("Album_Used")); }
public static function use_component() { return array_merge(parent::use_component(), array("Comui_Dialog_Dialog", "Comui_Select_Select")); }
public static function use_javascripts() { return array_merge(parent::use_javascripts(), array(PageHelper::pure_static_url("/js/localforage/localforage.min.js"))); }
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'))); }