ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilSelectBuilderInputGUI Class Reference

Input GUI for the configuration of select input elements. More...

+ Inheritance diagram for ilSelectBuilderInputGUI:
+ Collaboration diagram for ilSelectBuilderInputGUI:

Public Member Functions

 __construct ($a_title="", $a_postvar="")
 Constructor.
 getOpenAnswerIndexes ()
 Get open answer indexes.
 setOpenAnswerIndexes ($a_indexes)
 Set open answer indexes.
 addOpenAnswerIndex ($a_idx)
 Mark an index as open answer.
 isOpenAnswerIndex ($a_idx)
 Check if an index is an open answer index.
 checkInput ()
 Check input, strip slashes etc.
 setValueByArray ($a_values)
 Set value by array.
 insert ($a_tpl)
 Insert property html.
- Public Member Functions inherited from ilTextWizardInputGUI
 setValues ($a_values)
 Set Values.
 setValue ($a_value)
 Set Value.
 getValues ()
 Get Values.
 setAllowMove ($a_allow_move)
 Set allow move.
 getAllowMove ()
 Get allow move.
 insert (&$a_tpl)
 Insert property html.
- Public Member Functions inherited from ilTextInputGUI
 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.
 setCssClass ($a_class)
 getCssClass ()
 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.
 getDataSource ()
 get datasource link for js autocomplete
 setDataSource ($href, $a_delimiter=null)
 set datasource link for js autocomplete
 setDataSourceSubmitOnSelection ($a_stat)
 getDataSourceSubmitOnSelection ()
 setDataSourceSubmitUrl ($a_url)
 getDataSourceSubmitUrl ()
 setMultiValues (array $a_values)
 Set multi values.
 getTableFilterHTML ()
 Get HTML for table filter.
 getToolbarHTML ()
 Get HTML for toolbar.
 setDisableHtmlAutoComplete ($autocomplete)
 isHtmlAutoCompleteDisabled ()
- Public Member Functions inherited from ilSubEnabledFormPropertyGUI
 addSubItem ($a_item)
 Add Subitem.
 getSubItems ()
 Get Subitems.
 getSubInputItemsRecursive ()
 returns a flat array of possibly existing subitems recursively
 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)
 setMulti ($a_multi, $a_sortable=false, $a_addremove=true)
 Set Multi.
 getMulti ()
 Get Multi.
 getMultiValues ()
 Get multi values.
 getContentOutsideFormTag ()
 Get content that has to reside outside of the parent form tag, e.g.

Protected Attributes

 $open_answer_indexes = array()
- Protected Attributes inherited from ilTextWizardInputGUI
 $values = array()
 $allowMove = false
- Protected Attributes inherited from ilTextInputGUI
 $value
 $maxlength = 200
 $size = 40
 $validationRegexp
 $validationFailureMessage = ''
 $suffix
 $style_css
 $css_class
 $ajax_datasource
 $ajax_datasource_delimiter
 $ajax_datasource_commit = FALSE
 $ajax_datasource_commit_url
 $submit_form_on_enter = false
 $autocomplete_disabled = false
- Protected Attributes inherited from ilSubEnabledFormPropertyGUI
 $sub_items = array()
- Protected Attributes inherited from ilFormPropertyGUI
 $type
 $title
 $postvar
 $info
 $alert
 $required = false
 $parentgui
 $parentform
 $hidden_title = ""
 $multi = false
 $multi_sortable = false
 $multi_addremove = true
 $multi_values

Additional Inherited Members

- Protected Member Functions inherited from ilFormPropertyGUI
 setType ($a_type)
 Set Type.
 getMultiIconsHTML ()
 Get HTML for multiple value icons.

Detailed Description

Input GUI for the configuration of select input elements.

E.g course custum field, udf field, ...

Author
Stefan Meyer smeye.nosp@m.r.il.nosp@m.ias@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

Definition at line 12 of file class.ilSelectBuilderInputGUI.php.

Constructor & Destructor Documentation

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

Constructor.

Parameters
string$a_titleTitle
string$a_postvarPost Variable

Reimplemented from ilTextWizardInputGUI.

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

{
parent::__construct($a_title, $a_postvar);
}

Member Function Documentation

ilSelectBuilderInputGUI::addOpenAnswerIndex (   $a_idx)

Mark an index as open answer.

Definition at line 44 of file class.ilSelectBuilderInputGUI.php.

Referenced by checkInput(), and setValueByArray().

{
$this->open_answer_indexes[] = $a_idx;
}

+ Here is the caller graph for this function:

ilSelectBuilderInputGUI::checkInput ( )

Check input, strip slashes etc.

set alert, if input is not ok.

Returns
boolean Input ok, true/false

Reimplemented from ilTextWizardInputGUI.

Definition at line 64 of file class.ilSelectBuilderInputGUI.php.

References $_POST, $lng, ilTextInputGUI\$value, addOpenAnswerIndex(), ilSubEnabledFormPropertyGUI\checkSubItemsInput(), ilFormPropertyGUI\getPostVar(), ilFormPropertyGUI\getRequired(), ilTextInputGUI\getValidationRegexp(), ilFormPropertyGUI\setAlert(), setOpenAnswerIndexes(), and ilUtil\stripSlashes().

{
global $lng;
$foundvalues = $_POST[$this->getPostVar()];
$this->setOpenAnswerIndexes(array());
if (is_array($foundvalues))
{
foreach ($foundvalues as $idx => $value)
{
if ($this->getRequired() && trim($value) == "")
{
$this->setAlert($lng->txt("msg_input_is_required"));
return false;
}
else if (strlen($this->getValidationRegexp()))
{
if (!preg_match($this->getValidationRegexp(), $value))
{
$this->setAlert($lng->txt("msg_wrong_format"));
return FALSE;
}
}
}
}
else
{
$this->setAlert($lng->txt("msg_input_is_required"));
return FALSE;
}
foreach((array) $_POST[$this->getPostVar().'_open'] as $oindex => $ovalue)
{
$this->addOpenAnswerIndex($oindex);
}
return $this->checkSubItemsInput();
}

+ Here is the call graph for this function:

ilSelectBuilderInputGUI::getOpenAnswerIndexes ( )

Get open answer indexes.

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

References $open_answer_indexes.

ilSelectBuilderInputGUI::insert (   $a_tpl)

Insert property html.

Returns
int Size

Definition at line 124 of file class.ilSelectBuilderInputGUI.php.

References $lng, $tpl, ilTextInputGUI\$value, ilGlyphGUI\ADD, ilGlyphGUI\DOWN, ilGlyphGUI\get(), ilTextWizardInputGUI\getAllowMove(), ilFormPropertyGUI\getDisabled(), ilFormPropertyGUI\getFieldId(), ilTextInputGUI\getMaxLength(), ilFormPropertyGUI\getPostVar(), ilTextInputGUI\getSize(), isOpenAnswerIndex(), ilUtil\prepareFormOutput(), ilGlyphGUI\REMOVE, and ilGlyphGUI\UP.

{
global $lng;
$tpl = new ilTemplate("tpl.prop_selectbuilder.html", true, true, "Services/Form");
$i = 0;
foreach ($this->values as $value)
{
if(!is_string($value))
{
continue;
}
if (strlen((string) $value))
{
$tpl->setCurrentBlock("prop_text_propval");
$tpl->setVariable("PROPERTY_VALUE", ilUtil::prepareFormOutput((string) $value));
$tpl->parseCurrentBlock();
}
if ($this->getAllowMove())
{
$tpl->setCurrentBlock("move");
$tpl->setVariable("CMD_UP", "cmd[up" . $this->getFieldId() . "][$i]");
$tpl->setVariable("CMD_DOWN", "cmd[down" . $this->getFieldId() . "][$i]");
$tpl->setVariable("ID", $this->getFieldId() . "[$i]");
include_once("./Services/UIComponent/Glyph/classes/class.ilGlyphGUI.php");
$tpl->setVariable("UP_BUTTON", ilGlyphGUI::get(ilGlyphGUI::UP));
$tpl->setVariable("DOWN_BUTTON", ilGlyphGUI::get(ilGlyphGUI::DOWN));
$tpl->parseCurrentBlock();
}
$tpl->setCurrentBlock("row");
$tpl->setVariable("POST_VAR", $this->getPostVar() . "[$i]");
#$tpl->setVariable('POST_VAR_OPEN',$this->getPostVar().'[open]'.'['.$i.']');
$tpl->setVariable('POST_VAR_OPEN',$this->getPostVar().'_open'.'['.$i.']');
$tpl->setVariable('POST_VAR_OPEN_ID', $this->getPostVar().'_open['.$i.']');
$tpl->setVariable('TXT_OPEN', $lng->txt("form_open_answer"));
if($this->isOpenAnswerIndex($i))
{
$tpl->setVariable('PROP_OPEN_CHECKED','checked="checked"');
}
if($this->getDisabled())
{
$tpl->setVariable('PROP_OPEN_DISABLED','disabled="disabled"');
}
$tpl->setVariable("ID", $this->getFieldId() . "[$i]");
$tpl->setVariable("CMD_ADD", "cmd[add" . $this->getFieldId() . "][$i]");
$tpl->setVariable("CMD_REMOVE", "cmd[remove" . $this->getFieldId() . "][$i]");
$tpl->setVariable("SIZE", $this->getSize());
$tpl->setVariable("MAXLENGTH", $this->getMaxLength());
if ($this->getDisabled())
{
$tpl->setVariable("DISABLED",
" disabled=\"disabled\"");
}
include_once("./Services/UIComponent/Glyph/classes/class.ilGlyphGUI.php");
$tpl->setVariable("ADD_BUTTON", ilGlyphGUI::get(ilGlyphGUI::ADD));
$tpl->setVariable("REMOVE_BUTTON", ilGlyphGUI::get(ilGlyphGUI::REMOVE));
$tpl->parseCurrentBlock();
$i++;
}
$tpl->setVariable("ELEMENT_ID", $this->getFieldId());
$a_tpl->setCurrentBlock("prop_generic");
$a_tpl->setVariable("PROP_GENERIC", $tpl->get());
$a_tpl->parseCurrentBlock();
global $tpl;
$tpl->addJavascript("./Services/Form/js/ServiceFormWizardInput.js");
$tpl->addJavascript("./Services/Form/templates/default/textwizard.js");
}

+ Here is the call graph for this function:

ilSelectBuilderInputGUI::isOpenAnswerIndex (   $a_idx)

Check if an index is an open answer index.

Parameters
type$a_idx
Returns
type

Definition at line 54 of file class.ilSelectBuilderInputGUI.php.

Referenced by insert().

{
return in_array($a_idx,(array) $this->open_answer_indexes);
}

+ Here is the caller graph for this function:

ilSelectBuilderInputGUI::setOpenAnswerIndexes (   $a_indexes)

Set open answer indexes.

Definition at line 36 of file class.ilSelectBuilderInputGUI.php.

Referenced by checkInput().

{
$this->open_answer_indexes = $a_indexes;
}

+ Here is the caller graph for this function:

ilSelectBuilderInputGUI::setValueByArray (   $a_values)

Set value by array.

Parameters
array$a_valuesvalue array

Reimplemented from ilTextInputGUI.

Definition at line 109 of file class.ilSelectBuilderInputGUI.php.

References $_POST, addOpenAnswerIndex(), and ilFormPropertyGUI\getPostVar().

{
foreach((array) $_POST[$this->getPostVar().'_open'] as $oindex => $ovalue)
{
$this->addOpenAnswerIndex($oindex);
}
}

+ Here is the call graph for this function:

Field Documentation

ilSelectBuilderInputGUI::$open_answer_indexes = array()
protected

Definition at line 15 of file class.ilSelectBuilderInputGUI.php.

Referenced by getOpenAnswerIndexes().


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