⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 html_quickform.reg

📁 FP2 CRM code+Mysql DB
💻 REG
📖 第 1 页 / 共 4 页
字号:
- Added Slovak date/dategroup names (Peter Sablica)- Added Icelandic date/dategroup names (Birgir Stefansson)* Changes- Rule-registering functions can now be called statically (Alexey Borzov)- File-related rules and methods are moved to HTML_QuickForm_file (Alexey Borzov)- Moved 'magic quotes' handling to QuickForm's constructor (Alexey Borzov)- Use strtr() instead of rawurlencode() for javascript messages (Bertrand Mansion)- Changed the nonzero rule to every numbers (negative or positive) except zero (David Sklar)- Date element has been entirely reworked and optimised (Alexey Borzov)- Updated the examples to use the latest changes (Alexey Borzov, Bertrand Mansion)* Bugfixes- Fixed a bug in HTML_QuickForm_group::getFrozenHtml() (Alexey Borzov, Wolfram Kriesing)- Fixed a problem in HTML_QuickForm_group::getValue(): value was not changed to array (Alexey Borzov)- Correctly set element's index in addElement() if some of the elements were previously removed (Alexey Borzov, Wolfram Kriesing)- Fixed notice in _findElementValue() for files (Bertrand Mansion)- Fixed passing a 'selected' attribute to addOption() (Alexey Borzov, Wolfram Kriesing)* Deprecated- setFormat(), setMinYear() and other accessors in date element are now deprecated. Set options and attributes in the constructor instead (Alexey Borzov)- Method getAttributesString() is deprecated (Alexey Borzov)- HTML_QuickForm's isUploadedFile(), moveUploadedFile(), getUploadeFile() are now deprecated (Alexey Borzov)Deprecated methods will be removed from QuickForm in the next release.In this release, they throw PEAR errors but still finish the job.Use this to catch them with an error handler function, the global error code is QUICKFORM_DEPRECATED.     ";}i:8;a:5:{s:7:"version";s:3:"3.0";s:12:"release_date";s:10:"2003-06-04";s:15:"release_license";s:11:"PHP License";s:13:"release_state";s:6:"stable";s:13:"release_notes";s:233:"* Fixes- do not use submit values for 'submit' elements also (reported by Thomas Schulz, Mike Carter)- assorted small fixes to HTML_QuickForm's methods and PHPDoc documentation- HTML_QuickForm::apiVersion() returns 3.0 now    ";}i:9;a:5:{s:7:"version";s:6:"3.0RC1";s:12:"release_date";s:10:"2003-05-28";s:15:"release_license";s:11:"PHP License";s:13:"release_state";s:4:"beta";s:13:"release_notes";s:664:"* Bugfixes- setMaxfileSize() does not throw pear error anymore (Alexey Borzov)- onQuickFormEvent 'updateValue' fixes, elements that cannot actually have a submit value do not try to use one (Alexey Borzov)- _loadElement() now returns a reference (Alexey Borzov)- Several fixes to usage examples (Alexey Borzov, Thomas Schulz, Joerg Bruckmann)* Changes- Added time to the date element (Jason Rust)- Required groups now show the asterisk (Bertrand Mansion)- Optimizations in HTML_QuickForm_group's methods (Alexey Borzov)- ArraySmarty renderer now requires a Smarty object and uses Smarty templates for 'required' and errors output (Thomas Schulz)    ";}i:10;a:5:{s:7:"version";s:8:"3.0Beta2";s:12:"release_date";s:10:"2003-05-13";s:15:"release_license";s:11:"PHP License";s:13:"release_state";s:4:"beta";s:13:"release_notes";s:1266:"- PHP 4.2+ is now required for file uploads* Bugfixes- Fixed bug with selected values in select element- Fixed bug when form method was changed from get to post by adding a file element- addRule() and addGroupRule() now return a PEAR error when the rule is not registered- <label> tags are no more generated for frozen checkboxes and radios* Changes- Added new Array-based renderer for Smarty, with examples (Thomas Schulz)- Array renderer generates more info on the form, possibility to set styles for elements (Thomas Schulz)- Example of usage for Array renderer with Smarty (Thomas Schulz)- Better XHTML compliance for Default renderer output (Klaus Guenther, Alexey Borzov)- Added possibility to have multiple labels for one element (Jon Wood)- Added support for multiple labels in ITStatic and ITDynamic renderers (Jon Wood, Alexey, Bertrand)- Added client-side validation parameter to addGroupRule() (Bertrand Mansion)- getSubmitValues() can now return uploaded files (Markus Wolff, Alexey Borzov)- Added new methods set/getMaxFileSize (Tommy Ipsen)- Removed unwanted linefeeds in frozen checkboxes (Thomas Schulz)- Added Spanish translation for date element (The PhP_KiD)- Added a setValue() method to static element (Jon Wood)    ";}i:11;a:5:{s:7:"version";s:8:"3.0Beta1";s:12:"release_date";s:10:"2003-04-17";s:15:"release_license";s:11:"PHP License";s:13:"release_state";s:4:"beta";s:13:"release_notes";s:3974:"* Major changes in this release- Renderers   QuickForm now uses external renderers to output the form. Currently    available renderers are: Default - based on old toHtml() code,    Array - based on old toArray() code, ITStatic and ITDynamic - these work   through an ITX/Sigma template engine. More renderers are expected to follow. - Validation   Validation rules are tested in the order they are set. Groups can    now be validated with custom functions. File validation only happens    if a file is required. It is also tested if the file has been uploaded.- Static elements   Headers and Data (html) elements are treated like other form elements.    Headers can have a name, this makes it possible to use different templates   for different headers.- XHTML   HTML_Common and QuickForm have been reworked to be more XHTML compliant.* Migration to 3.0Incompatibilities:- Filters registration is not used anymore. Just give applyFilter() the function name as a parameter.- toArray() now returns a different structure and calls an external renderer: elements in groups are rendered as seperate elements, every element has a numeric index for key.- Validation rules are validated in the order they were set.- File validation happens only when the file is required.- Direct calls to onQuickFormEvent() with 'setDefault' and 'setConstant' events won't work anymore, these events have been replaced by an 'updateValue' event.- Grouped elements index is now a numeric key only. This can break some group rules if you used their associative key in addGroupRule().- Groups must have a name. If you don't want the name to be appended to the elements names, set the appendName parameter to false.Deprecated features:- addHeader() and addData(), while still there, are deprecated. Use addElement('header') and addElement('html').- If you want to customize form output, do so by using a renderer object. setElementTemplate() and the like are now deprecated.* Changes- Added support for external renderers, added a default and an array renderer based on old QuickForm code (Alexey Borzov)- Added a dynamic ITX/Sigma renderer with examples (Alexey Borzov)- Added a static ITX/Sigma renderer with examples (Bertrand Mansion)- Added possibility to validate a group with a function using addRule() (Bertrand Mansion)- Added possibility to validate groups when appendName is false (Bertrand Mansion)- Rules are validated in the order they are set (Bertrand Mansion)- Fixed problems when validating a file not uploaded (Frederic Poeydomenge, Bertrand Mansion)- addHeader() and addData() now call addElement(), added new 'header' and 'html' elements (Alexey Borzov)- Got rid of registering filters, now only function existence is checked. First parameter to applyFilter can be an array (Alexey Borzov)- Automatically generate a name for group element when no name given. Added possibility to append the group name or not to grouped elements (Alexey Borzov)- process() now accepts a callback function to process the form (Bertrand Mansion)- Added XHTML compliant labels in radio and checkboxes (Alexey Borzov, Alexander Radivanovich)- XHTML for form tag (Bertrand Mansion)- Elements values are now set through a uniform 'updateValue' event (Alexey Borzov)- Elements with value 0 are not considered empty when validating (Bertrand Mansion)- Fix warning with uploaded files (Frederic Poeydomenge)- Changed _findElementValue to work with appendName (Bertrand Mansion)- Added Polish date names in date element (Robert Janeczek)- Added Hungarian date names in date element (Kovacs Gergely)- Added Russian date names in date element (Alexey Borzov)- Optimized select element addOption() and toHtml() methods (Alexey Borzov)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -