ILIAS  Release_3_10_x_branch Revision 61812
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilRegExpInputGUI Class Reference

This class represents a regular expression input property in a property form. More...

+ Inheritance diagram for ilRegExpInputGUI:
+ Collaboration diagram for ilRegExpInputGUI:

Public Member Functions

 __construct ($a_title="", $a_postvar="")
 Constructor.
 setNoMatchMessage ($a_nomatchmessage)
 Set Message, if input does not match.
 getNoMatchMessage ()
 Get Message, if input does not match.
 setPattern ($pattern)
 set pattern
 getPattern ()
 return pattern
 checkInput ()
 Check input, strip slashes etc.
- Public Member Functions inherited from ilTextInputGUI
 setValue ($a_value)
 Set Value.
 getValue ()
 Get Value.
 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.
 setValueByArray ($a_values)
 Set value by array.
 getSize ()
 Get Size.
 setInputType ($a_type)
 set input type
 getInputType ()
 get input type
 insert (&$a_tpl)
 Insert property html.
- Public Member Functions inherited from ilSubEnabledFormPropertyGUI
 addSubItem ($a_item)
 Add Subitem.
 getSubItems ()
 Get Subitems.
 setSubformMode ($a_subformmode)
 Set Subform Mode.
 getSubformMode ()
 Get Subform Mode.
 checkSubItemsInput ()
 Check SubItems.
 getSubForm ()
 Get sub form html.
- Public Member Functions inherited from ilFormPropertyGUI
 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.

Private Attributes

 $pattern

Additional Inherited Members

- Protected Member Functions inherited from ilFormPropertyGUI
 setType ($a_type)
 Set Type.
- Protected Attributes inherited from ilTextInputGUI
 $value
 $maxlength = 200
 $size = 40
 $validationRegexp

Detailed Description

This class represents a regular expression input property in a property form.

Author
Roland Küstermann rolan.nosp@m.d.ku.nosp@m.ester.nosp@m.mann.nosp@m.@kit..nosp@m.edu
Version
$Id$

Definition at line 31 of file class.ilRegExpInputGUI.php.

Constructor & Destructor Documentation

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

Constructor.

Parameters
string$a_titleTitle
string$a_postvarPost Variable

Reimplemented from ilTextInputGUI.

Definition at line 41 of file class.ilRegExpInputGUI.php.

References ilFormPropertyGUI\setType().

{
parent::__construct($a_title, $a_postvar);
$this->setType("feedurl");
}

+ Here is the call graph for this function:

Member Function Documentation

ilRegExpInputGUI::checkInput ( )

Check input, strip slashes etc.

set alert, if input is not ok.

Returns
boolean Input ok, true/false

Reimplemented from ilTextInputGUI.

Definition at line 92 of file class.ilRegExpInputGUI.php.

References $lng, $result, ilTextInputGUI\$value, getNoMatchMessage(), ilFormPropertyGUI\getPostVar(), ilFormPropertyGUI\getRequired(), ilFormPropertyGUI\setAlert(), and ilUtil\stripSlashes().

{
global $lng;
// this line is necessary, otherwise it is a security issue (Alex)
$_POST[$this->getPostVar()] = ilUtil::stripSlashes($_POST[$this->getPostVar()]);
$value = $_POST[$this->getPostVar()];
if (!$this->getRequired() && strcasecmp($value, "") == 0)
{
return true;
}
$result = preg_match ($this->pattern, $value);
if (!$result)
{
if ($this->getNoMatchMessage() == "")
{
$this->setAlert($lng->txt("msg_input_does_not_match_regexp"));
}
else
{
$this->setAlert($this->getNoMatchMessage());
}
}
return $result;
}

+ Here is the call graph for this function:

ilRegExpInputGUI::getNoMatchMessage ( )

Get Message, if input does not match.

Returns
string Message, if input does not match

Definition at line 62 of file class.ilRegExpInputGUI.php.

Referenced by checkInput().

{
return $this->nomatchmessage;
}

+ Here is the caller graph for this function:

ilRegExpInputGUI::getPattern ( )

return pattern

Returns
string

Definition at line 82 of file class.ilRegExpInputGUI.php.

References $pattern.

{
}
ilRegExpInputGUI::setNoMatchMessage (   $a_nomatchmessage)

Set Message, if input does not match.

Parameters
string$a_nomatchmessageMessage, if input does not match

Definition at line 52 of file class.ilRegExpInputGUI.php.

{
$this->nomatchmessage = $a_nomatchmessage;
}
ilRegExpInputGUI::setPattern (   $pattern)

set pattern

Parameters
stringregular expression pattern

Definition at line 72 of file class.ilRegExpInputGUI.php.

References $pattern.

Referenced by ilObjMediaCastGUI\initAddCastItemForm().

{
$this->pattern = $pattern;
}

+ Here is the caller graph for this function:

Field Documentation

ilRegExpInputGUI::$pattern
private

Definition at line 33 of file class.ilRegExpInputGUI.php.

Referenced by getPattern(), and setPattern().


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