|
Revision 320, 0.8 kB
(checked in by schst, 3 years ago)
|
Parser now uses the element's id for the placeholder. Parser_patTemplateRenderer and Parser_SimpleRenderer now use the matching renderers as delegates (fixes bug #184 and #185). This commit may break some scripts, but the parser was labelled alpha before.
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
class patForms_Renderer |
|---|
| 23 |
{ |
|---|
| 24 |
|
|---|
| 25 |
* method called by patForms to retrieve the rendered form content. |
|---|
| 26 |
* |
|---|
| 27 |
* @access public |
|---|
| 28 |
* @param object &$patForms Reference to the patForms object |
|---|
| 29 |
* @param array Arguments for the renderer |
|---|
| 30 |
*/ |
|---|
| 31 |
function render(&$patForms, $args = array()) |
|---|
| 32 |
{ |
|---|
| 33 |
|
|---|
| 34 |
} |
|---|
| 35 |
} |
|---|
| 36 |
?> |
|---|