ILIAS
release_5-2 Revision v5.2.25-18-g3f80b828510
|
This class represents a file property in a property form. More...
Public Member Functions | |
__construct ($a_title="", $a_postvar="") | |
Constructor. More... | |
setValueByArray ($a_values) | |
Set value by array. More... | |
setValue ($a_value) | |
Set Value. More... | |
getValue () | |
Get Value. More... | |
setSize ($a_size) | |
Set Size. More... | |
getSize () | |
Get Size. More... | |
setFilename ($a_val) | |
Set filename value (if filename selection is enabled) More... | |
getFilename () | |
Get Value. More... | |
setSuffixes ($a_suffixes) | |
Set Accepted Suffixes. More... | |
getSuffixes () | |
Get Accepted Suffixes. More... | |
setForbiddenSuffixes ($a_suffixes) | |
Set forbidden Suffixes. More... | |
getForbiddenSuffixes () | |
Get Accepted Suffixes. More... | |
setPending ($a_val) | |
Set pending filename value. More... | |
getPending () | |
Get pending filename. More... | |
enableFileNameSelection ($a_post_var) | |
If enabled, users get the possibility to enter a filename for the uploaded file. More... | |
isFileNameSelectionEnabled () | |
Check if filename selection is enabled. More... | |
getFileNamePostVar () | |
Get file name post var. More... | |
setALlowDeletion ($a_val) | |
Set allow deletion. More... | |
getALlowDeletion () | |
Get allow deletion. More... | |
checkInput () | |
Check input, strip slashes etc. More... | |
render ($a_mode="") | |
Render html. More... | |
insert ($a_tpl) | |
Insert property html. More... | |
getDeletionFlag () | |
Get deletion flag. More... | |
getToolbarHTML () | |
Get HTML for toolbar. 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... | |
Static Public Member Functions | |
static | setPersonalWorkspaceQuotaCheck ($a_value) |
Static Public Member Functions inherited from ilFormPropertyGUI | |
static | removeProhibitedCharacters ($a_text) |
Remove prohibited characters see #19159. More... | |
Protected Member Functions | |
outputSuffixes ($a_tpl, $a_block="allowed_suffixes") | |
getMaxFileSizeString () | |
Protected Member Functions inherited from ilFormPropertyGUI | |
setType ($a_type) | |
Set Type. More... | |
getMultiIconsHTML () | |
Get HTML for multiple value icons. More... | |
Protected Attributes | |
$size = 40 | |
$pending | |
$allow_deletion | |
$forbidden_suffixes = array() | |
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 | |
Static Protected Attributes | |
static | $check_wsp_quota |
Private Attributes | |
$filename | |
$filename_post | |
This class represents a file property in a property form.
Definition at line 14 of file class.ilFileInputGUI.php.
ilFileInputGUI::__construct | ( | $a_title = "" , |
|
$a_postvar = "" |
|||
) |
Constructor.
string | $a_title | Title |
string | $a_postvar | Post Variable |
Definition at line 35 of file class.ilFileInputGUI.php.
References $lng, ilFormPropertyGUI\setHiddenTitle(), and ilFormPropertyGUI\setType().
ilFileInputGUI::checkInput | ( | ) |
Check input, strip slashes etc.
set alert, if input is not ok.
Definition at line 241 of file class.ilFileInputGUI.php.
References $_POST, $error, $filename, $lng, ilFormPropertyGUI\getDisabled(), ilFormPropertyGUI\getPostVar(), ilFormPropertyGUI\getRequired(), getSuffixes(), getValue(), ilStr\normalizeUtf8String(), ilFormPropertyGUI\setAlert(), ilUtil\stripSlashes(), and ilUtil\virusHandling().
ilFileInputGUI::enableFileNameSelection | ( | $a_post_var | ) |
If enabled, users get the possibility to enter a filename for the uploaded file.
public
string | post variable |
Definition at line 187 of file class.ilFileInputGUI.php.
ilFileInputGUI::getALlowDeletion | ( | ) |
Get allow deletion.
Definition at line 231 of file class.ilFileInputGUI.php.
References $allow_deletion.
Referenced by render().
ilFileInputGUI::getDeletionFlag | ( | ) |
Get deletion flag.
Definition at line 530 of file class.ilFileInputGUI.php.
References $_POST, and ilFormPropertyGUI\getPostVar().
ilFileInputGUI::getFilename | ( | ) |
Get Value.
Definition at line 113 of file class.ilFileInputGUI.php.
References $filename.
Referenced by render().
ilFileInputGUI::getFileNamePostVar | ( | ) |
Get file name post var.
public
string | file name post var |
Definition at line 211 of file class.ilFileInputGUI.php.
References $filename_post.
Referenced by render(), and setValueByArray().
ilFileInputGUI::getForbiddenSuffixes | ( | ) |
Get Accepted Suffixes.
Definition at line 155 of file class.ilFileInputGUI.php.
References $forbidden_suffixes.
|
protected |
Definition at line 500 of file class.ilFileInputGUI.php.
References array.
Referenced by ilImageFileInputGUI\insert(), ilFileWizardInputGUI\insert(), ilImagemapFileInputGUI\insert(), ilFlashFileInputGUI\insert(), ilDragDropFileInputGUI\render(), and render().
ilFileInputGUI::getPending | ( | ) |
Get pending filename.
Definition at line 175 of file class.ilFileInputGUI.php.
References $pending.
Referenced by ilImageFileInputGUI\insert(), and render().
ilFileInputGUI::getSize | ( | ) |
Get Size.
Definition at line 93 of file class.ilFileInputGUI.php.
References $size.
Referenced by render().
ilFileInputGUI::getSuffixes | ( | ) |
Get Accepted Suffixes.
Definition at line 135 of file class.ilFileInputGUI.php.
Referenced by ilFlashFileInputGUI\checkInput(), ilFileWizardInputGUI\checkInput(), ilImagemapFileInputGUI\checkInput(), checkInput(), outputSuffixes(), and ilDragDropFileInputGUI\render().
ilFileInputGUI::getToolbarHTML | ( | ) |
Get HTML for toolbar.
Implements ilToolbarItem.
Definition at line 542 of file class.ilFileInputGUI.php.
References $html, and render().
ilFileInputGUI::getValue | ( | ) |
Get Value.
Definition at line 73 of file class.ilFileInputGUI.php.
Referenced by ilImagemapFileInputGUI\checkInput(), checkInput(), ilImageFileInputGUI\insert(), ilImagemapFileInputGUI\insert(), and render().
ilFileInputGUI::insert | ( | $a_tpl | ) |
Insert property html.
Definition at line 471 of file class.ilFileInputGUI.php.
References $html, and render().
ilFileInputGUI::isFileNameSelectionEnabled | ( | ) |
Check if filename selection is enabled.
public
Definition at line 199 of file class.ilFileInputGUI.php.
Referenced by render().
|
protected |
Definition at line 481 of file class.ilFileInputGUI.php.
References $lng, and getSuffixes().
Referenced by ilImageFileInputGUI\insert(), ilFileWizardInputGUI\insert(), ilImagemapFileInputGUI\insert(), ilFlashFileInputGUI\insert(), ilDragDropFileInputGUI\render(), and render().
ilFileInputGUI::render | ( | $a_mode = "" | ) |
Render html.
Definition at line 359 of file class.ilFileInputGUI.php.
References $lng, $pending, getALlowDeletion(), ilFormPropertyGUI\getDisabled(), ilFormPropertyGUI\getFieldId(), getFilename(), getFileNamePostVar(), getMaxFileSizeString(), getPending(), ilFormPropertyGUI\getPostVar(), getSize(), ilDiskQuotaHandler\getStatusLegend(), getValue(), isFileNameSelectionEnabled(), ilDiskQuotaHandler\isUploadPossible(), and outputSuffixes().
Referenced by getToolbarHTML(), and insert().
ilFileInputGUI::setALlowDeletion | ( | $a_val | ) |
Set allow deletion.
boolean | $a_val | allow deletion |
Definition at line 221 of file class.ilFileInputGUI.php.
Referenced by ilBookingObjectGUI\initForm(), and ilCalendarCategoryGUI\initImportForm().
ilFileInputGUI::setFilename | ( | $a_val | ) |
Set filename value (if filename selection is enabled)
string | $a_val |
Definition at line 103 of file class.ilFileInputGUI.php.
Referenced by setValueByArray().
ilFileInputGUI::setForbiddenSuffixes | ( | $a_suffixes | ) |
Set forbidden Suffixes.
array | $a_suffixes | forbidden Suffixes |
Definition at line 145 of file class.ilFileInputGUI.php.
ilFileInputGUI::setPending | ( | $a_val | ) |
Set pending filename value.
string | $a_val |
Definition at line 165 of file class.ilFileInputGUI.php.
|
static |
Definition at line 548 of file class.ilFileInputGUI.php.
References ilDiskQuotaActivationChecker\_isPersonalWorkspaceActive().
Referenced by ilObjFileGUI\executeCommand(), ilObjPortfolioGUI\executeCommand(), ilObjBlogGUI\executeCommand(), ilObjBlogGUI\initEditCustomForm(), and ilObjPortfolioBaseGUI\initEditCustomForm().
ilFileInputGUI::setSize | ( | $a_size | ) |
Set Size.
int | $a_size | Size |
Definition at line 83 of file class.ilFileInputGUI.php.
References size.
Referenced by ilFileSystemGUI\listFiles().
ilFileInputGUI::setSuffixes | ( | $a_suffixes | ) |
Set Accepted Suffixes.
array | $a_suffixes | Accepted Suffixes |
Definition at line 125 of file class.ilFileInputGUI.php.
Referenced by ilImageFileInputGUI\__construct(), ilFlashFileInputGUI\__construct(), ilSystemStyleIconsGUI\addSelectIconToolbar(), ilObjHelpSettingsGUI\editSettings(), ilUploadDefinitionForm\getForm(), ilObjSurveyQuestionPoolGUI\importQuestionsObject(), ilObjMediaCastGUI\initAddCastItemForm(), ilPCInteractiveImageGUI\initAddOverlaysForm(), ilBadgeManagementGUI\initBadgeForm(), ilObjBibliographicGUI\initCreationForms(), ilObjBibliographicGUI\initEditForm(), ilOrgUnitTypeCustomIconsFormGUI\initForm(), ilStudyProgrammeTypeCustomIconsFormGUI\initForm(), ilObjectPluginGUI\initImportForm(), ilExternalFeedBlockGUI\initImportForm(), ilPermissionGUI\initImportForm(), ilObjContentObjectGUI\initImportForm(), ilObjectGUI\initImportForm(), ilObjQuestionPoolGUI\initImportForm(), ilObjSurveyGUI\initImportForm(), ilObjTestGUI\initImportForm(), ilSkillRootGUI\initInputForm(), ilSkillProfileGUI\initInputForm(), ilExerciseManagementGUI\initMultiFeedbackForm(), ilPageLayoutAdministrationGUI\initPageLayoutImportForm(), ilChatroomAdminSmileyGUI\initSmiliesEditForm(), ilChatroomAdminSmileyGUI\initSmiliesForm(), ilLMImportGUI\initTranslationImportForm(), ilMediaPoolImportGUI\initTranslationImportForm(), ilObjUserFolderGUI\initUserImportForm(), ilExSubmissionFileGUI\initZipUploadForm(), ilObjMediaObjectGUI\listSubtitleFilesObject(), assJavaAppletGUI\populateQuestionSpecificFormPart(), ilLMMultiSrtUploadGUI\uploadMultipleSubtitleFileForm(), and ilObjMediaObjectGUI\uploadMultipleSubtitleFileFormObject().
ilFileInputGUI::setValue | ( | $a_value | ) |
Set Value.
(used for displaying file title of existing file below input field)
string | $a_value | Value |
Definition at line 63 of file class.ilFileInputGUI.php.
Referenced by ilObjUserFolderGUI\initNewAccountMailForm(), and setValueByArray().
ilFileInputGUI::setValueByArray | ( | $a_values | ) |
Set value by array.
array | $a_values | value array |
Definition at line 49 of file class.ilFileInputGUI.php.
References getFileNamePostVar(), ilFormPropertyGUI\getPostVar(), setFilename(), and setValue().
|
protected |
Definition at line 20 of file class.ilFileInputGUI.php.
Referenced by ilImageFileInputGUI\getALlowDeletion(), and getALlowDeletion().
|
staticprotected |
Definition at line 22 of file class.ilFileInputGUI.php.
|
private |
Definition at line 16 of file class.ilFileInputGUI.php.
Referenced by ilFlashFileInputGUI\checkInput(), ilFileWizardInputGUI\checkInput(), ilImagemapFileInputGUI\checkInput(), checkInput(), and getFilename().
|
private |
Definition at line 17 of file class.ilFileInputGUI.php.
Referenced by getFileNamePostVar().
|
protected |
Definition at line 27 of file class.ilFileInputGUI.php.
Referenced by getForbiddenSuffixes().
|
protected |
Definition at line 19 of file class.ilFileInputGUI.php.
Referenced by getPending(), ilImageFileInputGUI\insert(), and render().
|
protected |
Definition at line 18 of file class.ilFileInputGUI.php.
Referenced by getSize().