3 declare(strict_types=1);
37 $subs[
'Contribute'] =
'meta_contribute';
52 if (!$a_contribute_id) {
56 $con->setMetaId($a_contribute_id);
65 $con->setParentType(
'meta_lifecycle');
78 $this->status = $a_status;
90 $this->version = $a_version;
100 $this->version_language = $lng_obj;
110 return is_object($this->version_language) ? $this->version_language->getLanguageCode() :
'';
116 $fields[
'meta_lifecycle_id'] = array(
'integer', $next_id = $this->db->nextId(
'il_meta_lifecycle'));
118 if ($this->db->insert(
'il_meta_lifecycle', $fields)) {
127 return $this->
getMetaId() && $this->db->update(
130 array(
"meta_lifecycle_id" => array(
'integer', $this->
getMetaId()))
134 public function delete():
bool 143 $query =
"DELETE FROM il_meta_lifecycle " .
144 "WHERE meta_lifecycle_id = " . $this->db->quote($this->
getMetaId(),
'integer');
157 'rbac_id' => array(
'integer', $this->
getRBACId()),
158 'obj_id' => array(
'integer', $this->
getObjId()),
159 'obj_type' => array(
'text', $this->
getObjType()),
160 'lifecycle_status' => array(
'text', $this->
getStatus()),
161 'meta_version' => array(
'text', $this->
getVersion()),
169 $query =
"SELECT * FROM il_meta_lifecycle " .
170 "WHERE meta_lifecycle_id = " . $this->db->quote($this->
getMetaId(),
'integer');
175 $this->
setObjId((
int) $row->obj_id);
177 $this->
setStatus((
string) $row->lifecycle_status);
178 $this->
setVersion((
string) $row->meta_version);
188 'Status' => $this->
getStatus() ?:
'Draft' 200 foreach ($contributes as
$id) {
202 $con->toXML($writer);
204 if (!count($contributes)) {
206 $con->toXML($writer);
212 public static function _getId(
int $a_rbac_id,
int $a_obj_id):
int 216 $ilDB = $DIC->database();
218 $query =
"SELECT meta_lifecycle_id FROM il_meta_lifecycle " .
219 "WHERE rbac_id = " .
$ilDB->quote($a_rbac_id,
'integer') .
" " .
220 "AND obj_id = " .
$ilDB->quote($a_obj_id,
'integer');
224 return (
int) $row->meta_lifecycle_id;
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setVersion(string $a_version)
setVersionLanguage(ilMDLanguageItem $lng_obj)
getContribute(int $a_contribute_id)
xmlEndTag(string $tag)
Writes an endtag.
static _getId(int $a_rbac_id, int $a_obj_id)
ilMDLanguageItem $version_language
setStatus(string $a_status)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
toXML(ilXmlWriter $writer)
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)
setObjType(string $a_type)