PHP.MVC之模板标签系统(五)

80酷酷网    80kuku.com

  > 建立模板标签系统应用程序只需几个步骤.
注意:以下步骤假设使用了新的SleeK例子应用程序(这个例子可以在www.PHPmvc.net上找到).

修改应用程序的boot.ini文件

应用程序的boot.ini文件包含需要得到PHP.MVC框架的信息.boot.ini文件通常位于应用程序的"WEB-INF"目录下.为了设置应用程序使用模板标签类,我们需要在boot.ini文件中定义一些属性.

TagActionDispatcher类

TagActionDispatcher是ActionDispatcher类的标准实现.为了让框架能读取TagActionDispatcher类,我们为变量$appServerRootDir设置值为'TagActionDispatcher':
// Setup the application specific ActionDispatcher (RequestDispatcher)
 $actionDispatcher = 'TagActionDispatcher';

模板标签系统库根目录

我们也需要设置路径指向我们的PHP.MVC库(需要文件系统的绝对路径):
// Set PHP.MVC library root directory (no trailing slash).
 $appServerRootDir = 'C:\WWW\PHPmvc-base';

可选设置

应用程序定时器可以使用$timerRun属性来设置开或关:
// Timer reporting. 1=on, 0=off
 $timerRun = 1;
还可以指导框架总是(强制)编译应用程序PHPmvc-config.XML配置类(最好用在开发阶段,因为会比较慢),我们使用:
// The application XML configuration data set:
  $appXMLCfgs = array();
  $appXMLCfgs['config'] = array('name'=>'PHPmvc-config.XML', 'fc'=>True);
    或者仅在PHPmvc-config.XML文件被修改的时候重新编译应用程序配置文件(在开发完成后使用此项设置,速度快),我们使用:
// The application XML configuration data set:
  $appXMLCfgs = array();
  $appXMLCfgs['config'] = array('name'=>'PHPmvc-config.XML', 'fc'=>False);

设置应用程序模板目录

当为模板标签应用程序设置模板目录时,我们需要去创建一个目录(和子目录),放置我们的应用程序模板文件.这个目录必须被命名为在View资源配置类的$tplDir属性所定义的值,默认是'./WEB-INF/tpl'.比如:例子应用程序有一个模板目录结构设置像这样:
- PHPMVC-Tags
     Index.HTML
     Main.PHP
     WEB-INF
        tpl
           pageFooter.ssp
           pageHeader.ssp
           salePageBody.ssp
           sale
              pageContent.ssp
我们也需要去创建目录放置编译的页面.这个目录必须被命名为在View资源配置类的$tplDirC属性所定义的值.默认是'./WEB-INF/tpl_C'.例子应用程序有一个模板目录结构设置像这样:
PHPMVC-Tags
    Index.HTML
    Main.PHP
    WEB-INF
       tpl
          ...
          sale
             ...
          tpl_C
             pageFooter.sspC
             pageHeader.sspC
             salePageBody.sspC
             sale
                pageContent.sspC
 注意我们也需要在'./WEB-INF/tpl_C'下创建sale目录.

设置PHP.MVC库的路径和包含

检查以下路径设置已经被定义在GlobalPaths.PHP和globalPrepend.PHP文件在你的框架安装目录下的"/WEB-INF"目录下:
GlobalPaths.PHP
------------------------------------------------
 $appDirs[] = 'WEB-INF/lib/PHPmvc_tags';

globalPrepend.PHP
------------------------------------------------
 include_once 'PHPMVC_Tags.PHP';
如果他们没有在添加到路径里,那么就定义这些变量.

安装PHP.MVC库

下载最新版的PHP.MVC库:http://www.PHPmvc.net/download/cvsIdx.PHP?doc=cvs-snaps
解压库文档到一个目录.修改上面所描述过的路径设置和包含设置.

运行例子应用程序

    下载例子应用程序.完整的例子代码文件和这个向导都能在这里下载:http://www.PHPmvc.net/download/rel/PHPmvc-tags-v1.0.zip
    解压到web服务器目录中.可能像这样:C:/WWW/PHPMVC-Tags
    修改应用程序和框架设置.
    为了测试例子程序,需要浏览器例子程序的首页:http://localhost/PHPMVC-Tags/Index.HTML


附录A:ViewResources配置类

ViewResourcesConfig类表现了<view-resource>元素的配置信息.

下表列出了ViewResourcesConfig类的属性,条目描述和默认值:   

Name  Description  Default Value
 $appTitle    The application title    'My Web Application'
 $appVersion    The application version    '1.0'
 $copyright    The copyright notice    'Copyright C YYYY My Name. All rights reserved.'
 $contactInfo    The contact information  'webmastermyhost.com'
 $processTags  Do we run the template engine processor (boolean)   False
 $compileAll  Force compile pages (boolean)  False
 $tagL  The left tag identifier     '<'
 $tagR  The right tag identifier    '">'>'
 $tplDir   The view resource templates directory   './WEB-INF/tpl'
 $tplDirC    The compiled templates directory    './WEB-INF/tpl_C'
  $extC  The compiled file notation. Eg: "pageContent.ssp[C]"   'C'
 $maxFileLength    The maximum size of the template files allowed, in bytes (integer)    250000
  $tagFlagStr    Indicates tag template file(s) to be pre-processed. Eg: "myPage.ssp"  '.ssp'
  $tagFlagCnt    The number of trailing filename characters to sample (".ssp" = -4)   -4

分享到
  • 微信分享
  • 新浪微博
  • QQ好友
  • QQ空间
点击: