TwistPHP Documentation

updateField

File path: dist/twist/Core/Models/Form/Builder.model.php
Namespace: Twist\Core\Models\Form
Extends:

updateField

Parameters

Name Type Description
$strNamestringn/a
$strKeystringn/a
$strValuestringn/a

Return Values

void — No return information has been documented for this function.

Example

<?php
//Set the variables for the example
$strName 'foo';
$strKey 'foo';
$strValue 'foo';

//Call the function updateField with the example vars
$resBuilder = new \Twist\Core\Models\Form\Builder();
$resBuilder -> updateField($strName$strKey$strValue);