cvs: peardoc /en/package/database/db-table intro-forms.xml
[email protected] ("Mark Wiesemann")
| Newsgroups | php.pear.doc |
|---|---|
| Message-ID | <cvswiesemann1190315662@cvsserver> |
wiesemann Thu Sep 20 19:14:22 2007 UTC
Modified files:
/peardoc/en/package/database/db-table intro-forms.xml
Log:
- add documentation for 'qf_opts' key
- fix two minor typos
http://cvs.php.net/viewvc.cgi/peardoc/en/package/database/db-table/intro-forms.xml?r1=1.1&r2=1.2&diff_format=u
Index: peardoc/en/package/database/db-table/intro-forms.xml
diff -u peardoc/en/package/database/db-table/intro-forms.xml:1.1 peardoc/en/package/database/db-table/intro-forms.xml:1.2
--- peardoc/en/package/database/db-table/intro-forms.xml:1.1 Tue May 29 18:42:23 2007
+++ peardoc/en/package/database/db-table/intro-forms.xml Thu Sep 20 19:14:22 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="ISO-8859-1" ?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
<refentry id="package.database.db-table.intro-forms">
<refnamediv>
@@ -163,6 +163,12 @@
'qf_attrs' (array) Sets additional HTML attributes for the input element
</simpara>
</listitem>
+ <listitem>
+ <simpara>
+ 'qf_opts' (array) Sets options for date elements (date, time, timestamp,
+ jscalendar)
+ </simpara>
+ </listitem>
</itemizedlist>
</para>
@@ -408,7 +414,7 @@
// form element definition
'qf_label' => 'Other Information',
'qf_type' => 'text',
- 'qf_vals' => 'array(
+ 'qf_vals' => array(
'a' => 'This is the letter "a"',
'b' => 'I choose "b"',
'c' => 'No, "c" is always the right answer'
@@ -452,7 +458,7 @@
// form element definition
'qf_label' => 'Other Information',
'qf_type' => 'textarea',
- 'qf_attrs' => 'array(
+ 'qf_attrs' => array(
'rows' => 24,
'cols' => 80
)