|
Revision 231, 2.2 kB
(checked in by schst, 3 years ago)
|
Started implementing the Mail storage container
Provides only very basic functionality and is not tested (no sendmail on windows)
added Sven to list of maintainers
|
- 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['Storage'] = array( |
|---|
| 13 |
'state' => 'Beta', |
|---|
| 14 |
'descr' => 'The patForms::Storage classes will provide storage containers for your form data. |
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
, |
|---|
| 19 |
'basename' => 'example_storage_', |
|---|
| 20 |
'pages' => array( |
|---|
| 21 |
'csv' => array( |
|---|
| 22 |
'title' => 'CSV', |
|---|
| 23 |
'descr' => 'This example demonstrates the CSV storage. The values will be written to a |
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
), |
|---|
| 27 |
'db' => array( |
|---|
| 28 |
'title' => 'DB', |
|---|
| 29 |
'descr' => 'This example shows how to use the DB storage to automatically store the values |
|---|
| 30 |
|
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 |
), |
|---|
| 35 |
'propel' => array( |
|---|
| 36 |
'title' => 'Propel', |
|---|
| 37 |
'descr' => "This example shows how to use the Propel Definition, Datasource and Storage |
|---|
| 38 |
|
|---|
| 39 |
, |
|---|
| 40 |
'tabs' => array( |
|---|
| 41 |
'template' => array( |
|---|
| 42 |
'title' => 'Template source', |
|---|
| 43 |
'type' => 'phpSource', |
|---|
| 44 |
'file' => 'templates/$exampleId.tmpl', |
|---|
| 45 |
|
|---|
| 46 |
|
|---|
| 47 |
|
|---|
| 48 |
'mail' => array( |
|---|
| 49 |
'title' => 'Mail', |
|---|
| 50 |
'descr' => "This example shows you how you can easily create any contact form or any other form that will just email the data to anybody.", |
|---|
| 51 |
|
|---|
| 52 |
|
|---|
| 53 |
|
|---|
| 54 |
?> |
|---|