Pages and Templates: Difference between revisions
(→Pages) |
(→Pages) |
||
Line 1: | Line 1: | ||
=Pages= | =Pages= | ||
A page is the basic piece that handles each URL request. It is the basic functional unit of the system in a URL request is processed and displayed. The logic of a page is handled by a [[#Page Classes|class] which subclasses I2CE_Page via the | A page is the basic piece that handles each URL request. It is the basic functional unit of the system in a URL request is processed and displayed. The logic of a page is handled by a [[#Page Classes|class] which subclasses I2CE_Page via the ''[[#The action() Method|action()]]'' method. Pages can be established to live directly under the base URL of the site, or under a module and all requests are delegated to the appropriate page by the [[#Wrangler|wrangler]]. The GET and POST variables are (by-default) [[#Variable Conversion|pre-processed]] by the page class. All pages, again by default, make use of a [#Template|templating] which acts as a wrapper for the [http://en.wikipedia.org/wiki/Document_Object_Model Document Object Model] (DOM). There is also a built in [[#Task and Roles|task and role]] based permission system. | ||
There are also, by abuse of language, pages for the PHP CLI. | There are also, by abuse of language, pages for the PHP CLI. | ||
==Page Classes== | ==Page Classes== | ||
==The action() | ==The action() Method== | ||
==Variable Conversion== | ==Variable Conversion== | ||
==The Template== | ==The Template== |
Revision as of 08:36, 13 March 2009
Pages
A page is the basic piece that handles each URL request. It is the basic functional unit of the system in a URL request is processed and displayed. The logic of a page is handled by a [[#Page Classes|class] which subclasses I2CE_Page via the action() method. Pages can be established to live directly under the base URL of the site, or under a module and all requests are delegated to the appropriate page by the wrangler. The GET and POST variables are (by-default) pre-processed by the page class. All pages, again by default, make use of a [#Template|templating] which acts as a wrapper for the Document Object Model (DOM). There is also a built in task and role based permission system.
There are also, by abuse of language, pages for the PHP CLI.
Page Classes
The action() Method
Variable Conversion
The Template
Output Buffering
Wrangler
Converting a URL to a Page
Page Styles
Templates
Each page instance is assigned a template which is an instance of I2CE_TemplateMeister, and usually an instance of the sub-class I2CE_Template.
The Template is essentially a wrapper class for a DOMDocument object with some useful convenience methods built in. Although the additional functionality provided by I2CE_TemplateMeister and I2CE_Template is initially very limited, it is greatly augmented by making use of fuzzy methods.
The page will display the DOM contained in the template as html after the page has finished processing.
Template Data
The most significant way the I2CE_Template case is augemented is to provide "Template Data." The module template-data provides the ability to assign arbitrary data to any node in the DOM. The data exists in categories, such as 'FORM' or 'OPTION' and applies to all sub-nodes of the given node. Each piece of data is assigned a name.
If the node is an given by specifying an id (rather than giving an explict instanceof DOMNode) the data will be held in a cache until a node with the given id is added to the template.
When looking for a piece of data assigned to a particular node, we start at the given node and walk up the DOM until the named data is found.
For each category of template data, a default bit of data may be assigned which applies for the whole DOM.
There are several modules which make explicit use of the template data structure.
Warning: The template data mechanism assumes that there is only one template in use per request. Be very careful if you are using multiple templates in one page each making use of template data.
Display Data
Options
Closely related to the Display Data module is the Options module which saves template data in the category 'OPTIONS.' It process tags of the form:
<select id='some_id'/>
and if it finds an OPTION template data named 'some_id' it will append a <select> tag for each of these bits of data.
Form Data
A form can be set on any node and can be referenced as
<span type='form' name='form:field'/>
where you would substitute 'form' and 'field' as appropriate. If the 'form' is not specified it uses the default form, if any, set for the page.