3 declare(strict_types=1);
41 $subs[
'Keyword'] =
'meta_keyword';
42 $subs[
'Language'] =
'meta_language';
43 $subs[
'Identifier'] =
'meta_identifier';
44 $subs[
'Description'] =
'meta_description';
61 if (!$a_identifier_id) {
65 $ide->setMetaId($a_identifier_id);
74 $ide->setParentType(
'meta_general');
89 if (!$a_language_id) {
93 $lan->setMetaId($a_language_id);
102 $lan->setParentType(
'meta_general');
117 if (!$a_description_id) {
121 $des->setMetaId($a_description_id);
130 $des->setParentType(
'meta_general');
145 if (!$a_keyword_id) {
149 $key->setMetaId($a_keyword_id);
158 $key->setParentType(
'meta_general');
166 switch ($a_structure) {
172 $this->structure = $a_structure;
187 $this->title = $a_title;
197 $this->title_language = $lng_obj;
202 return is_object($this->title_language) ? $this->title_language : null;
207 return is_object($this->title_language) ? $this->title_language->getLanguageCode() :
'';
212 $this->coverage = $a_coverage;
222 $this->coverage_language = $lng_obj;
227 return is_object($this->coverage_language) ? $this->coverage_language : null;
232 return is_object($this->coverage_language) ? $this->coverage_language->getLanguageCode() :
'';
238 $fields[
'meta_general_id'] = array(
'integer', $next_id = $this->db->nextId(
'il_meta_general'));
240 $this->log->debug(
"Insert General " . print_r($fields,
true));
244 if ($this->db->insert(
'il_meta_general', $fields)) {
253 return $this->
getMetaId() && $this->db->update(
256 array(
"meta_general_id" => array(
'integer', $this->
getMetaId()))
260 public function delete():
bool 290 $query =
"DELETE FROM il_meta_general " .
291 "WHERE meta_general_id = " . $this->db->quote($this->
getMetaId(),
'integer');
305 'rbac_id' => array(
'integer', $this->
getRBACId()),
306 'obj_id' => array(
'integer', $this->
getObjId()),
307 'obj_type' => array(
'text', $this->
getObjType()),
308 'general_structure' => array(
'text', $this->
getStructure()),
309 'title' => array(
'text', $this->
getTitle()),
319 $query =
"SELECT * FROM il_meta_general " .
320 "WHERE meta_general_id = " . $this->db->quote($this->
getMetaId(),
'integer');
325 $this->
setObjId((
int) $row->obj_id);
328 $this->
setTitle((
string) $row->title);
346 foreach ($identifiers as
$id) {
349 $ide->toXML($writer);
352 if (!count($identifiers)) {
358 $ide->setExportMode(
true);
359 $ide->toXML($writer);
373 foreach ($languages as $id) {
375 $lan->toXML($writer);
380 foreach ($descriptions as $id) {
382 $des->toXML($writer);
384 if (!count($descriptions)) {
388 $des->toXML($writer);
393 foreach ($keywords as $id) {
395 $key->toXML($writer);
397 if (!count($keywords)) {
401 $key->toXML($writer);
418 public static function _getId(
int $a_rbac_id,
int $a_obj_id):
int 422 $ilDB = $DIC->database();
424 $query =
"SELECT meta_general_id FROM il_meta_general " .
425 "WHERE rbac_id = " .
$ilDB->quote($a_rbac_id,
'integer') .
" " .
426 "AND obj_id = " .
$ilDB->quote($a_obj_id,
'integer');
430 return (
int) $row->meta_general_id;
getIdentifier(int $a_identifier_id)
setTitle(string $a_title)
setStructure(string $a_structure)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilMDLanguageItem $coverage_language
static _getId(int $a_rbac_id, int $a_obj_id)
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
xmlEndTag(string $tag)
Writes an endtag.
setCoverage(string $a_coverage)
ilMDLanguageItem $title_language
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
getDescription(int $a_description_id)
getCoverageLanguageCode()
toXML(ilXmlWriter $writer)
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
setTitleLanguage(ilMDLanguageItem $lng_obj)
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
getLanguage(int $a_language_id)
getKeyword(int $a_keyword_id)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
setMetaId(int $a_meta_id, bool $a_read_data=true)
setCoverageLanguage(ilMDLanguageItem $lng_obj)
setObjType(string $a_type)