43 public static function getImageTagByType(
string $a_type,
string $a_path,
bool $a_big =
false): string
47 $lng = $DIC->language();
55 return "<img src=\"" .
$filename .
"\" alt=\"" .
$lng->txt(
"obj_" . $a_type) .
"\" title=\"" .
$lng->txt(
57 ) .
"\" border=\"0\" vspace=\"0\"/>";
68 string $module_path =
"",
69 string $mode =
"output",
73 return "./images/" . $image_name;
77 $styleDefinition = $DIC[
"styleDefinition"] ??
null;
79 if ($module_path !=
"") {
80 throw new \LogicException(
81 "\$module_path only supports '' as value." 87 if ($use_custom_skin) {
100 return "./assets/images/" . $image_name;
111 if (substr($relative_path, 0, 2) ==
'./') {
112 $relative_path = (substr($relative_path, 1));
114 if (substr($relative_path, 0, 1) !=
'/') {
115 $relative_path =
'/' . $relative_path;
117 $htmlpath = ILIAS_HTTP_PATH . $relative_path;
132 string $mode =
"output",
133 string $a_css_name =
"" 135 $force_reload = ($mode !==
"filesystem");
136 $use_default_style_file = ($a_css_name ===
"");
141 if ($use_default_style_file) {
144 $stylesheet_name = $a_css_name;
147 if ($use_custom_skin) {
149 "./Customizing/skin/" 154 $filename =
"./assets/css/" . $stylesheet_name;
157 if (!$force_reload) {
165 $skin_version = $skin->getVersion();
166 if ($skin_version !==
"") {
167 $skin_version_appendix = str_replace(
".",
"-", $skin_version);
169 $skin_version_appendix =
'0';
172 return $filename .
"?skin_version=" . $skin_version_appendix;
192 if (is_file(
"./" . $in_style)) {
195 return "assets/css/delos_cont.css";
205 public static function switchColor(
int $a_num,
string $a_css1,
string $a_css2): string
218 public static function makeClickable(
string $a_text,
bool $detectGotoLinks =
false): string
222 $ret = $DIC->refinery()->string()->makeClickable()->transform($a_text);
224 if ($detectGotoLinks) {
225 $goto =
'<a[^>]*href="(' . str_replace(
'@',
'\@', ILIAS_HTTP_PATH) .
'/goto';
226 $regExp = $goto .
'.php\?target=\w+_(\d+)[^"]*)"[^>]*>[^<]*</a>';
227 $ret = preg_replace_callback(
228 '@' . $regExp .
'@i',
229 [self::class,
'replaceLinkProperties'],
234 $regExp = $goto .
'_[^"><]*[a-z0-9]+_([0-9]+)\.html)"[^>]*>[^<]*</a>';
235 $ret = preg_replace_callback(
236 '@' . $regExp .
'@i',
237 [self::class,
'replaceLinkProperties'],
248 $cache = $DIC[
'ilObjDataCache'];
253 $obj_id = $cache->lookupObjId(
$ref_id);
255 $title = $cache->lookupTitle($obj_id);
256 $link =
'<a href="' . $matches[1] .
'" target="_self">' . $title .
'</a>';
276 if ($mailAddressParserFactory ===
null) {
281 $parser = $mailAddressParserFactory->getParser($a_email);
282 $addresses = $parser->parse();
292 public static function isLogin(
string $a_login): bool
294 if (empty($a_login)) {
298 if (strlen($a_login) < 3) {
305 if (!preg_match(
"/^[A-Za-z0-9_\.\+\*\@!\$\%\~\-]+$/", $a_login)) {
318 public static function img(
320 ?
string $a_alt =
null,
327 $img =
'<img src="' . $a_src .
'"';
328 if (!is_null($a_alt)) {
329 $img .=
' alt="' . htmlspecialchars($a_alt) .
'"';
331 if ($a_width !=
"") {
332 $img .=
' width="' . htmlspecialchars($a_width) .
'"';
334 if ($a_height !=
"") {
335 $img .=
' height="' . htmlspecialchars($a_height) .
'"';
337 if ($a_class !=
"") {
338 $img .=
' class="' . $a_class .
'"';
341 $img .=
' id="' . $a_id .
'"';
354 string $mime =
"application/octet-stream" 358 Delivery::DIRECT_PHP_OUTPUT,
362 $delivery->setSendMimeType(
true);
363 $delivery->setDisposition(Delivery::DISP_ATTACHMENT);
364 $delivery->setDownloadFileName($a_filename);
365 $delivery->setConvertFileNameToAsci(
true);
366 $repsonse = $DIC->http()->response()->withBody(Streams::ofString($a_data));
367 $DIC->http()->saveResponse($repsonse);
368 $delivery->deliver();
380 $url = (is_int(strpos($a_url,
"?")))
381 ? $a_url . $amp . $a_par
382 : $a_url .
"?" . $a_par;
390 public static function stripSlashes(
string $a_str,
bool $a_strip_html =
true,
string $a_allow =
""): string
392 if (ini_get(
"magic_quotes_gpc")) {
393 $a_str = stripslashes($a_str);
404 if (ini_get(
"magic_quotes_gpc")) {
405 $a_str = stripslashes($a_str);
414 public static function secureString(
string $a_str,
bool $a_strip_html =
true,
string $a_allow =
""): string
418 $allow_tags = explode(
">", $a_allow);
421 foreach ($allow_tags as $allow) {
423 $allow = str_replace(
"<",
"", $allow);
425 if (!in_array($allow, $sec_tags)) {
426 $only_secure =
false;
428 $allow_array[] = $allow;
433 if (($only_secure || $a_allow ==
"") && $a_strip_html) {
434 if ($a_allow ===
"") {
453 $a_str = strip_tags($a_str);
497 private static function maskSecureTags(
string $a_str, array $allow_array): string
499 foreach ($allow_array as $t) {
512 [
"param" =>
"align",
"value" =>
"left"],
513 [
"param" =>
"align",
"value" =>
"center"],
514 [
"param" =>
"align",
"value" =>
"justify"],
515 [
"param" =>
"align",
"value" =>
"right"]
530 foreach ($allow_array as $t) {
543 [
"param" =>
"align",
"value" =>
"left"],
544 [
"param" =>
"align",
"value" =>
"center"],
545 [
"param" =>
"align",
"value" =>
"justify"],
546 [
"param" =>
"align",
"value" =>
"right"]
564 if (ini_get(
"magic_quotes_gpc")) {
565 return stripslashes($a_str);
589 bool $a_make_links_clickable,
590 bool $a_detect_goto_links =
false 594 if ($a_make_links_clickable) {
611 $numberOfMatches = preg_match_all(
612 '/(?:(?:http|https|ftp|ftps|mailto):|www\.)(?:[a-zA-Z0-9]|[;\/?:|&=+$,]|[\\-_.!~*\'()]|%[0-9a-fA-F]{2}|#|[;?:@&=+$,])+/',
620 foreach ($matches[0] as $match) {
621 $matched_text = $match[0];
625 $encoded .= nl2br(htmlspecialchars(substr($a_str, $pos1, $pos2 - $pos1)));
631 $pos1 = $pos2 + strlen($matched_text);
633 if ($pos1 < strlen($a_str)) {
634 $encoded .= nl2br(htmlspecialchars(substr($a_str, $pos1)));
637 $encoded = nl2br(htmlspecialchars($a_str));
642 private static function maskAttributeTag(
string $a_str,
string $tag,
string $tag_att): string
646 $ilLog = $DIC[
"ilLog"];
649 $att = $ws .
"[^>]*" . $ws;
652 '/<(' . $tag . $att .
'(' . $tag_att . $ws .
'="' . $ws .
'(([$@!*()~;,_0-9A-z\/:=%.&#?+\-])*)")' . $att .
')>/i',
657 $a_str = preg_replace(
658 "/<" . preg_quote($found[1],
"/") .
">/i",
659 '<' . $tag .
' ' . $tag_att . $tag_att .
'="' . $found[3] .
'">',
662 if ($old_str == $a_str) {
664 "ilUtil::maskA-" . htmlentities($old_str) .
" == " .
670 $a_str = str_ireplace(
682 $ilLog = $DIC[
"ilLog"];
685 '/<(' . $tag .
' ' . $tag_att . $tag_att .
'="(([$@!*()~;,_0-9A-z\/:=%.&#?+\-])*)")>/i',
690 $a_str = preg_replace(
691 "/<" . preg_quote($found[1],
"/") .
">/i",
695 if ($old_str == $a_str) {
697 "ilUtil::unmaskA-" . htmlentities($old_str) .
" == " .
703 $a_str = str_replace(
'</' . $tag .
'>',
'</' . $tag .
'>', $a_str);
707 public static function maskTag(
string $a_str,
string $tag, array $fix_param = []): string
709 $a_str = str_replace(
710 [
"<$tag>",
"<" . strtoupper($tag) .
">"],
711 "<" . $tag .
">",
714 $a_str = str_replace(
715 [
"</$tag>",
"</" . strtoupper($tag) .
">"],
716 "</" . $tag .
">",
720 foreach ($fix_param as $p) {
723 $a_str = str_replace(
725 "<" .
"$tag $k=\"$v\"" .
">",
733 private static function unmaskTag(
string $a_str,
string $tag, array $fix_param = []): string
735 $a_str = str_replace(
"<" . $tag .
">",
"<" . $tag .
">", $a_str);
736 $a_str = str_replace(
"</" . $tag .
">",
"</" . $tag .
">", $a_str);
738 foreach ($fix_param as $p) {
741 $a_str = str_replace(
742 "<$tag $k=\"$v\">",
743 "<" .
"$tag $k=\"$v\"" .
">",
755 $a_str = str_ireplace(
"javascript",
"jvscrpt", $a_str);
756 $a_str = str_ireplace([
"%00",
775 public static function stripScriptHTML(
string $a_str,
string $a_allow =
"",
bool $a_rm_js =
true): string
777 $negativestr =
"a,abbr,acronym,address,applet,area,base,basefont," .
778 "big,blockquote,body,br,button,caption,center,cite,code,col," .
779 "colgroup,dd,del,dfn,dir,div,dl,dt,em,fieldset,font,form,frame," .
780 "frameset,h1,h2,h3,h4,h5,h6,head,hr,html,i,iframe,img,input,ins,isindex,kbd," .
781 "label,legend,li,link,map,menu,meta,noframes,noscript,object,ol," .
782 "optgroup,option,p,param,q,s,samp,script,select,small,span," .
783 "strike,strong,style,sub,sup,table,tbody,td,textarea,tfoot,th,thead," .
784 "title,tr,tt,u,ul,var";
785 $a_allow = strtolower($a_allow);
786 $negatives = explode(
",", $negativestr);
788 while ($outer_old_str != $a_str) {
789 $outer_old_str = $a_str;
790 foreach ($negatives as $item) {
791 $pos = strpos($a_allow,
"<$item>");
794 if ($pos ===
false) {
796 while ($old_str != $a_str) {
798 $a_str = preg_replace(
"/<\/?\s*$item(\/?)\s*>/i",
"", $a_str);
799 $a_str = preg_replace(
"/<\/?\s*$item(\/?)\s+([^>]*)>/i",
"", $a_str);
807 $a_str = preg_replace(
"/<\s*\w*(\/?)(\s+[^>]*)?(\s+on[^>]*)>/i",
"", $a_str);
810 $a_str = preg_replace(
"/<\s*\w*(\/?)\s+[^>]*javascript[^>]*>/i",
"", $a_str);
814 $a_str = preg_replace(
"/<\s*\w*(\/?)\s+[^>]*expression[^>]*>/i",
"", $a_str);
826 if (filter_var($url, FILTER_VALIDATE_URL) ===
false &&
827 filter_var(
"http://" . $url, FILTER_VALIDATE_URL) ===
false &&
828 filter_var(
"http:" . $url, FILTER_VALIDATE_URL) ===
false &&
829 filter_var(
"http://de.de" . $url, FILTER_VALIDATE_URL) ===
false &&
830 filter_var(
"http://de.de/" . $url, FILTER_VALIDATE_URL) ===
false) {
833 if (trim(strtolower(parse_url($url, PHP_URL_SCHEME) ??
'')) ===
"javascript") {
837 return htmlspecialchars($url, ENT_QUOTES);
848 while (($spos = strpos($a_parstr,
"=")) && $ok) {
850 $cpar = substr($a_parstr, 0, $spos);
851 $a_parstr = substr($a_parstr, $spos, strlen($a_parstr) - $spos);
852 while (substr($cpar, 0, 1) ==
"," || substr($cpar, 0, 1) ==
" " || substr($cpar, 0, 1) == chr(13) || substr(
857 $cpar = substr($cpar, 1, strlen($cpar) - 1);
859 while (substr($cpar, strlen($cpar) - 1, 1) ==
" " || substr($cpar, strlen($cpar) - 1, 1) == chr(
861 ) || substr($cpar, strlen($cpar) - 1, 1) == chr(10)) {
862 $cpar = substr($cpar, 0, strlen($cpar) - 1);
867 while ($cpar != $cpar_old) {
869 $cpar = preg_replace(
"/[^a-zA-Z0-9_]/i",
"", $cpar);
874 if ($spos = strpos($a_parstr,
"\"")) {
875 $a_parstr = substr($a_parstr, $spos + 1, strlen($a_parstr) - $spos);
876 $spos = strpos($a_parstr,
"\"");
878 $cval = substr($a_parstr, 0, $spos);
880 $a_parstr = substr($a_parstr, $spos + 1, strlen($a_parstr) - $spos - 1);
890 return $ok ? $par : [];
896 public static function yn2tf(
string $a_yn): bool
898 if (strtolower($a_yn) ===
"y") {
908 public static function tf2yn(
bool $a_tf): string
924 if (($a_mime ==
"image/gif") || ($a_mime ==
"image/jpeg") ||
925 ($a_mime ==
"image/png") || ($a_mime ==
"application/x-shockwave-flash") ||
926 ($a_mime ==
"image/tiff") || ($a_mime ==
"image/x-ms-bmp") ||
927 ($a_mime ==
"image/psd") || ($a_mime ==
"image/iff")) {
937 public static function redirect(
string $a_script): void
941 if (!isset($DIC[
'ilCtrl']) || !$DIC[
'ilCtrl'] instanceof
ilCtrl) {
944 $DIC->ctrl()->redirectToURL($a_script);
956 if (substr($a_value, 0, 4) ==
"il__") {
957 $a_value =
"il_" .
IL_INST_ID .
"_" . substr($a_value, 4, strlen($a_value) - 4);
978 $ilDB = $DIC->database();
981 if (isset($DIC[
"ilErr"])) {
985 if (empty($a_group_name)) {
986 $message = __METHOD__ .
": No groupname given!";
990 $clause = ($a_id !==
null) ?
" AND obj_id != " .
$ilDB->quote($a_id) .
" " :
"";
992 $q =
"SELECT obj_id FROM object_data " .
993 "WHERE title = " .
$ilDB->quote($a_group_name,
"text") .
" " .
994 "AND type = " .
$ilDB->quote(
"grp",
"text") .
999 return $r->numRows() > 0;
1007 return (strtolower(substr(php_uname(), 0, 3)) ===
"win");
1015 public static function now(): string
1017 return date(
"Y-m-d H:i:s");
1050 string $a_operation,
1056 $ilDB = $DIC->database();
1057 $rbacreview = $DIC->rbac()->review();
1058 $ilAccess = $DIC->access();
1059 $ilUser = $DIC->user();
1061 $tree = $DIC->repositoryTree();
1063 if (!is_array($a_obj_type)) {
1064 $where =
"WHERE type = " .
$ilDB->quote($a_obj_type,
"text") .
" ";
1066 $where =
"WHERE " .
$ilDB->in(
"type", $a_obj_type,
false,
"text") .
" ";
1078 $a_usr_id = $a_usr_id ?: $ilUser->getId();
1079 $a_roles = $rbacreview->assignedRoles($a_usr_id);
1084 $query =
"SELECT ref_id FROM object_reference obr LEFT JOIN object_data obd ON obr.obj_id = obd.obj_id " .
1085 "LEFT JOIN tree ON obr.ref_id = tree.child " .
1092 while ($row =
$ilDB->fetchObject(
$res)) {
1098 if ($counter++ >= $limit) {
1102 $ref_ids[] = $row->ref_id;
1108 if ($a_operation ==
'edit_permissions' or strpos($a_operation,
'create') !==
false) {
1109 $check_owner =
") ";
1111 $check_owner =
"OR owner = " .
$ilDB->quote($a_usr_id,
"integer") .
") ";
1115 $ops_id = $ops_ids[0];
1117 $and =
"AND ((" .
$ilDB->in(
"rol_id", $a_roles,
false,
"integer") .
" ";
1119 $query =
"SELECT DISTINCT(obr.ref_id),obr.obj_id,type FROM object_reference obr " .
1120 "JOIN object_data obd ON obd.obj_id = obr.obj_id " .
1121 "LEFT JOIN rbac_pa ON obr.ref_id = rbac_pa.ref_id " .
1124 "AND (" .
$ilDB->like(
"ops_id",
"text",
"%i:" . $ops_id .
"%") .
" " .
1125 "OR " .
$ilDB->like(
"ops_id",
"text",
"%:\"" . $ops_id .
"\";%") .
")) " .
1132 if ($counter >= $limit) {
1142 if ($ilAccess->checkAccessOfUser($a_usr_id, $a_operation,
'', $row->ref_id, $row->type, $row->obj_id)) {
1144 $ref_ids[] = $row->ref_id;
1147 return $ref_ids ?: [];
1158 public static function isHTML(
string $a_text): bool
1160 if (strlen(strip_tags($a_text)) < strlen($a_text)) {
1175 $test_str = explode(
'_', $role_title);
1176 $prefix = $test_str[0] ??
'';
1178 if ($prefix ===
'il') {
1195 $test_str = explode(
'_', $ilias_id);
1197 $parsed_inst_id = (
int) ($test_str[1] ?? 0);
1198 $prefix = $test_str[0] ??
'';
1200 if ($prefix ===
'il' && $parsed_inst_id === $inst_id && count($test_str) === 4) {
1201 return is_numeric($test_str[3]) ? (
int) $test_str[3] :
null;
1212 public static function _sortIds(array $a_ids,
string $a_table,
string $a_field,
string $a_id_name): array
1216 $ilDB = $DIC->database();
1223 $where =
"WHERE " . $a_id_name .
" IN (";
1227 $query =
"SELECT " . $a_id_name .
" FROM " . $a_table .
" " .
1229 "ORDER BY " . $a_field;
1234 $ids[] = $row->$a_id_name;
1250 $box_factory = $DIC->ui()->factory()->messageBox();
1253 $box = $box_factory->info($a_txt);
1256 $box = $box_factory->success($a_txt);
1259 $box = $box_factory->confirmation($a_txt);
1262 $box = $box_factory->failure($a_txt);
1268 return $DIC->ui()->renderer()->render($box);
1275 string $a_cookie_name,
1276 string $a_cookie_value =
'',
1277 bool $a_also_set_super_global =
true,
1278 bool $a_set_cookie_invalid =
false 1282 $http = $DIC->http();
1283 $cookie_jar =
$http->cookieJar();
1287 $cookie_expire =
null;
1288 if (defined(
'IL_COOKIE_EXPIRE') && is_numeric(IL_COOKIE_EXPIRE) && IL_COOKIE_EXPIRE > 0) {
1289 $cookie_expire = (
int) IL_COOKIE_EXPIRE;
1293 if ($a_set_cookie_invalid) {
1294 $expires = time() - 10;
1295 } elseif ($cookie_expire > 0) {
1296 $expires = time() + $cookie_expire;
1299 $cookie = $cookie_factory->create($a_cookie_name, $a_cookie_value)
1300 ->withExpires($expires)
1301 ->withSecure(defined(
'IL_COOKIE_SECURE') ? IL_COOKIE_SECURE :
false)
1303 ->withDomain(defined(
'IL_COOKIE_DOMAIN') ? IL_COOKIE_DOMAIN :
'')
1304 ->withHttpOnly(defined(
'IL_COOKIE_HTTPONLY') ? IL_COOKIE_HTTPONLY :
false);
1308 defined(
'IL_COOKIE_SECURE') && IL_COOKIE_SECURE &&
1309 (!isset(session_get_cookie_params()[
'samesite']) || strtolower(session_get_cookie_params()[
'samesite']) !==
'strict')
1311 $cookie = $cookie->withSamesite(Cookie::SAMESITE_LAX);
1313 $jar = $cookie_jar->with($cookie);
1327 if ((isset(
$_SERVER[
'SHELL']) &&
$_SERVER[
'SHELL']) || PHP_SAPI ===
'cli' ||
1332 return ILIAS_HTTP_PATH;
1352 $exploded = explode(
'_', $a_import_id);
1354 $parsed[
'orig'] = $a_import_id;
1355 if ($exploded[0] ==
'il') {
1356 $parsed[
'prefix'] = $exploded[0];
1358 if (is_numeric($exploded[1])) {
1359 $parsed[
'inst_id'] = (
int) $exploded[1];
1361 $parsed[
'type'] = $exploded[2];
1363 if (is_numeric($exploded[3])) {
1364 $parsed[
'id'] = (
int) $exploded[3];
1380 int $a_decimals = 0,
1381 ?
string $a_dec_point =
null,
1382 ?
string $a_thousands_sep =
null,
1383 bool $a_suppress_dot_zero =
false 1387 $lng = $DIC->language();
1389 if ($a_dec_point ===
null) {
1392 if ($a_dec_point ===
'-lang_sep_decimal-') {
1396 if ($a_thousands_sep ===
null) {
1397 $a_thousands_sep =
$lng->txt(
'lang_sep_thousand');
1399 if ($a_thousands_sep ===
'-lang_sep_thousand-') {
1400 $a_thousands_sep =
",";
1403 $txt = number_format($a_float, $a_decimals, $a_dec_point, $a_thousands_sep);
1406 if (($a_suppress_dot_zero == 0 || $a_decimals == 0)
1407 && substr(
$txt, -2) == $a_dec_point .
'0' 1411 if ($a_float == 0 and
$txt ==
"") {
1438 $lng = $DIC->language();
1439 if ($a_lng ==
null) {
1445 if ($size >= $mag * $mag * $mag) {
1446 $scaled_size = $size / $mag / $mag / $mag;
1447 $scaled_unit =
'lang_size_gb';
1449 if ($size >= $mag * $mag) {
1450 $scaled_size = $size / $mag / $mag;
1451 $scaled_unit =
'lang_size_mb';
1453 if ($size >= $mag) {
1454 $scaled_size = $size / $mag;
1455 $scaled_unit =
'lang_size_kb';
1457 $scaled_size = $size;
1458 $scaled_unit =
'lang_size_bytes';
1463 $result = self::fmtFloat(
1466 ==
'lang_size_bytes') ? 0 : 1,
1467 $a_lng->txt(
'lang_sep_decimal'),
1468 $a_lng->txt(
'lang_sep_thousand'),
1471 .
' ' . $a_lng->txt($scaled_unit);
1472 if ($a_mode ==
'long' && $size > $mag) {
1473 $result .=
' (' . self::fmtFloat(
1476 $a_lng->txt(
'lang_sep_decimal'),
1477 $a_lng->txt(
'lang_sep_thousand')
1479 . $a_lng->txt(
'lang_size_bytes') .
')';
setMimeType(string $mime_type)
static getStyleSheetLocation(string $mode="output", string $a_css_name="")
get full style sheet file name (path inclusive) of current user
static appendUrlParameterString(string $a_url, string $a_par, bool $xml_style=false)
static getSystemMessageHTML(string $a_txt, string $a_type="info")
Get HTML for a system message.
static quoteArray(array $a_array)
Quotes all members of an array for usage in DB query statement.
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
Class InitCtrlService wraps the initialization of ilCtrl.
static usesHTTP()
Uses HTTP aka browser.
static isHTML(string $a_text)
Checks if a given string contains HTML or not.
static switchColor(int $a_num, string $a_css1, string $a_css2)
switches style sheets for each even $a_num (used for changing colors of different result rows) ...
static secureString(string $a_str, bool $a_strip_html=true, string $a_allow="")
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
static stripScriptHTML(string $a_str, string $a_allow="", bool $a_rm_js=true)
static getImageTagByType(string $a_type, string $a_path, bool $a_big=false)
Builds an html image tag.
static maskTag(string $a_str, string $tag, array $fix_param=[])
static maskSecureTags(string $a_str, array $allow_array)
static replaceLinkProperties(array $matches)
static _getOperationIdsByName(array $operations)
get ops_id's by name.
static deliverData(string $a_data, string $a_filename, string $mime="application/octet-stream")
static secureLink(string $a_str)
static secureUrl(string $url)
static img(string $a_src, ?string $a_alt=null, $a_width="", $a_height="", $a_border=0, $a_id="", $a_class="")
Build img tag.
static now()
Return current timestamp in Y-m-d H:i:s format.
static getNewContentStyleSheetLocation(string $mode="output")
get full style sheet file name (path inclusive) of current user
static htmlencodePlainString(string $a_str, bool $a_make_links_clickable, bool $a_detect_goto_links=false)
Encodes a plain text string into HTML for display in a browser.
static is_email(string $a_email, ?ilMailRfc822AddressParserFactory $mailAddressParserFactory=null)
This preg-based function checks whether an e-mail address is formally valid.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Class ilMailRfc822AddressParserFactory.
static unmaskAttributeTag(string $a_str, string $tag, string $tag_att)
static securePlainString(string $a_str)
static getCurrentSkin()
get the current skin use always this function instead of getting the account's skin the current skin ...
static setCookie(string $a_cookie_name, string $a_cookie_value='', bool $a_also_set_super_global=true, bool $a_set_cookie_invalid=false)
static formatSize(int $size, string $a_mode='short', ?ilLanguage $a_lng=null)
Returns the specified file size value in a human friendly form.
static isLogin(string $a_login)
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static fmtFloat(float $a_float, int $a_decimals=0, ?string $a_dec_point=null, ?string $a_thousands_sep=null, bool $a_suppress_dot_zero=false)
format a float
static unmaskSecureTags(string $a_str, array $allow_array)
static getHtmlPath(string $relative_path)
get url of path
static _getObjectsByOperations( $a_obj_type, string $a_operation, int $a_usr_id=0, int $limit=0)
Get all objects of a specific type and check access This function is not recursive, instead it parses the serialized rbac_pa entries.
static parseImportId(string $a_import_id)
Parse an ilias import id Typically of type il_[IL_INST_ID]_[OBJ_TYPE]_[OBJ_ID] returns array( 'orig' ...
static _sortIds(array $a_ids, string $a_table, string $a_field, string $a_id_name)
Function that sorts ids by a given table field using WHERE IN E.g: __sort(array(6,7),'usr_data','lastname','usr_id') => sorts by lastname.
static redirect(string $a_script)
static maskAttributeTag(string $a_str, string $tag, string $tag_att)
static deducibleSize(string $a_mime)
checks if mime type is provided by getimagesize()
static extractParameterString(string $a_parstr)
static __extractId(string $ilias_id, int $inst_id)
extract ref id from role title, e.g.
static groupNameExists(string $a_group_name, ?int $a_id=null)
checks if group name already exists.
static yn2tf(string $a_yn)
static getCurrentStyle()
get the current style or sub style use always this function instead of getting the account's style th...
static unmaskTag(string $a_str, string $tag, array $fix_param=[])
static insertInstIntoID(string $a_value)
inserts installation id into ILIAS id
static makeClickable(string $a_text, bool $detectGotoLinks=false)
const IL_COOKIE_PATH(isset($_GET['client_id']))
static __extractRefId(string $role_title)
extract ref id from role title, e.g.
static stripOnlySlashes(string $a_str)