File path: dist/twist/Core/Models/Form/Builder.model.php
Namespace: Twist\Core\Models\Form
storeField
—
Name | Description |
---|---|
$strTitle | n/a |
$strName | n/a |
$strType | n/a |
[$intMaxLength = null] | n/a |
[$mxdValue = null] | n/a |
[$arrAttributes = array()] | n/a |
[$mxdGroupID = null] | n/a |
void — No return information has been documented for this function.
<?php
//Set the variables for the example
$strTitle = 'foo';
$strName = 'foo';
$strType = 'foo';
$intMaxLength = null;
$mxdValue = null;
$arrAttributes = array();
$mxdGroupID = null;
//Call the function storeField with the example vars
$resBuilder = new \Twist\Core\Models\Form\Builder();
$resBuilder -> storeField($strTitle, $strName, $strType, $intMaxLength, $mxdValue, $arrAttributes, $mxdGroupID);