search
Homephp教程PHP开发PHP.MVC template tag system (4)

Page Layout

In this unit we will see how to use the template tag system to construct a standard template page. For this example we use a simple HTML page layout, please see the picture below:

PHP.MVC template tag system (4)

This page is composed of multiple standard units, just like page designers and developers are familiar with. The main body of this page consists of 3 It consists of units: header, page content body and footer. We will now look at these units and understand how to use the template tag system to implement.

Page Body

The following code unit displays the body:
The Page Body Layout
1






<br>2 " <br> " 'pageLayoutTable'><br><br> <!-- PAGE HEADER --> <tr> <p> </p> <td class="pageHeader"> <!-- The base template base directory is "./tpl" --><p>3  <br>  </p> </td> <br> </tr> <br><br> <br> <tr valign="top"> <br> ; <td class="pageContent"> <br> ; <!-- including the page contents component -->4 <p>                                                                                                                                                                              '><br> ' ' <br><br><br><br></p> <p>1: Page Declaration<br> The first interesting entry is the page declaration (1) at the top of the page. We declare these variables at the beginning of the page, so these variables will be available in the page below and in the containing page like the header. .<br>2: Page title<br> Next we use an expression to initialize the page title (2). This value can be obtained from the view-resources element in the configuration file using ViewResourcesConfig->getAppTitle: <br><view-resources></view-resources> appTitle = "Flash Jacks' Sleek Tab Site"<br> ...<br><br>3: Header<br> The header is the next interesting entry (3). Here we use the include directive to insert the header template file Go to the page body. We will take a look at the header in the next sub-unit. <br> We just used the page to read the header directly, regardless of where the page components are stored. This is a good opportunity to introduce the template tag system Directory settings. By default, the template directory layout looks like this (note these paths are relative to our application): <br>The Default phpMVC_Tags Template Directory Layout Paths (relative) <br>The Template Files './WEB-INF/tpl' <br>The Compiled Template Files './WEB-INF/tpl_C' <br> If necessary we can redefine them in the view-resources node of the configuration file, like this: <br><view-resources></view-resources> ...<br> tplDir = "./WEB-INF/tpl-admin"<br> tplDirC = "./WEB-INF/tpl_admin_C"<br> ...<br><br>4: Page content body<br> This is another containing directive Used to insert template files (4) into the body. Note that the included files are located in the sales subdirectory of the template directory:<br>"./WEB-INF/tpl/sale/pageContent.ssp"<br>5: Footer<br> Another one Contains directives, just like a page header.</p> <p>Header unit</p> <p> In this example the header template file ('pageHeader.ssp') is just a simple unit, like this:<br><!-- Page Header - -><br/><span><br/> When the main page (including included pages) is compiled, the header expression is converted to the following :<br/><!-- Page Header --><br><span><br> <?php PRint $viewConfig->getAppTitle(); ?><br></span><br> The compiled page is stored in In the compiled template directory, as mentioned above, the default compiled template directory is: <br>'./WEB-INF/tpl_C'<br><br>Page content main unit</p> <p> The page content main template file is a bit complicated. File ('sale /pageContent.ssp') content is displayed as follows: </p>...<p>1<br>getValueBean("ITEM_1") @><br>getValueBean("PRODUCTS_ARRAY" ) @><br><br>2</p> <h4> </h4> <p><br>3</p> <b>Clearance deals</b><p><br>                                                                       ue' > class ='productsTable'><br><?php foreach($products as $item) { ?><br> </p> </td> </tr> <tr> <br> <td class="prodItemDesc"> <br> <br>                                                                        <br> <br><p><b>Our Staff at Your Service</b><br>...<br>5<br></p> <table class="productsTable"> <br> <tr> <br>  <td class="prodItemDesc"> <br>  Area Manager: <br>  </td> <br>  <td class="prodItemDesc"> <br>  <br>  </td> <br> </tr> <br> ...<br> </table> <br>1: Some more declarations <br> The extra declarations (1) shown at the top of the page allow us to declare page variables for use below. After the content has been processed, these declarations will After compilation, it is displayed as follows: <br><?php $item1=$data->getValueBean("ITEM_1"); ?><br>...<br><?php $products=$data->getValueBean( "PRODUCTS_ARRAY"); ?><br>2: Use expressions to display the title of the content unit<br> Now we use two expressions (2) to display the title of the content unit. Note that we declare these variables as "global" variables on the main page at the top. After processing, the expression will transform these codes, like this: <br><?php print $dealHeading; ?> <?php print $saleMonth; ?><br> When the page is displayed to the user's browser In the browser, the title of the content unit looks like this: <br>Jack's Super Deals for : May 2010. <br>3: Use expressions to display some data items <br> Now we can display some actual data (3). In this page content In the main unit we access some product item data in the ActionObject of the PhpMVCTabAction class. A simplified version of the PhpMVCTabAction class is shown below: <br>class PhpMVCTabAction extends Action { <br> ...<br> function execute($mapping, $form, &$request . .xml file.<br> // See: ExtendedController example.<br> $appTitle = "Flash Jack's Include Page"; $saleMonth = "May 2010";<p> $saleTitle = "Flash Jack's Super Sale";<br> $ dealHeading = "Jack's Super Deals for: ";<br>                                                                                                                                                                                                              AddValueBean saleMonth);<br> $valueBeans->addValueBean('SALE_TITLE' , $saleTitle);<br> $valueBeans->addValueBean('DEAL_HEADING' , $dealHeading);<br> ...<br><br> we could receive from a database query</p>                                                                                                             The prices are formatted in                                                                                                                                   . Individual object instances: <p> //note: The Product Class File WAS Included in Our Local Prepend.php File<br> $ ITEM1 = New PRODUCT ('Super Duper', $ PRI CE1); ('ITEM_1', $item1);<br>                                                                                                                                                    :... </p> <p><br>            // Save the Value object<br>                                                                                                                                       saveValueObject($request, $ $valueBeans);                                                                             $item1 Now it can be retrieved in the template page: <br>getValueBean("ITEM_1") @><br> We can display the value of the item like this: </p>...<br><br>4: Display array<br> We can also use some PHP code directly on our template page. In this detached MVC pattern, we should only go here Write code to manipulate the data provided through the ActionObject and ViewResourcesConfig instances (or perhaps our custom beans). In the content unit above ('sale/pageContent.ssp'), we use a PHP foreach syntax (4 ) to loop through the $products array. We can see in the PhpMVCTabAction class above that the $products array is created and saved in the ActionObject, similar to the $item1 Bean above. In the foreach loop we can use expressions to Display product data: <br><?php foreach($products as $item) { ?><br> </td> </tr> <tr> <br> ;/td><br>                                                                              Display the ViewResourcesConfig attribute <br> Finally, we display the "Area Manager" (5) from the ViewResourcesConfig attribute defined by the view-resources element on our content page: <br><view-resources></view-resources> appTitle = "Flash Jacks' Sleek Tab Site"<br> . ..<br>          className                                                                                                                                                          ."/><br> <br> But note that in this example we use an object that inherits the ViewResourcesConfig class (MyViewResourcesConfig) to set some custom properties. We define an object that extends the ViewResourcesConfig class, Use the className="MyViewResourcesConfig" attribute in the configuration file, and the MyViewResourcesConfig class is defined in the file "MyViewResourcesConfig.php". The MyViewResourcesConfig class (classes/MyViewResourcesConfig.php) implements the setter/getter method to handle custom properties ("areaManager") , we define this property in the view-resources node: <br>class MyViewResourcesConfig extends ViewResourcesConfig {<br><br> // ----- Properties --------------------- -------------------------------- //<br><br> var $areaManager = '';<br><br> function getAreaManager() { <br>          return $this->areaManager;<br>                                                                                                                                                                                                                                              been been Being -- function setAreaManager($areaManager) {      :<br><br> Note: In a real application the data can be obtained from a relational database.<p>Footer unit<br></p> <p> The footer unit is handled similarly to the header unit discussed above. The footer template file ('tpl/pageFooter.ssp') looks like this: <br><!-- Page Footer --><br><span></span> <br><br> When the main page (including included pages) is compiled, the expression in the footer is converted to the following:<br><!-- Page Footer --><br><span><br> <?php print $viewConfig->getCopyright(); ?><br></span> <br> The compiled header page is stored in the compiled template directory. Default The compiled template directory is: <br>'./WEB-INF/tpl_C'</p> <p> The above is the content of PHP.MVC's template tag system (4). For more related articles, please pay attention to the PHP Chinese website (www.php.cn)! <br></p> <p><br></p> </tr>
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),