ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilTextInputGUI Class Reference

This class represents a text property in a property form. More...

+ Inheritance diagram for ilTextInputGUI:
+ Collaboration diagram for ilTextInputGUI:

Public Member Functions

 __construct ($a_title="", $a_postvar="")
 Constructor.
 setValue ($a_value)
 Set Value.
 getValue ()
 Get Value.
 setValidationFailureMessage ($a_msg)
 Set message string for validation failure.
 getValidationFailureMessage ()
 setValidationRegexp ($a_value)
 Set validation regexp.
 getValidationRegexp ()
 Get validation regexp.
 setMaxLength ($a_maxlength)
 Set Max Length.
 getMaxLength ()
 Get Max Length.
 setSize ($a_size)
 Set Size.
 setInlineStyle ($a_style)
 Set inline style.
 getInlineStyle ()
 Get inline style.
 setValueByArray ($a_values)
 Set value by array.
 getSize ()
 Get Size.
 setSuffix ($a_value)
 Set suffix.
 getSuffix ()
 Get suffix.
 setInputType ($a_type)
 set input type
 getInputType ()
 get input type
 setSubmitFormOnEnter ($a_val)
 Set submit form on enter.
 getSubmitFormOnEnter ()
 Get submit form on enter.
 checkInput ()
 Check input, strip slashes etc.
 getDataSource ()
 get datasource link for YUI autocomplete
 setDataSource ($href)
 set datasource link for YUI autocomplete
 getDataSourceSchema ()
 get datasource schema for YUI autocomplete
 setDataSourceSchema ($ds)
 set datasource schema for YUI autocomplete
 getDataSourceResultFormat ()
 get data result format callback for YUI autocomplete
 setDataSourceResultFormat ($callback)
 set data result format callback for YUI autocomplete
 setDataSourceDelimiter ($ar)
 set data delimiter array
 getDataSourceDelimiter ()
 get data delimiter array
 insert (&$a_tpl)
 Insert property html.
 getTableFilterHTML ()
 Get HTML for table filter.
 getToolbarHTML ()
 Get HTML for toolbar.
- Public Member Functions inherited from ilSubEnabledFormPropertyGUI
 addSubItem ($a_item)
 Add Subitem.
 getSubItems ()
 Get Subitems.
 checkSubItemsInput ()
 Check SubItems.
 getSubForm ()
 Get sub form html.
 getItemByPostVar ($a_post_var)
 Get item by post var.
- Public Member Functions inherited from ilFormPropertyGUI
executeCommand ()
 Execute command.
 getType ()
 Get Type.
 setTitle ($a_title)
 Set Title.
 getTitle ()
 Get Title.
 setPostVar ($a_postvar)
 Set Post Variable.
 getPostVar ()
 Get Post Variable.
 getFieldId ()
 Get Post Variable.
 setInfo ($a_info)
 Set Information Text.
 getInfo ()
 Get Information Text.
 setAlert ($a_alert)
 Set Alert Text.
 getAlert ()
 Get Alert Text.
 setRequired ($a_required)
 Set Required.
 getRequired ()
 Get Required.
 setDisabled ($a_disabled)
 Set Disabled.
 getDisabled ()
 Get Disabled.
 setParentForm ($a_parentform)
 Set Parent Form.
 getParentForm ()
 Get Parent Form.
 setParent ($a_val)
 Set Parent GUI object.
 getParent ()
 Get Parent GUI object.
 hideSubForm ()
 Sub form hidden on init?
 setHiddenTitle ($a_val)
 Set hidden title (for screenreaders)
 getHiddenTitle ()
 Get hidden title.
 serializeData ()
 serialize data
 unserializeData ($a_data)
 unserialize data
 writeToSession ()
 Write to session.
 clearFromSession ()
 Clear session value.
 readFromSession ()
 Read from session.
 getHiddenTag ($a_post_var, $a_value)
 Get hidden tag (used for disabled properties)

Protected Member Functions

 render ($a_mode="")
 Render item.

Protected Attributes

 $value
 $maxlength = 200
 $size = 40
 $validationRegexp
 $validationFailureMessage = ''
 $suffix
 $style_css
 $yui_dataSource
 $yui_dataSchema
 $yui_formatCallback
 $yui_delimiterarray = array()
 $submit_form_on_enter = false
- Protected Attributes inherited from ilSubEnabledFormPropertyGUI
 $sub_items = array()
- Protected Attributes inherited from ilFormPropertyGUI
 $type
 $title
 $postvar
 $info
 $alert
 $required = false
 $parentgui
 $parentform

Detailed Description

This class represents a text property in a property form.

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

Definition at line 14 of file class.ilTextInputGUI.php.

Constructor & Destructor Documentation

ilTextInputGUI::__construct (   $a_title = "",
  $a_postvar = "" 
)

Constructor.

Parameters
string$a_titleTitle
string$a_postvarPost Variable

Reimplemented from ilFormPropertyGUI.

Reimplemented in ilCategoryWizardInputGUI, ilMatchingWizardInputGUI, ilKVPWizardInputGUI, ilErrorTextWizardInputGUI, ilSingleChoiceWizardInputGUI, ilAnswerWizardInputGUI, ilImageWizardInputGUI, ilMatchingPairWizardInputGUI, ilTRBLColorPickerInputGUI, ilFeedUrlInputGUI, ilTextWizardInputGUI, ilRegExpInputGUI, ilLuceneQueryInputGUI, and ilColorPickerInputGUI.

Definition at line 37 of file class.ilTextInputGUI.php.

References setInputType().

{
parent::__construct($a_title, $a_postvar);
$this->setInputType("text");
$this->validationRegexp = "";
}

+ Here is the call graph for this function:

Member Function Documentation

ilTextInputGUI::checkInput ( )

Check input, strip slashes etc.

set alert, if input is not ok.

Returns
boolean Input ok, true/false

Reimplemented from ilFormPropertyGUI.

Reimplemented in ilKVPWizardInputGUI, ilTRBLColorPickerInputGUI, ilCategoryWizardInputGUI, ilErrorTextWizardInputGUI, ilSingleChoiceWizardInputGUI, ilMatchingWizardInputGUI, ilAnswerWizardInputGUI, ilImageWizardInputGUI, ilMatchingPairWizardInputGUI, ilTextWizardInputGUI, ilRegExpInputGUI, ilMultipleChoiceWizardInputGUI, ilFeedUrlInputGUI, ilLuceneQueryInputGUI, ilColorPickerInputGUI, and ilFormulaInputGUI.

Definition at line 236 of file class.ilTextInputGUI.php.

References $_POST, $lng, ilSubEnabledFormPropertyGUI\checkSubItemsInput(), ilFormPropertyGUI\getPostVar(), ilFormPropertyGUI\getRequired(), getValidationFailureMessage(), getValidationRegexp(), ilFormPropertyGUI\setAlert(), and ilUtil\stripSlashes().

{
global $lng;
if ($this->getRequired() && trim($_POST[$this->getPostVar()]) == "")
{
$this->setAlert($lng->txt("msg_input_is_required"));
return false;
}
else if (strlen($this->getValidationRegexp()))
{
if (!preg_match($this->getValidationRegexp(), $_POST[$this->getPostVar()]))
{
$this->setAlert(
$lng->txt('msg_wrong_format')
);
return FALSE;
}
}
return $this->checkSubItemsInput();
}

+ Here is the call graph for this function:

ilTextInputGUI::getDataSource ( )

get datasource link for YUI autocomplete

Returns
String link to data generation script

Definition at line 267 of file class.ilTextInputGUI.php.

References $yui_dataSource.

Referenced by render().

{
}

+ Here is the caller graph for this function:

ilTextInputGUI::getDataSourceDelimiter ( )

get data delimiter array

Returns
array array of current delimiters

Definition at line 344 of file class.ilTextInputGUI.php.

References $yui_delimiterarray.

Referenced by render().

+ Here is the caller graph for this function:

ilTextInputGUI::getDataSourceResultFormat ( )

get data result format callback for YUI autocomplete

Definition at line 311 of file class.ilTextInputGUI.php.

References $yui_formatCallback.

Referenced by render().

+ Here is the caller graph for this function:

ilTextInputGUI::getDataSourceSchema ( )

get datasource schema for YUI autocomplete

Returns
array data schema as array

Definition at line 285 of file class.ilTextInputGUI.php.

References $yui_dataSchema.

Referenced by render().

{
}

+ Here is the caller graph for this function:

ilTextInputGUI::getInlineStyle ( )

Get inline style.

Returns
string style

Definition at line 144 of file class.ilTextInputGUI.php.

References $style_css.

Referenced by render().

{
}

+ Here is the caller graph for this function:

ilTextInputGUI::getInputType ( )

get input type

public

Definition at line 206 of file class.ilTextInputGUI.php.

Referenced by render().

{
return $this->input_type;
}

+ Here is the caller graph for this function:

ilTextInputGUI::getMaxLength ( )
ilTextInputGUI::getSize ( )
ilTextInputGUI::getSubmitFormOnEnter ( )

Get submit form on enter.

Returns
boolean

Definition at line 226 of file class.ilTextInputGUI.php.

References $submit_form_on_enter.

Referenced by render().

+ Here is the caller graph for this function:

ilTextInputGUI::getSuffix ( )

Get suffix.

Returns
string suffix

Definition at line 184 of file class.ilTextInputGUI.php.

References $suffix.

Referenced by render().

{
return $this->suffix;
}

+ Here is the caller graph for this function:

ilTextInputGUI::getTableFilterHTML ( )

Get HTML for table filter.

Implements ilTableFilterItem.

Definition at line 455 of file class.ilTextInputGUI.php.

References render().

{
$html = $this->render();
return $html;
}

+ Here is the call graph for this function:

ilTextInputGUI::getToolbarHTML ( )

Get HTML for toolbar.

Definition at line 464 of file class.ilTextInputGUI.php.

References render().

{
$html = $this->render("toolbar");
return $html;
}

+ Here is the call graph for this function:

ilTextInputGUI::getValidationFailureMessage ( )

Definition at line 74 of file class.ilTextInputGUI.php.

References $validationFailureMessage.

Referenced by checkInput().

+ Here is the caller graph for this function:

ilTextInputGUI::getValidationRegexp ( )

Get validation regexp.

Returns
string regexp

Definition at line 94 of file class.ilTextInputGUI.php.

References $validationRegexp.

Referenced by ilTextWizardInputGUI\checkInput(), and checkInput().

+ Here is the caller graph for this function:

ilTextInputGUI::getValue ( )

Get Value.

Returns
string Value

Definition at line 59 of file class.ilTextInputGUI.php.

References $value.

Referenced by ilColorPickerInputGUI\insert(), and render().

{
return $this->value;
}

+ Here is the caller graph for this function:

ilTextInputGUI::insert ( $a_tpl)

Insert property html.

Returns
int Size

Reimplemented in ilSingleChoiceWizardInputGUI, ilMatchingWizardInputGUI, ilKVPWizardInputGUI, ilErrorTextWizardInputGUI, ilCategoryWizardInputGUI, ilImageWizardInputGUI, ilMultipleChoiceWizardInputGUI, ilAnswerWizardInputGUI, ilMatchingPairWizardInputGUI, and ilTextWizardInputGUI.

Definition at line 443 of file class.ilTextInputGUI.php.

References render().

{
$html = $this->render();
$a_tpl->setCurrentBlock("prop_generic");
$a_tpl->setVariable("PROP_GENERIC", $html);
$a_tpl->parseCurrentBlock();
}

+ Here is the call graph for this function:

ilTextInputGUI::render (   $a_mode = "")
protected

Render item.

Definition at line 352 of file class.ilTextInputGUI.php.

References $tpl, ilJsonUtil\encode(), getDataSource(), getDataSourceDelimiter(), getDataSourceResultFormat(), getDataSourceSchema(), ilFormPropertyGUI\getDisabled(), ilFormPropertyGUI\getFieldId(), ilFormPropertyGUI\getHiddenTag(), getInlineStyle(), getInputType(), getMaxLength(), ilFormPropertyGUI\getPostVar(), getSize(), getSubmitFormOnEnter(), getSuffix(), getValue(), ilYuiUtil\initAutoComplete(), and ilUtil\prepareFormOutput().

Referenced by getTableFilterHTML(), getToolbarHTML(), and insert().

{
$tpl = new ilTemplate("tpl.prop_textinput.html", true, true, "Services/Form");
if (strlen($this->getValue()))
{
$tpl->setCurrentBlock("prop_text_propval");
$tpl->setVariable("PROPERTY_VALUE", ilUtil::prepareFormOutput($this->getValue()));
$tpl->parseCurrentBlock();
}
if (strlen($this->getInlineStyle()))
{
$tpl->setCurrentBlock("stylecss");
$tpl->setVariable("CSS_STYLE", ilUtil::prepareFormOutput($this->getInlineStyle()));
$tpl->parseCurrentBlock();
}
if ($this->getSubmitFormOnEnter())
{
$tpl->touchBlock("submit_form_on_enter");
}
switch($this->getInputType())
{
case 'password':
$tpl->setVariable('PROP_INPUT_TYPE','password');
break;
case 'hidden':
$tpl->setVariable('PROP_INPUT_TYPE','hidden');
break;
case 'text':
default:
$tpl->setVariable('PROP_INPUT_TYPE','text');
}
$tpl->setVariable("ID", $this->getFieldId());
$tpl->setVariable("SIZE", $this->getSize());
if($this->getMaxLength() != null)
$tpl->setVariable("MAXLENGTH", $this->getMaxLength());
if (strlen($this->getSuffix())) $tpl->setVariable("INPUT_SUFFIX", $this->getSuffix());
if ($this->getDisabled())
{
$tpl->setVariable("DISABLED",
" disabled=\"disabled\"");
$tpl->setVariable("HIDDEN_INPUT",
$this->getHiddenTag($this->getPostVar(), $this->getValue()));
}
else
{
$tpl->setVariable("POST_VAR", $this->getPostVar());
}
// use autocomplete feature?
if ($this->getDataSource() && $this->getDataSourceSchema())
{
include_once "./Services/YUI/classes/class.ilYuiUtil.php";
include_once "./Services/JSON/classes/class.ilJsonUtil.php";
$tpl->setVariable('ID_AUTOCOMPLETE', $this->getFieldId() . "_autocomplete");
$tpl->setVariable('YUI_DATASOURCE', $this->getDataSource());
$tpl->setVariable('YUI_DATASCHEMA', ilJsonUtil::encode($this->getDataSourceSchema()));
{
$tpl->setVariable('YUI_FORMAT_CALLBACK', $this->getDataSourceResultFormat());
}
if ($this->getDataSourceDelimiter())
{
$tpl->setVariable('DELIMITER_ARRAY', ilJsonUtil::encode($this->getDataSourceDelimiter()));
}
}
if ($a_mode == "toolbar")
{
// block-inline hack, see: http://blog.mozilla.com/webdev/2009/02/20/cross-browser-inline-block/
// -moz-inline-stack for FF2
// zoom 1; *display:inline for IE6 & 7
$tpl->setVariable("STYLE_PAR", 'display: -moz-inline-stack; display:inline-block; zoom: 1; *display:inline; z-index:3000;');
$tpl->setVariable("AC_STYLE", 'style="position:absolute; width:400px;"');
}
else
{
$tpl->setVariable("STYLE_PAR", 'z-index:3000;');
}
return $tpl->get();
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilTextInputGUI::setDataSource (   $href)

set datasource link for YUI autocomplete

Parameters
Stringlink to data generation script

Definition at line 276 of file class.ilTextInputGUI.php.

Referenced by ilRoleAutoCompleteInputGUI\__construct(), ilUserLoginAutoCompleteInputGUI\__construct(), and ilMailAddressbookGUI\showAddressbook().

{
$this->yui_dataSource = $href;
}

+ Here is the caller graph for this function:

ilTextInputGUI::setDataSourceDelimiter (   $ar)

set data delimiter array

Parameters
arrayarray of chars. Each char will be used as delimiter to handle multiple inputs in one field (e.g. multiple email recipients)

Definition at line 333 of file class.ilTextInputGUI.php.

{
if (!is_array($ar))
$ar = array($ar);
$this->yui_delimiterarray = $ar;
}
ilTextInputGUI::setDataSourceResultFormat (   $callback)

set data result format callback for YUI autocomplete

Parameters
StringJavascript callback function which takes three parameters. $callback can be a the name of a function without parenthesis or an function (a, b, c) {...} text block

Definition at line 322 of file class.ilTextInputGUI.php.

Referenced by ilRoleAutoCompleteInputGUI\__construct(), and ilUserLoginAutoCompleteInputGUI\__construct().

{
$this->yui_formatCallback = $callback;
}

+ Here is the caller graph for this function:

ilTextInputGUI::setDataSourceSchema (   $ds)

set datasource schema for YUI autocomplete

Parameters
arrayData Schema as array. The first Element contains a path in dot notation to a result array in the expected json response e.g. for the json response {response : { result : [firstObject, secondObject ...] }} the dot notated path is 'response.result' The following Elements contains names of attributes within the resultobjects (firstObject, secondObject... see above) which should be passed to the autocomplete component. You can define a javascript format callback function, to process the passed values (see setDataSourceResultFormat for more information)

Definition at line 303 of file class.ilTextInputGUI.php.

Referenced by ilRoleAutoCompleteInputGUI\__construct(), and ilUserLoginAutoCompleteInputGUI\__construct().

{
$this->yui_dataSchema = $ds;
}

+ Here is the caller graph for this function:

ilTextInputGUI::setInlineStyle (   $a_style)

Set inline style.

Parameters
string$a_stylestyle

Definition at line 134 of file class.ilTextInputGUI.php.

{
$this->style_css = $a_style;
}
ilTextInputGUI::setInputType (   $a_type)

set input type

public

Parameters
stringinput type password | text

Definition at line 196 of file class.ilTextInputGUI.php.

Referenced by ilRoleAutoCompleteInputGUI\__construct(), ilUserLoginAutoCompleteInputGUI\__construct(), __construct(), and ilPDNewsBlockGUI\editSettings().

{
$this->input_type = $a_type;
}

+ Here is the caller graph for this function:

ilTextInputGUI::setMaxLength (   $a_maxlength)

Set Max Length.

Parameters
int$a_maxlengthMax Length

Definition at line 104 of file class.ilTextInputGUI.php.

Referenced by ilRoleAutoCompleteInputGUI\__construct(), ilUserLoginAutoCompleteInputGUI\__construct(), ilSocialBookmarks\_initForm(), ilObjPaymentSettingsGUI\getERPform_eco(), ilObjMediaCastGUI\initAddCastItemForm(), ilObjSystemFolderGUI\initBasicSettingsForm(), ilSetupGUI\initClientIniForm(), ilSetupGUI\initClientLoginForm(), ilSetupGUI\initContactDataForm(), ilObjSystemFolderGUI\initContactInformationForm(), ilObjSAHSLearningModuleGUI\initCreationForm(), ilObjContentObjectGUI\initCreationForm(), ilObjectPluginGUI\initEditForm(), ilObjFileBasedLMGUI\initEditForm(), ilObject2GUI\initEditForm(), ilObjMediaPoolGUI\initEditForm(), ilLPObjectsTableGUI\initFilter(), ilLPProgressTableGUI\initFilter(), ilSurveyQuestionblockbrowserTableGUI\initFilter(), ilTestQuestionBrowserTableGUI\initFilter(), ilSurveyQuestionbrowserTableGUI\initFilter(), ilSurveyQuestionsTableGUI\initFilter(), ilEvaluationAllTableGUI\initFilter(), ilUserTableGUI\initFilter(), ilQuestionBrowserTableGUI\initFilter(), ilMediaPoolTableGUI\initFilter(), ilObjMediaPoolGUI\initFolderForm(), ilObjForumGUI\initForumCreateForm(), ilObjSystemFolderGUI\initJavaServerForm(), ilObjMediaPoolGUI\initMediaPoolPageForm(), ilObjStyleSheetGUI\initPropertiesForm(), ilObjForumGUI\initReplyEditForm(), ilObjWikiGUI\initSettingsForm(), ilSearchGUI\initStandardSearchForm(), ilObjStyleSheetGUI\initTagStyleForm(), ilObjForumGUI\initTopicCreateForm(), ilObjPaymentSettingsGUI\initVatForm(), ilFileSystemGUI\listFiles(), and ilObjPrivacySecurityGUI\showSecurity().

{
$this->maxlength = $a_maxlength;
}

+ Here is the caller graph for this function:

ilTextInputGUI::setSubmitFormOnEnter (   $a_val)

Set submit form on enter.

Parameters
boolean

Definition at line 216 of file class.ilTextInputGUI.php.

{
$this->submit_form_on_enter = $a_val;
}
ilTextInputGUI::setSuffix (   $a_value)

Set suffix.

Parameters
string$a_valuesuffix

Definition at line 174 of file class.ilTextInputGUI.php.

{
$this->suffix = $a_value;
}
ilTextInputGUI::setValidationFailureMessage (   $a_msg)

Set message string for validation failure.

Returns
Parameters
string$a_msg

Definition at line 69 of file class.ilTextInputGUI.php.

{
$this->validationFailureMessage = $a_msg;
}
ilTextInputGUI::setValidationRegexp (   $a_value)

Set validation regexp.

Parameters
string$a_valueregexp

Definition at line 84 of file class.ilTextInputGUI.php.

{
$this->validationRegexp = $a_value;
}
ilTextInputGUI::setValue (   $a_value)

Set Value.

Parameters
string$a_valueValue

Reimplemented in ilMatchingWizardInputGUI, ilCategoryWizardInputGUI, ilTextWizardInputGUI, ilSingleChoiceWizardInputGUI, ilKVPWizardInputGUI, ilColorPickerInputGUI, ilErrorTextWizardInputGUI, ilImageWizardInputGUI, ilAnswerWizardInputGUI, ilMatchingPairWizardInputGUI, ilMultipleChoiceWizardInputGUI, and ilFormulaInputGUI.

Definition at line 49 of file class.ilTextInputGUI.php.

Referenced by assQuestionGUI\addBasicQuestionFormProperties(), ilUserProfile\addStandardFieldsToForm(), ilObjPaymentSettingsGUI\bmfSettingsObject(), ilCertificateGUI\certificateEditor(), ilObjForumGUI\editObject(), SurveyTextQuestionGUI\editQuestion(), SurveyMetricQuestionGUI\editQuestion(), SurveyMultipleChoiceQuestionGUI\editQuestion(), SurveySingleChoiceQuestionGUI\editQuestion(), SurveyMatrixQuestionGUI\editQuestion(), assJavaAppletGUI\editQuestion(), ilObjPersonalDesktopSettingsGUI\editSettings(), ilPDNewsBlockGUI\editSettings(), ilObjPaymentSettingsGUI\epaySettingsObject(), ilObjPaymentSettingsGUI\generalSettingsObject(), ilLuceneAdvancedSearchFields\getFormElement(), ilAdvancedSearchGUI\initAdvancedMetaDataForm(), ilECSSettingsGUI\initCategoryMappingForm(), ilObjMDSettingsGUI\initCopyrightEditForm(), ilObjRemoteCourseGUI\initEditTable(), ilCalendarAppointmentGUI\initForm(), ilObjSessionGUI\initForm(), ilBookmarkAdministrationGUI\initFormBookmark(), ilCourseObjectivesGUI\initFormLimits(), ilObjLinkResourceGUI\initFormLink(), ilLuceneSearchGUI\initFormSearch(), ilCalendarCategoryGUI\initFormSearch(), ilObjMediaCastSettingsGUI\initFormSettings(), ilObjLinkResourceGUI\initFormSettings(), ilObjCourseGUI\initInfoEditor(), ilPCTableGUI\initPropertiesForm(), ilECSSettingsGUI\initSettingsForm(), ilObjMediaCastGUI\initSettingsForm(), ilObjSurveyGUI\inviteObject(), ilAdvancedMDRecordGUI\parseSearch(), ilObjPaymentSettingsGUI\paypalSettingsObject(), ilObjChatGUI\renameObject(), ilForumModeratorsGUI\searchModeratorsForm(), setValueByArray(), ilMailAddressbookGUI\showAddressForm(), ilObjPrivacySecurityGUI\showSecurity(), and ilShopTopicsGUI\showTopicForm().

{
$this->value = $a_value;
}

+ Here is the caller graph for this function:

ilTextInputGUI::setValueByArray (   $a_values)

Set value by array.

Parameters
array$a_valuesvalue array

Definition at line 154 of file class.ilTextInputGUI.php.

References ilFormPropertyGUI\getPostVar(), and setValue().

{
$this->setValue($a_values[$this->getPostVar()]);
}

+ Here is the call graph for this function:

Field Documentation

ilTextInputGUI::$maxlength = 200
protected

Definition at line 17 of file class.ilTextInputGUI.php.

Referenced by getMaxLength().

ilTextInputGUI::$size = 40
protected

Definition at line 18 of file class.ilTextInputGUI.php.

Referenced by getSize().

ilTextInputGUI::$style_css
protected

Definition at line 22 of file class.ilTextInputGUI.php.

Referenced by getInlineStyle().

ilTextInputGUI::$submit_form_on_enter = false
protected

Definition at line 29 of file class.ilTextInputGUI.php.

Referenced by getSubmitFormOnEnter().

ilTextInputGUI::$validationFailureMessage = ''
protected

Definition at line 20 of file class.ilTextInputGUI.php.

Referenced by getValidationFailureMessage().

ilTextInputGUI::$validationRegexp
protected

Definition at line 19 of file class.ilTextInputGUI.php.

Referenced by getValidationRegexp().

ilTextInputGUI::$yui_dataSchema
protected

Definition at line 26 of file class.ilTextInputGUI.php.

Referenced by getDataSourceSchema().

ilTextInputGUI::$yui_dataSource
protected

Definition at line 25 of file class.ilTextInputGUI.php.

Referenced by getDataSource().

ilTextInputGUI::$yui_delimiterarray = array()
protected

Definition at line 28 of file class.ilTextInputGUI.php.

Referenced by getDataSourceDelimiter().

ilTextInputGUI::$yui_formatCallback
protected

Definition at line 27 of file class.ilTextInputGUI.php.

Referenced by getDataSourceResultFormat().


The documentation for this class was generated from the following file: