|
Revision 349, 1.6 kB
(checked in by gerd, 3 years ago)
|
Draft of new feature: attribute filter
|
- 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 |
$appName = 'patForms'; |
|---|
| 13 |
$appForumId = 5; |
|---|
| 14 |
$appDesc = 'Please note that even though you can directly jump to any ' |
|---|
| 15 |
. 'section in the examples, <b>we recommend you go through them ' |
|---|
| 16 |
. 'sequentially</b> as they are presented here, especially if you ' |
|---|
| 17 |
. 'are new to patForms. We have set the order of the examples ' |
|---|
| 18 |
. 'so that you will not miss out any important details, and learn ' |
|---|
| 19 |
. 'how to use the needed classes tutorial-like by reading the comments in ' |
|---|
| 20 |
. 'the examples\' source code.<br/>'; |
|---|
| 21 |
|
|---|
| 22 |
$tabs = array( |
|---|
| 23 |
'output' => array( |
|---|
| 24 |
'title' => 'Output', |
|---|
| 25 |
'type' => 'output', |
|---|
| 26 |
'file' => '$exampleFile', |
|---|
| 27 |
'default' => true, |
|---|
| 28 |
|
|---|
| 29 |
'source' => array( |
|---|
| 30 |
'title' => 'PHP Source', |
|---|
| 31 |
'type' => 'phpSource', |
|---|
| 32 |
'file' => '$exampleFile', |
|---|
| 33 |
'default' => false, |
|---|
| 34 |
|
|---|
| 35 |
'elsource' => array( |
|---|
| 36 |
'title' => 'Elements source', |
|---|
| 37 |
'type' => 'xmlSource', |
|---|
| 38 |
'file' => 'patExampleGen/xmlSource.php?example=$exampleId', |
|---|
| 39 |
'default' => false, |
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
|
|---|
| 43 |
$sections = array(); |
|---|
| 44 |
|
|---|
| 45 |
|
|---|
| 46 |
include_once 'sections_api.php'; |
|---|
| 47 |
'sections_element.php' ; |
|---|
| 48 |
'sections_renderer.php'; |
|---|
| 49 |
'sections_datasource.php'; |
|---|
| 50 |
'sections_rule.php'; |
|---|
| 51 |
'sections_filter.php'; |
|---|
| 52 |
'sections_attributefilter.php'; |
|---|
| 53 |
'sections_event.php'; |
|---|
| 54 |
'sections_parser.php'; |
|---|
| 55 |
'sections_observer.php'; |
|---|
| 56 |
'sections_storage.php'; |
|---|
| 57 |
'sections_creator.php'; |
|---|
| 58 |
?> |
|---|
| 59 |
|
|---|