ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMDUtils.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 class ilMDUtils
29 {
36  public static function _LOMDurationToArray(string $a_string): array
37  {
38  global $DIC;
39 
40  $data_helper = $DIC->learningObjectMetadata()->dataHelper();
41 
42  $array = $data_helper->durationToArray($a_string);
43  // this function never returned the year, so we throw it away for backwards compatibility
44  array_shift($array);
45  return $array ?? [];
46  }
47 
48  public static function _fillHTMLMetaTags(int $a_rbac_id, int $a_obj_id, string $a_type): bool
49  {
50  global $DIC;
51 
52  // currently disabled due to mantis 0026864
53  return true;
54 
55  $tpl = $DIC['tpl'];
56  $ilObjDataCache = $DIC['ilObjDataCache'];
57 
59  $a_rbac_id,
60  $a_obj_id,
61  $a_type
62  ) as $lng_code => $key_string) {
63  $tpl->setCurrentBlock('mh_meta_item');
64  $tpl->setVariable('MH_META_NAME', 'keywords');
65  $tpl->setVariable('MH_META_LANG', $lng_code);
66  $tpl->setVariable('MH_META_CONTENT', $key_string);
67  $tpl->parseCurrentBlock();
68  }
69 
70  foreach (ilMDContribute::_lookupAuthors($a_rbac_id, $a_obj_id, $a_type) as $author) {
71  $tpl->setCurrentBlock('mh_meta_item');
72  $tpl->setVariable('MH_META_NAME', 'author');
73  $tpl->setVariable('MH_META_CONTENT', $author);
74  $tpl->parseCurrentBlock();
75  }
76  return true;
77  }
78 
83  public static function _parseCopyright(string $a_copyright): string
84  {
85  $settings = ilMDSettings::_getInstance();
86  if (!$settings->isCopyrightSelectionActive()) {
87  return ilMDCopyrightSelectionEntry::isEntry($a_copyright) ? '' : $a_copyright;
88  }
89 
91  }
92 
96  public static function _getDefaultCopyright(): string
97  {
99  return self::_parseCopyright(
101  );
102  }
103 }
static _LOMDurationToArray(string $a_string)
LOM datatype duration is a string like P2M4DT7H18M2S (2 months 4 days 7 hours 18 minutes 2 seconds) T...
static _parseCopyright(string $a_copyright)
Returns an empty string if copyright selection is not active, regardless of input.
static _getKeywordsByLanguageAsString(int $a_rbac_id, int $a_obj_id, string $a_type)
static _getDefaultCopyright()
Returns an empty string if copyright selection is not active.
static _fillHTMLMetaTags(int $a_rbac_id, int $a_obj_id, string $a_type)
static _lookupAuthors(int $a_rbac_id, int $a_obj_id, string $a_obj_type)
global $DIC
Definition: shib_login.php:22