|
Revision 117, 1.4 kB
(checked in by argh, 4 years ago)
|
Massive update of the examples collection; added the patExampleGen examples framework; commented all examples; reworked all the templates...
|
- 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 |
$sections['Creator'] = array( |
|---|
| 13 |
'state' => 'Dev', |
|---|
| 14 |
'descr' => 'The patForms::Creator will provide easy-to-use interfaces to create forms from |
|---|
| 15 |
, |
|---|
| 16 |
'basename' => 'example_creator_', |
|---|
| 17 |
'pages' => array( |
|---|
| 18 |
'db' => array( |
|---|
| 19 |
'title' => 'DB - Generic', |
|---|
| 20 |
'descr' => 'This example shows how to create forms automatically by retrieving field |
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
), |
|---|
| 25 |
'db_mysql' => array( |
|---|
| 26 |
'title' => 'DB - MySQL', |
|---|
| 27 |
'descr' => 'This example shows how to create forms automatically by retrieving field |
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
), |
|---|
| 32 |
'autosave' => array( |
|---|
| 33 |
'title' => 'Autosave', |
|---|
| 34 |
'descr' => 'This example shows that you can easily combine the creator with a storage |
|---|
| 35 |
|
|---|
| 36 |
), |
|---|
| 37 |
|
|---|
| 38 |
|
|---|
| 39 |
?> |
|---|