Moodle/Programming/PARAM_
をテンプレートにして作成
[
トップ
] [
タイトル一覧
|
ページ一覧
|
新規
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
** PARAM_* [#d19b6834]
*** Moodle Data Cleaning Parameters [#z68f6bc6]
- PARAM_RAW: specifies a parameter that is not cleaned or...
- PARAM_CLEAN: Obsolete, please try to use a more specifi...
- PARAM_INT: Integers only, use when expecting only numbers
- PARAM_INTEGER: Alias for PARAM_INT
- PARAM_ALPHA: Contains only english letters.
- PARAM_ACTION: Alias for PARAM_ALPHA, use for various ac...
- PARAM_FORMAT: Alias for PARAM_ALPHA, use for names of p...
- PARAM_NOTAGS: All HTML tags are stripped from the text....
- PARAM_MULTILANG: Alias of PARAM_TEXT.
- PARAM_TEXT: General plain text compatible with multilan...
- PARAM_FILE: Safe file name, all dangerous chars are str...
- PARAM_PATH: Safe relative path name, all dangerous char...
-- note: The leading slash is not removed, window drive l...
- PARAM_HOST: expected fully qualified domain name (FQDN)...
- PARAM_URL: expected properly formatted URL.
- PARAM_LOCALURL: expected properly formatted URL as well...
- PARAM_CLEANFILE: safe file name, all dangerous and regi...
- PARAM_ALPHANUM: expected numbers and letters only.
- PARAM_BOOL: converts input into 0 or 1, use for switche...
- PARAM_CLEANHTML: cleans submitted HTML code and removes...
-- note: do not forget to addslashes() before storing int...
- PARAM_ALPHAEXT: the same contents as PARAM_ALPHA plus t...
- PARAM_SAFEDIR: safe directory name, suitable for includ...
- PARAM_SEQUENCE: expects a sequence of numbers like 8 to...
#br
終了行:
** PARAM_* [#d19b6834]
*** Moodle Data Cleaning Parameters [#z68f6bc6]
- PARAM_RAW: specifies a parameter that is not cleaned or...
- PARAM_CLEAN: Obsolete, please try to use a more specifi...
- PARAM_INT: Integers only, use when expecting only numbers
- PARAM_INTEGER: Alias for PARAM_INT
- PARAM_ALPHA: Contains only english letters.
- PARAM_ACTION: Alias for PARAM_ALPHA, use for various ac...
- PARAM_FORMAT: Alias for PARAM_ALPHA, use for names of p...
- PARAM_NOTAGS: All HTML tags are stripped from the text....
- PARAM_MULTILANG: Alias of PARAM_TEXT.
- PARAM_TEXT: General plain text compatible with multilan...
- PARAM_FILE: Safe file name, all dangerous chars are str...
- PARAM_PATH: Safe relative path name, all dangerous char...
-- note: The leading slash is not removed, window drive l...
- PARAM_HOST: expected fully qualified domain name (FQDN)...
- PARAM_URL: expected properly formatted URL.
- PARAM_LOCALURL: expected properly formatted URL as well...
- PARAM_CLEANFILE: safe file name, all dangerous and regi...
- PARAM_ALPHANUM: expected numbers and letters only.
- PARAM_BOOL: converts input into 0 or 1, use for switche...
- PARAM_CLEANHTML: cleans submitted HTML code and removes...
-- note: do not forget to addslashes() before storing int...
- PARAM_ALPHAEXT: the same contents as PARAM_ALPHA plus t...
- PARAM_SAFEDIR: safe directory name, suitable for includ...
- PARAM_SEQUENCE: expects a sequence of numbers like 8 to...
#br
ページ名: