ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
|
This class represents a non editable value in a property form. More...
Public Member Functions | |
__construct ($a_title="", $a_id="", $a_disable_escaping=false) | |
Constructor. More... | |
checkInput () | |
setType ($a_type) | |
Set Type. More... | |
getType () | |
Get Type. More... | |
setTitle ($a_title) | |
Set Title. More... | |
getTitle () | |
Get Title. More... | |
setInfo ($a_info) | |
Set Information Text. More... | |
getInfo () | |
Get Information Text. More... | |
setValue ($a_value) | |
Set Value. More... | |
getValue () | |
Get Value. More... | |
render () | |
render More... | |
insert ($a_tpl) | |
Insert property html. More... | |
setValueByArray ($a_values) | |
Set value by array. More... | |
getTableFilterHTML () | |
Get HTML for table filter. More... | |
Public Member Functions inherited from ilSubEnabledFormPropertyGUI | |
addSubItem ($a_item) | |
Add Subitem. More... | |
getSubItems () | |
Get Subitems. More... | |
getSubInputItemsRecursive () | |
returns a flat array of possibly existing subitems recursively More... | |
checkSubItemsInput () | |
Check SubItems. More... | |
getSubForm () | |
Get sub form html. More... | |
getItemByPostVar ($a_post_var) | |
Get item by post var. More... | |
Public Member Functions inherited from ilFormPropertyGUI | |
__construct ($a_title="", $a_postvar="") | |
Constructor. More... | |
executeCommand () | |
Execute command. More... | |
getType () | |
Get Type. More... | |
setTitle ($a_title) | |
Set Title. More... | |
getTitle () | |
Get Title. More... | |
setPostVar ($a_postvar) | |
Set Post Variable. More... | |
getPostVar () | |
Get Post Variable. More... | |
getFieldId () | |
Get Post Variable. More... | |
setInfo ($a_info) | |
Set Information Text. More... | |
getInfo () | |
Get Information Text. More... | |
setAlert ($a_alert) | |
Set Alert Text. More... | |
getAlert () | |
Get Alert Text. More... | |
setRequired ($a_required) | |
Set Required. More... | |
getRequired () | |
Get Required. More... | |
setDisabled ($a_disabled) | |
Set Disabled. More... | |
getDisabled () | |
Get Disabled. More... | |
checkInput () | |
Check input, strip slashes etc. More... | |
setParentForm ($a_parentform) | |
Set Parent Form. More... | |
getParentForm () | |
Get Parent Form. More... | |
setParent ($a_val) | |
Set Parent GUI object. More... | |
getParent () | |
Get Parent GUI object. More... | |
getSubForm () | |
Get sub form html. More... | |
hideSubForm () | |
Sub form hidden on init? More... | |
setHiddenTitle ($a_val) | |
Set hidden title (for screenreaders) More... | |
getHiddenTitle () | |
Get hidden title. More... | |
getItemByPostVar ($a_post_var) | |
Get item by post var. More... | |
serializeData () | |
serialize data More... | |
unserializeData ($a_data) | |
unserialize data More... | |
writeToSession () | |
Write to session. More... | |
clearFromSession () | |
Clear session value. More... | |
readFromSession () | |
Read from session. More... | |
getHiddenTag ($a_post_var, $a_value) | |
Get hidden tag (used for disabled properties) More... | |
setMulti ($a_multi, $a_sortable=false, $a_addremove=true) | |
Set Multi. More... | |
getMulti () | |
Get Multi. More... | |
setMultiValues (array $a_values) | |
Set multi values. More... | |
getMultiValues () | |
Get multi values. More... | |
getContentOutsideFormTag () | |
Get content that has to reside outside of the parent form tag, e.g. More... | |
stripSlashesAddSpaceFallback ($a_str) | |
Strip slashes with add space fallback, see https://www.ilias.de/mantis/view.php?id=19727. More... | |
Protected Attributes | |
$type | |
$value | |
$title | |
$info | |
$section_icon | |
$disable_escaping | |
Protected Attributes inherited from ilSubEnabledFormPropertyGUI | |
$sub_items = array() | |
Protected Attributes inherited from ilFormPropertyGUI | |
$ctrl | |
$lng | |
$type | |
$title | |
$postvar | |
$info | |
$alert | |
$required = false | |
$parentgui | |
$parentform | |
$hidden_title = "" | |
$multi = false | |
$multi_sortable = false | |
$multi_addremove = true | |
$multi_values | |
Additional Inherited Members | |
Static Public Member Functions inherited from ilFormPropertyGUI | |
static | removeProhibitedCharacters ($a_text) |
Remove prohibited characters see #19159. More... | |
Protected Member Functions inherited from ilFormPropertyGUI | |
setType ($a_type) | |
Set Type. More... | |
getMultiIconsHTML () | |
Get HTML for multiple value icons. More... | |
This class represents a non editable value in a property form.
Definition at line 13 of file class.ilNonEditableValueGUI.php.
ilNonEditableValueGUI::__construct | ( | $a_title = "" , |
|
$a_id = "" , |
|||
$a_disable_escaping = false |
|||
) |
Constructor.
Definition at line 27 of file class.ilNonEditableValueGUI.php.
References setTitle(), and setType().
ilNonEditableValueGUI::checkInput | ( | ) |
Definition at line 35 of file class.ilNonEditableValueGUI.php.
References $_POST, ilSubEnabledFormPropertyGUI\checkSubItemsInput(), ilFormPropertyGUI\getPostVar(), and ilUtil\stripSlashes().
ilNonEditableValueGUI::getInfo | ( | ) |
Get Information Text.
Definition at line 98 of file class.ilNonEditableValueGUI.php.
References $info.
ilNonEditableValueGUI::getTableFilterHTML | ( | ) |
Get HTML for table filter.
Implements ilTableFilterItem.
Definition at line 190 of file class.ilNonEditableValueGUI.php.
References $html, and render().
ilNonEditableValueGUI::getTitle | ( | ) |
Get Title.
Definition at line 78 of file class.ilNonEditableValueGUI.php.
References $title.
ilNonEditableValueGUI::getType | ( | ) |
Get Type.
Definition at line 58 of file class.ilNonEditableValueGUI.php.
References $type.
ilNonEditableValueGUI::getValue | ( | ) |
Get Value.
Definition at line 122 of file class.ilNonEditableValueGUI.php.
References $value.
Referenced by render().
ilNonEditableValueGUI::insert | ( | $a_tpl | ) |
Insert property html.
Definition at line 165 of file class.ilNonEditableValueGUI.php.
References render().
ilNonEditableValueGUI::render | ( | ) |
render
Definition at line 130 of file class.ilNonEditableValueGUI.php.
References ilFormPropertyGUI\$postvar, $tpl, $value, ilFormPropertyGUI\getDisabled(), ilFormPropertyGUI\getFieldId(), ilFormPropertyGUI\getMulti(), ilFormPropertyGUI\getMultiIconsHTML(), ilFormPropertyGUI\getPostVar(), getValue(), and ilUtil\prepareFormOutput().
Referenced by getTableFilterHTML(), and insert().
ilNonEditableValueGUI::setInfo | ( | $a_info | ) |
Set Information Text.
string | $a_info | Information Text |
Definition at line 88 of file class.ilNonEditableValueGUI.php.
Referenced by ilSystemStyleSettingsGUI\editSystemStyleForm(), ilSetupGUI\initBasicSettingsForm(), ilObjLinkResourceGUI\initFormLink(), ilLicenseGUI\initLicenseForm(), and ilObjSCORM2004LearningModuleGUI\initPropertiesEditableForm().
ilNonEditableValueGUI::setTitle | ( | $a_title | ) |
Set Title.
string | $a_title | Title |
Definition at line 68 of file class.ilNonEditableValueGUI.php.
Referenced by __construct().
ilNonEditableValueGUI::setType | ( | $a_type | ) |
Set Type.
string | $a_type | Type |
Definition at line 48 of file class.ilNonEditableValueGUI.php.
References $a_type.
Referenced by __construct().
ilNonEditableValueGUI::setValue | ( | $a_value | ) |
Set Value.
string | $a_value | Value |
Definition at line 108 of file class.ilNonEditableValueGUI.php.
References ilFormPropertyGUI\getMulti(), and ilFormPropertyGUI\setMultiValues().
Referenced by ilMemberAgreementGUI\addCustomFields(), ilUserProfile\addStandardFieldsToForm(), ilTestRandomQuestionSetPoolDefinitionFormGUI\build(), ilAssQuestionSkillAssignmentPropertyFormGUI\build(), ilObjTestDynamicQuestionSetConfigGUI\buildForm(), ilTestScoringGUI\buildManScoringParticipantForm(), ilTestEvaluationGUI\detailedEvaluation(), ilECSMappingSettingsGUI\dInitFormTreeSettings(), ilBasicSkillGUI\editLevelTrigger(), ilCourseRegistrationGUI\fillRegistrationPeriod(), ilGroupRegistrationGUI\fillRegistrationPeriod(), ilGroupRegistrationGUI\fillRegistrationType(), ilObjUserGUI\getValues(), ilSetupGUI\initClientDbForm(), ilSetupGUI\initClientIniForm(), ilSetupGUI\initClientOverviewForm(), ilContSkillAdminGUI\initCompetenceAssignmentForm(), ilObjPortfolioGUI\initCreatePortfolioFromTemplateForm(), ilSetupGUI\initDbSlaveForm(), ilLearningProgressBaseGUI\initEditUserForm(), ilCalendarAppointmentGUI\initForm(), ilPageLayoutGUI\initForm(), ilSkillTemplateReferenceGUI\initForm(), ilCalendarCategoryGUI\initFormCategory(), ilConditionHandlerGUI\initFormCondition(), ilObjLoggingSettingsGUI\initFormErrorSettings(), ilObjUserFolderGUI\initFormGeneralSettings(), ilAuthShibbolethSettingsGUI\initFormRoleAssignment(), ilLDAPSettingsGUI\initFormRoleAssignments(), ilObjRoleTemplateGUI\initFormRoleTemplate(), ilObjBlogAdministrationGUI\initFormSettings(), ilObjPortfolioAdministrationGUI\initFormSettings(), ilObjCalendarSettingsGUI\initFormSettings(), ilIndividualAssessmentMemberGUI\initGradingForm(), ilExPeerReviewGUI\initPeerReviewItemForm(), ilObjSCORM2004LearningModuleGUI\initPropertiesEditableForm(), ilObjSCORM2004LearningModuleGUI\initPropertiesForm(), ilObjSurveyGUI\initPropertiesForm(), ilObjSystemFolderGUI\initServerInfoForm(), ilObjFileBasedLMGUI\initSettingsForm(), ilECSSettingsGUI\initSettingsForm(), ilSetupGUI\initSettingsTypeForm(), ilObjContentObjectGUI\initStylePropertiesForm(), ilObjPortfolioBaseGUI\initStylePropertiesForm(), ilObjSCORM2004LearningModuleGUI\initStylePropertiesForm(), ilObjGlossaryGUI\initStylePropertiesForm(), ilObjWikiGUI\initStylePropertiesForm(), ilContainerGUI\initStylePropertiesForm(), ilObjBlogGUI\initStylePropertiesForm(), ilObjForumGUI\initTopicCreateForm(), ilObjFileAccessSettingsGUI\initUploadSettingsForm(), ilAssQuestionSkillAssignmentPropertyFormGUI\populateLimitedProperties(), ilObjSCORMLearningModuleGUI\properties(), setValueByArray(), ilRegistrationGUI\showCustomFields(), ilAssQuestionHintRequestGUI\showHintCmd(), ilAssQuestionHintsGUI\showHintCmd(), and ilObjComponentSettingsGUI\showPluginSlotInfo().
ilNonEditableValueGUI::setValueByArray | ( | $a_values | ) |
Set value by array.
array | $a_values | value array |
Definition at line 177 of file class.ilNonEditableValueGUI.php.
References ilFormPropertyGUI\getPostVar(), ilSubEnabledFormPropertyGUI\getSubItems(), and setValue().
|
protected |
Definition at line 20 of file class.ilNonEditableValueGUI.php.
|
protected |
Definition at line 18 of file class.ilNonEditableValueGUI.php.
Referenced by getInfo().
|
protected |
Definition at line 19 of file class.ilNonEditableValueGUI.php.
|
protected |
Definition at line 17 of file class.ilNonEditableValueGUI.php.
Referenced by getTitle().
|
protected |
Definition at line 15 of file class.ilNonEditableValueGUI.php.
Referenced by getType().
|
protected |
Definition at line 16 of file class.ilNonEditableValueGUI.php.
Referenced by getValue(), and render().