|
Cheetah
|
Public Member Functions | |
| __construct ($aInfo) | |
| getCode () | |
| genForm () | |
| genTable () | |
| genRow (&$aInput) | |
| genRowStandard (&$aInput) | |
| genRowSelectBox (&$aInput) | |
| genRowHeaders (&$aInput) | |
| genRowBlockHeader (&$aInput) | |
| genBlockEnd () | |
| genWrapperInput ($aInput, $sContent) | |
| genInput (&$aInput) | |
| getInputId (&$aInput) | |
| genInputStandard (&$aInput) | |
| genInputButton (&$aInput) | |
| genInputTextarea (&$aInput) | |
| addHtmlEditor ($iViewMode, &$aInput) | |
| genInputSelect (&$aInput) | |
| genInputSelectBox (&$aInput, $sInfo='', $sError='') | |
| genInputSelectMultiple (&$aInput) | |
| genInputCheckboxSet (&$aInput) | |
| genInputRadioSet (&$aInput) | |
| genInputCaptcha (&$aInput) | |
| genLabel (&$aInput) | |
| convertArray2Attrs ($a) | |
| genInfoIcon ($sInfo) | |
| genErrorIcon ( $sError='') | |
| getOpenTbody ($aAttrsAdd=false) | |
| getCloseTbody () | |
| getInput ($sType, $sAttrs, $sContent='') | |
| addCssJs ($isDateControl=false, $isDateTimeControl=false) | |
Public Member Functions inherited from ChWsbForm | |
| initChecker ($aValues=array()) | |
| insert ($aValsToAdd=array()) | |
| update ($val, $aValsToAdd=array()) | |
| generateUri () | |
| getCleanValue ($sName) | |
| isSubmitted () | |
| isValid () | |
| isSubmittedAndValid () | |
| genCsrfToken ($bReturn=false) | |
| getCsrfTokenTime () | |
Public Attributes | |
| $bEnableErrorIcon = true | |
| $sCode | |
| $_sCodeAdd = '' | |
| $_isTbodyOpened = false | |
| $_isDateControl = false | |
| $_isDateTimeControl = false | |
Public Attributes inherited from ChWsbForm | |
| $_isValid = true | |
| $_sCheckerHelper | |
| $aFormAttrs | |
| $aTableAttrs | |
| $aInputs | |
| $aParams | |
| $id | |
Additional Inherited Members | |
Static Public Member Functions inherited from ChWsbForm | |
| static | getSubmittedValue ($sKey, $sMethod) |
| static | getCsrfToken () |
This work, "Cheetah - https://www.cheetahwsb.com", is a derivative of "Dolphin Pro V7.4.2" by BoonEx Pty Limited - https://www.boonex.com/, used under CC-BY. "Cheetah" is licensed under CC-BY by Dean J. Bassett Jr. CC-BY License - http://creativecommons.org/licenses/by/3.0/
Definition at line 10 of file ChBaseFormView.php.
| ChBaseFormView::__construct | ( | $aInfo | ) |
Constructor
| array | $aInfo | Form contents |
$aInfo['params'] = array( 'remove_form' => true|false, );
Reimplemented from ChWsbForm.
Reimplemented in ChOAuthFormAdd, ChSitesFormSearch, ChTemplFormView, ChTemplFormView, ChTemplFormView, and ChWsbFormMedia.
Definition at line 46 of file ChBaseFormView.php.
Definition at line 1073 of file ChBaseFormView.php.
| ChBaseFormView::addHtmlEditor | ( | $iViewMode, | |
| & | $aInput | ||
| ) |
Definition at line 627 of file ChBaseFormView.php.
| ChBaseFormView::convertArray2Attrs | ( | $a | ) |
Convert array to attributes string
$a = array('name' => 'test', 'value' => 5); $s = $this->convertArray2Attrs($a); echo $s;
Output: name="test" value="5"
| array | $a |
Definition at line 966 of file ChBaseFormView.php.
| ChBaseFormView::genBlockEnd | ( | ) |
Definition at line 344 of file ChBaseFormView.php.
| ChBaseFormView::genErrorIcon | ( | $sError = '' | ) |
Definition at line 993 of file ChBaseFormView.php.
| ChBaseFormView::genForm | ( | ) |
| ChBaseFormView::genInfoIcon | ( | $sInfo | ) |
Definition at line 985 of file ChBaseFormView.php.
| ChBaseFormView::genInput | ( | & | $aInput | ) |
Generate HTML Input Element
| array | $aInput |
Definition at line 366 of file ChBaseFormView.php.
| ChBaseFormView::genInputButton | ( | & | $aInput | ) |
Generate standard Button/Reset/Submit Element
| array | $aInput |
Definition at line 571 of file ChBaseFormView.php.
| ChBaseFormView::genInputCaptcha | ( | & | $aInput | ) |
Definition at line 912 of file ChBaseFormView.php.
| ChBaseFormView::genInputCheckboxSet | ( | & | $aInput | ) |
Generate Checkbox Set Element
| array | $aInput |
Definition at line 815 of file ChBaseFormView.php.
| ChBaseFormView::genInputRadioSet | ( | & | $aInput | ) |
Generate Radiobuttons Set Element
| array | $aInput |
Definition at line 866 of file ChBaseFormView.php.
| ChBaseFormView::genInputSelect | ( | & | $aInput | ) |
Generate Select Element
| array | $aInput |
Definition at line 651 of file ChBaseFormView.php.
| ChBaseFormView::genInputSelectBox | ( | & | $aInput, |
$sInfo = '', |
|||
$sError = '' |
|||
| ) |
Generate Select Box Element
| array | $aInput |
Definition at line 697 of file ChBaseFormView.php.
| ChBaseFormView::genInputSelectMultiple | ( | & | $aInput | ) |
Generate Multiple Select Element
| array | $aInput |
Definition at line 771 of file ChBaseFormView.php.
| ChBaseFormView::genInputStandard | ( | & | $aInput | ) |
Generate standard Input Element
| array | $aInput |
Definition at line 516 of file ChBaseFormView.php.
| ChBaseFormView::genInputTextarea | ( | & | $aInput | ) |
Generate Textarea Element
| array | $aInput |
Definition at line 603 of file ChBaseFormView.php.
| ChBaseFormView::genLabel | ( | & | $aInput | ) |
Generate Label Element
| string | $sLabel | Text of the Label |
| string | $sInputID | Dependant Input Element ID |
Definition at line 940 of file ChBaseFormView.php.
| ChBaseFormView::genRow | ( | & | $aInput | ) |
Generate single Table Row
| array | $aInput |
Definition at line 131 of file ChBaseFormView.php.
| ChBaseFormView::genRowBlockHeader | ( | & | $aInput | ) |
Generate Block Headers row
| array | $aInput |
Definition at line 300 of file ChBaseFormView.php.
| ChBaseFormView::genRowHeaders | ( | & | $aInput | ) |
Generate Table Headers row
| array | $aInput |
Definition at line 281 of file ChBaseFormView.php.
| ChBaseFormView::genRowSelectBox | ( | & | $aInput | ) |
Generate select_box row
| array | $aInput |
Definition at line 240 of file ChBaseFormView.php.
| ChBaseFormView::genRowStandard | ( | & | $aInput | ) |
Generate standard row
| array | $aInput |
Definition at line 169 of file ChBaseFormView.php.
| ChBaseFormView::genTable | ( | ) |
| ChBaseFormView::genWrapperInput | ( | $aInput, | |
| $sContent | |||
| ) |
Definition at line 349 of file ChBaseFormView.php.
| ChBaseFormView::getCloseTbody | ( | ) |
Definition at line 1023 of file ChBaseFormView.php.
| ChBaseFormView::getCode | ( | ) |
| ChBaseFormView::getInput | ( | $sType, | |
| $sAttrs, | |||
$sContent = '' |
|||
| ) |
Definition at line 1033 of file ChBaseFormView.php.
| ChBaseFormView::getInputId | ( | & | $aInput | ) |
Generate new Input Element id
| array | $aInput |
Definition at line 478 of file ChBaseFormView.php.
| ChBaseFormView::getOpenTbody | ( | $aAttrsAdd = false | ) |
Definition at line 1011 of file ChBaseFormView.php.
| ChBaseFormView::$_isDateControl = false |
Definition at line 32 of file ChBaseFormView.php.
| ChBaseFormView::$_isDateTimeControl = false |
Definition at line 33 of file ChBaseFormView.php.
| ChBaseFormView::$_isTbodyOpened = false |
Definition at line 30 of file ChBaseFormView.php.
| ChBaseFormView::$_sCodeAdd = '' |
Definition at line 28 of file ChBaseFormView.php.
| ChBaseFormView::$bEnableErrorIcon = true |
Definition at line 12 of file ChBaseFormView.php.
| ChBaseFormView::$sCode |
Definition at line 19 of file ChBaseFormView.php.