`
we1818
  • 浏览: 61838 次
  • 性别: Icon_minigender_1
  • 来自: 湖州
社区版块
存档分类
最新评论

joomla 1.5——JDocument类用法

    博客分类:
  • php
阅读更多
文档类,提供一个容易的接口解析和显示文件 
       
Method        Description
__construct        构造函数
addScript        增加一个连接到页
addScriptDeclaration        增加脚本到页
addStyleDeclaration        增加一个stylesheet声明到页
addStyleSheet        增加一连接的stylesheet到页
getBase        返回本文的基本URI
getBuffer        得到本文缓冲的内容
getCharset        返回本文charset 内码
getDescription        返回页的标题
getDirection        返回文件语言
getGenerator        返回文档创建者
getHeadData        得到本文头数据
getInstance        返回在全局 JDocument对象
getLanguage        得到语言.
getLink        得到文档的URL
getMetaData        得到meta标签
getTitle        得到文档标题
getType        得到文档类型
loadRenderer        随机装载
render        输出文档
setBase        设置文档的e基本URI
setBuffer        设置本文缓冲的内容
setCharset        设置本文charset
setDescription        设置本文的描述
setDirection         设置全局文件声明。 缺省左到右(ltr)。 
setGenerator        设置文本创建者
setHeadData        设置文本头信息
setLanguage        设置语言.
setLineEnd         设置线结尾样式对Windows、Mac、Unix或者自定义串。 
setLink        设置文档链接
setMetaData        设置metai标签
setMimeEncoding        设置被送到浏览器的本文MIME内码
setModifiedData        定本文修改过的日期
setTab        设置串被用于内嵌HTML
setTitle        设置文档标题
setType        设置文档类型.

方法应用:

addScript()
        意义:增加一个连接到页
        语法:void addScript (string $url, [string $type = "text/javascript"])
                string $url: URL to the linked script
                string $type: Type of script. Defaults to 'text/javascript'
        实际应用:
        $temp =& Jfactory::getDocument();
        $temp->addscript(JURI::base().'includes/js/overlib_mini.js');
        结果:在head部分插入一段js


addScriptDeclaration()
        意义:增加脚本到页头
        语法:void addScriptDeclaration (string $content, [string $type = 'text/javascript'])
                string $content: Script
                string $type: Scripting mime (defaults to 'text/javascript')
        实际应用:
        $temp =& Jfactory::getDocument();
        $script = "alert( 'A script has been added to the page!' );";
        $temp->addScriptDeclaration($scirpt);


getBase()
        意义:返回本文的基本URI
        语法:string getBase ()
        实际应用:
        $temp =& Jfactory::getDocument();
        echo $temp->getBase();


getBuffer()
        意义:得到本文缓冲的内容
        语法: getBuffer ()
        实际应用:
        $temp =& Jfactory::getDocument();
        echo $temp->getBuffer();


getInstance()
        意义:返回在全局JDocument对象
        语法:object The &getInstance ([type $type = 'html'], [ $attributes = array()])
                type $type: The document type to instantiate
                $attributes
        实际应用:
        $temp =& Jfactory::getDocument();
        $temp->getInstance('html'); //生成jdocumenthtml对象.
        $temp->getInstance('error');//生成 jdocumenterror对象.
        $temp->getInstance('feed');//生成 jdocumentfeed对象.
       



setBuffer()
        意义:设置本文缓冲的内容
        语法:void setBuffer (string $content)
                string $content: The content to be set in the buffer
        实际应用:
        $temp =& Jfactory::getDocument();
        echo $temp->setBuffer();




setDirection()
        意义: 设置全局文件声明。 缺省左到右(ltr)。 
        语法:void setDirection ([ $dir = "ltr"], string $lang)
                string $lang
                $dir
        实际应用:
        $temp =& Jfactory::getDocument();
        echo $temp->setDirection();


setGenerator()
        意义: 设置文本创建者
        语法:void setGenerator (string $generator)
                string $generator
        实际应用:
        $temp =& Jfactory::getDocument();
        echo $temp->setGenerator();


setHeadData()
        意义: 设置文本头信息
        语法:void setHeadData (array $data)
                array $data: The document head data in array form
        实际应用:
        $temp =& Jfactory::getDocument();
        echo $temp->setHeadData();


setLanguage()
        意义: 设置语言
        语法:void setLanguage ([string $lang = "en-gb"])
                string $lang
        实际应用:
        $temp =& Jfactory::getDocument();
        echo $temp->setLanguage();






setLineEnd()
        意义: 设置线结尾样式对Windows、Mac、Unix或者自定义串。
        语法:void setLineEnd (string $style)
                string $style: "win", "mac", "unix" or custom string.
        实际应用:
        $temp =& Jfactory::getDocument();
        echo $temp->setLineEnd();


setLink()
        意义: 设置文档链接
        语法:void setLink (string $url)
                string $url: A url
        实际应用:
        $temp =& Jfactory::getDocument();
        $link=”www.joomla.org”;
        $temp->setLink($link);



setMetaData()
        意义: 设置meta标签
        语法:void setMetaData (string $name, string $content, [bool $http_equiv = false])
                string $name: Value of name or http-equiv tag
                string $content: Value of the content tag
                bool $http_equiv: META type "http-equiv" defaults to null
        实际应用:
        $temp =& Jfactory::getDocument();
        $temp->setMetaData('Publisher', 'joomla! Documentation Team!');
        result:
        <meta name="Publisher" content="Joomla! Documentation Team" />


setMimeEncoding()
        意义: 设置被送到浏览器的本文MIME内码
        语法:void setMimeEncoding ([string $type = 'text/html'])
                string $type.
        实际应用:
        $temp =& Jfactory::getDocument();
        $temp->setMimrEncoding('application/xml'));


setModifiedDate()
        意义: 定本文修改过的日期
        语法:void setModifiedDate (string $date)
                string $date
        实际应用:
        $temp =& Jfactory::getDocument();
        $temp->setModifiedDate($date));
分享到:
评论

相关推荐

    joomla1.5使用教程 - 中文手册

    【Joomla 1.5 使用教程 - 中文手册】 Joomla 1.5 是一个流行的开源内容管理系统(CMS),用于构建、管理和维护网站。本教程旨在帮助用户掌握Joomla 1.5的各项功能,从安装到高级管理配置,提供全方位的指导。 **第...

    Joomla1.5中文框架下载

    使用Joomla 1.5时,必须保持警惕,定期检查并应用这些补丁,以防范可能的安全风险。 10. **迁移与升级**:随着Joomla的后续版本发布,1.5用户可能会考虑升级到更安全且功能更丰富的版本,如2.5或3.x。升级过程中...

    joomla 1.5中文版php网站模板

    Joomla遵循GPL(GNU General Public License)协议,这意味着它是自由软件,用户可以自由地使用、修改和分发。`CREDITS.php`则列出了所有为项目做出贡献的人或组织。 3. `INSTALL.php`:这是安装向导的一部分,用于...

    joomla1.5模板

    Joomla 1.5 使用标准的 HTML 元素,并通过特定的类和 ID 进行标记,以便 CMS 能够识别和操作它们。 2. **CSS 样式**:CSS 用于控制模板的样式和布局。开发者需要编写 CSS 代码来定义颜色、字体、布局和其他视觉元素...

    Joomla1.5模板

    这款模板是专为Joomla 1.5版本设计的,该版本在2008年发布,尽管现在已经过时,但仍有大量的网站仍在使用。 **Joomla模板的核心组成:** 1. **HTML结构**:模板的基础是HTML,它定义了网页的基本布局和元素。 2. **...

    Joomla1.5升级为Joomla2.5(

    zmax程序人 将Joomla1.5版本的模板移植到Joomla2.5上的经验总结

    Building Websites with Joomla 1.5.pdf

    本书将介绍这些模块和插件的安装与使用方法。 - **组件应用**:除了内置的组件外,还可以通过安装第三方组件扩展 Joomla 的功能,如电子商务解决方案、论坛系统等。 #### 四、网站管理和维护 - **用户管理**:掌握...

    Joomla1.5+API中文档

    Joomla 1.5 API中文文档是针对该版本Joomla的开发者工具,它提供了详细的API参考,帮助开发者理解和利用Joomla的核心功能。以下是一些关键知识点: 1. **JApplication**:这是Joomla框架的基础类,负责处理应用程序...

    经典joomla1.5模板下载

    对于仍在使用 Joomla 1.5 的用户,应该定期检查安全更新和补丁。 8. **模板提供商支持**:在描述中提供了联系方式(enfin@163.com),这可能意味着模板的开发者或提供者愿意提供技术支持或解答问题。 通过深入学习...

    joomla 1.5留言本easybook

    标题中的“joomla 1.5留言本easybook”指的是基于Joomla 1.5内容管理系统的一个组件,名为EasyBook,它主要用于实现网站的在线留言功能。EasyBook是一款用户友好的插件,允许访客在网站上留下他们的反馈、建议或问题...

    Joomla1.5DevelopmentCookbook-英文原版.zip

    **Joomla 1.5 开发手册:深入解析与实践指南** Joomla 1.5 是一款开源的内容管理系统(CMS),在2008年至2012年间广受欢迎,为许多网站提供了强大的构建平台。《Joomla 1.5 Development Cookbook》是一本专为开发者...

    Building Websites with Joomla 1.5

    通过《Building Websites with Joomla 1.5》这本教程,你将能够系统地学习和掌握使用Joomla 1.5构建专业网站的各项技能。随着对Joomla的深入理解,你可以创建出具有吸引力且功能强大的网站,满足不同业务需求。同时...

    joomla1.5中文语言包

    这个"joomla1.5中文语言包"是专门为Joomla 1.5设计的本地化解决方案,确保用户在使用过程中能够理解各个菜单、选项和提示信息。一旦下载并解压缩,用户可以直接将其安装到Joomla 1.5系统中,无需额外的编程或配置,...

    JCalPro-Joomla1.5下的日程管理组件

    值得注意的是,Joomla 1.5 是一个较旧的版本,这意味着 JCalPro 可能不支持更新的 Joomla 版本,用户在使用时需考虑升级或寻找兼容性解决方案。描述中还提及了 JCalPro 解决了 "日期乱码问题",这表明该组件在处理...

    joomla1.5团购组件

    Joomla 1.5 团购组件是一款专为Joomla 1.5内容管理系统设计的扩展,用于构建具有完整功能的团购网站。该组件提供了一系列高级特性,旨在帮助用户轻松创建和管理团购活动,吸引更多的消费者参与。 首先,我们要了解...

    JA Xenia II Game for joomla 1.5

    【标题】"JA Xenia II Game for joomla 1.5" 指的是一款专为Joomla 1.5内容管理系统设计的游戏扩展组件。Joomla是一个开源的PHP建站平台,广泛用于构建网站和在线应用程序。这款组件,JA Xenia II,可能是为了在...

    kickstart-3.3.2 for Joomla 1.5

    joomla 1.5 备份使用,支持Joomla 1.5的备份上传工具。

Global site tag (gtag.js) - Google Analytics