ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ilMDDescription Class Reference
+ Inheritance diagram for ilMDDescription:
+ Collaboration diagram for ilMDDescription:

Public Member Functions

 setDescription ($a_description)
 
 getDescription ()
 
 setDescriptionLanguage (&$lng_obj)
 
getDescriptionLanguage ()
 
 getDescriptionLanguageCode ()
 
 save ()
 
 update ()
 
 delete ()
 
 __getFields ()
 
 read ()
 
 toXML (&$writer)
 
 setDescription ($a_description)
 
 getDescription ()
 
 setDescriptionLanguage (&$lng_obj)
 
getDescriptionLanguage ()
 
 getDescriptionLanguageCode ()
 
 save ()
 
 update ()
 
 delete ()
 
 __getFields ()
 
 read ()
 
 toXML (&$writer)
 
 _getIds ($a_rbac_id, $a_obj_id, $a_parent_id, $a_parent_type)
 
- Public Member Functions inherited from ilMDBase
 __construct ( $a_rbac_id=0, $a_obj_id=0, $a_type=0)
 
 setRBACId ($a_id)
 
 getRBACId ()
 
 setObjId ($a_id)
 
 getObjId ()
 
 setObjType ($a_type)
 
 getObjType ()
 
 setMetaId ($a_meta_id, $a_read_data=true)
 
 getMetaId ()
 
 setParentType ($a_parent_type)
 
 getParentType ()
 
 setParentId ($a_id)
 
 getParentId ()
 
 setExportMode ($a_export_mode=true)
 
 getExportMode ()
 
 validate ()
 
 update ()
 
 save ()
 
 delete ()
 
 toXML (&$writer)
 
 __construct ( $a_rbac_id=0, $a_obj_id=0, $a_type=0)
 
 setRBACId ($a_id)
 
 getRBACId ()
 
 setObjId ($a_id)
 
 getObjId ()
 
 setObjType ($a_type)
 
 getObjType ()
 
 setMetaId ($a_meta_id, $a_read_data=true)
 
 getMetaId ()
 
 setParentType ($a_parent_type)
 
 getParentType ()
 
 setParentId ($a_id)
 
 getParentId ()
 
 validate ()
 
 update ()
 
 save ()
 
 delete ()
 
 toXML (&$writer)
 

Static Public Member Functions

static _getIds ($a_rbac_id, $a_obj_id, $a_parent_id, $a_parent_type)
 

Additional Inherited Members

- Data Fields inherited from ilMDBase
 $rbac_id
 
 $obj_id
 
 $obj_type
 
 $export_mode = false
 
- Protected Attributes inherited from ilMDBase
 $log
 

Detailed Description

Definition at line 33 of file class.ilMDDescription.php.

Member Function Documentation

◆ __getFields() [1/2]

ilMDDescription::__getFields ( )

Definition at line 104 of file class.ilMDDescription.php.

References array, getDescription(), getDescriptionLanguageCode(), ilMDBase\getObjId(), ilMDBase\getObjType(), ilMDBase\getParentId(), ilMDBase\getParentType(), and ilMDBase\getRBACId().

Referenced by save().

105  {
106  return array('rbac_id' => array('integer',$this->getRBACId()),
107  'obj_id' => array('integer',$this->getObjId()),
108  'obj_type' => array('text',$this->getObjType()),
109  'parent_type' => array('text',$this->getParentType()),
110  'parent_id' => array('integer',$this->getParentId()),
111  'description' => array('clob',$this->getDescription()),
112  'description_language' => array('text',$this->getDescriptionLanguageCode()));
113  }
Create styles array
The data for the language used.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ __getFields() [2/2]

ilMDDescription::__getFields ( )

Definition at line 106 of file class.ilMDDescription.php.

References array, getDescription(), getDescriptionLanguageCode(), ilMDBase\getObjId(), ilMDBase\getObjType(), ilMDBase\getParentId(), ilMDBase\getParentType(), ilMDBase\getRBACId(), and ilUtil\prepareDBString().

107  {
108  return array('rbac_id' => $this->getRBACId(),
109  'obj_id' => $this->getObjId(),
110  'obj_type' => ilUtil::prepareDBString($this->getObjType()),
111  'parent_type' => $this->getParentType(),
112  'parent_id' => $this->getParentId(),
113  'description' => ilUtil::prepareDBString($this->getDescription()),
114  'description_language' => ilUtil::prepareDBString($this->getDescriptionLanguageCode()));
115  }
Create styles array
The data for the language used.
static prepareDBString($a_str)
prepare a string for db writing (insert/update)
+ Here is the call graph for this function:

◆ _getIds() [1/2]

ilMDDescription::_getIds (   $a_rbac_id,
  $a_obj_id,
  $a_parent_id,
  $a_parent_type 
)

Definition at line 153 of file class.ilMDDescription.php.

References $ilDB, $query, $res, $row, array, and ilDBConstants\FETCHMODE_OBJECT.

154  {
155  global $ilDB;
156 
157  $query = "SELECT meta_description_id FROM il_meta_description " .
158  "WHERE rbac_id = " . $ilDB->quote($a_rbac_id) . " " .
159  "AND obj_id = " . $ilDB->quote($a_obj_id) . " " .
160  "AND parent_id = " . $ilDB->quote($a_parent_id) . " " .
161  "AND parent_type = " . $ilDB->quote($a_parent_type) . " " .
162  "ORDER BY meta_description_id";
163 
164  $res = $ilDB->query($query);
165  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
166  $ids[] = $row->meta_description_id;
167  }
168  return $ids ? $ids : array();
169  }
foreach($_POST as $key=> $value) $res
$query
Create styles array
The data for the language used.
global $ilDB

◆ _getIds() [2/2]

static ilMDDescription::_getIds (   $a_rbac_id,
  $a_obj_id,
  $a_parent_id,
  $a_parent_type 
)
static

Definition at line 157 of file class.ilMDDescription.php.

References $ilDB, $query, $res, $row, array, and ilDBConstants\FETCHMODE_OBJECT.

Referenced by ilMDEducational\getDescriptionIds(), and ilMDGeneral\getDescriptionIds().

158  {
159  global $ilDB;
160 
161  $query = "SELECT meta_description_id FROM il_meta_description " .
162  "WHERE rbac_id = " . $ilDB->quote($a_rbac_id) . " " .
163  "AND obj_id = " . $ilDB->quote($a_obj_id) . " " .
164  "AND parent_id = " . $ilDB->quote($a_parent_id) . " " .
165  "AND parent_type = " . $ilDB->quote($a_parent_type) . " " .
166  "ORDER BY meta_description_id";
167 
168  $res = $ilDB->query($query);
169  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
170  $ids[] = $row->meta_description_id;
171  }
172  return $ids ? $ids : array();
173  }
foreach($_POST as $key=> $value) $res
$query
Create styles array
The data for the language used.
global $ilDB
+ Here is the caller graph for this function:

◆ delete() [1/2]

ilMDDescription::delete ( )

Definition at line 89 of file class.ilMDDescription.php.

References $ilDB, $query, $res, and ilMDBase\getMetaId().

90  {
91  global $ilDB;
92 
93  if ($this->getMetaId()) {
94  $query = "DELETE FROM il_meta_description " .
95  "WHERE meta_description_id = " . $ilDB->quote($this->getMetaId(), 'integer');
96  $res = $ilDB->manipulate($query);
97 
98  return true;
99  }
100  return false;
101  }
foreach($_POST as $key=> $value) $res
$query
global $ilDB
+ Here is the call graph for this function:

◆ delete() [2/2]

ilMDDescription::delete ( )

Definition at line 90 of file class.ilMDDescription.php.

References $ilDB, $query, and ilMDBase\getMetaId().

91  {
92  global $ilDB;
93 
94  if ($this->getMetaId()) {
95  $query = "DELETE FROM il_meta_description " .
96  "WHERE meta_description_id = " . $ilDB->quote($this->getMetaId());
97 
98  $this->db->query($query);
99 
100  return true;
101  }
102  return false;
103  }
$query
global $ilDB
+ Here is the call graph for this function:

◆ getDescription() [1/2]

ilMDDescription::getDescription ( )

Definition at line 40 of file class.ilMDDescription.php.

References $description.

Referenced by __getFields(), and toXML().

41  {
42  return $this->description;
43  }
+ Here is the caller graph for this function:

◆ getDescription() [2/2]

ilMDDescription::getDescription ( )

Definition at line 40 of file class.ilMDDescription.php.

References $description.

41  {
42  return $this->description;
43  }

◆ getDescriptionLanguage() [1/2]

& ilMDDescription::getDescriptionLanguage ( )

Definition at line 50 of file class.ilMDDescription.php.

51  {
52  return is_object($this->description_language) ? $this->description_language : false;
53  }

◆ getDescriptionLanguage() [2/2]

& ilMDDescription::getDescriptionLanguage ( )

Definition at line 50 of file class.ilMDDescription.php.

51  {
52  return is_object($this->description_language) ? $this->description_language : false;
53  }

◆ getDescriptionLanguageCode() [1/2]

ilMDDescription::getDescriptionLanguageCode ( )

Definition at line 54 of file class.ilMDDescription.php.

55  {
56  return is_object($this->description_language) ? $this->description_language->getLanguageCode() : false;
57  }

◆ getDescriptionLanguageCode() [2/2]

ilMDDescription::getDescriptionLanguageCode ( )

Definition at line 54 of file class.ilMDDescription.php.

Referenced by __getFields(), and toXML().

55  {
56  return is_object($this->description_language) ? $this->description_language->getLanguageCode() : false;
57  }
+ Here is the caller graph for this function:

◆ read() [1/2]

ilMDDescription::read ( )

Definition at line 115 of file class.ilMDDescription.php.

References $ilDB, $query, $res, $row, ilDBConstants\FETCHMODE_OBJECT, ilMDBase\getMetaId(), setDescription(), setDescriptionLanguage(), ilMDBase\setObjId(), ilMDBase\setObjType(), ilMDBase\setParentId(), ilMDBase\setParentType(), and ilMDBase\setRBACId().

116  {
117  global $ilDB;
118 
119  include_once 'Services/MetaData/classes/class.ilMDLanguageItem.php';
120 
121  if ($this->getMetaId()) {
122  $query = "SELECT * FROM il_meta_description " .
123  "WHERE meta_description_id = " . $ilDB->quote($this->getMetaId(), 'integer');
124 
125  $res = $this->db->query($query);
126  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
127  $this->setRBACId($row->rbac_id);
128  $this->setObjId($row->obj_id);
129  $this->setObjType($row->obj_type);
130  $this->setParentId($row->parent_id);
131  $this->setParentType($row->parent_type);
132  $this->setDescription($row->description);
133  $this->setDescriptionLanguage(new ilMDLanguageItem($row->description_language));
134  }
135  }
136  return true;
137  }
setObjType($a_type)
setDescription($a_description)
foreach($_POST as $key=> $value) $res
setObjId($a_id)
setRBACId($a_id)
$query
setDescriptionLanguage(&$lng_obj)
setParentId($a_id)
global $ilDB
setParentType($a_parent_type)
+ Here is the call graph for this function:

◆ read() [2/2]

ilMDDescription::read ( )

Definition at line 117 of file class.ilMDDescription.php.

References $ilDB, $query, $res, $row, ilDBConstants\FETCHMODE_OBJECT, ilMDBase\getMetaId(), setDescription(), setDescriptionLanguage(), ilMDBase\setObjId(), ilMDBase\setObjType(), ilMDBase\setParentId(), ilMDBase\setParentType(), ilMDBase\setRBACId(), and ilUtil\stripSlashes().

118  {
119  global $ilDB;
120 
121  include_once 'Services/Migration/DBUpdate_426/classes/class.ilMDLanguageItem.php';
122 
123  if ($this->getMetaId()) {
124  $query = "SELECT * FROM il_meta_description " .
125  "WHERE meta_description_id = " . $ilDB->quote($this->getMetaId());
126 
127  $res = $this->db->query($query);
128  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
129  $this->setRBACId($row->rbac_id);
130  $this->setObjId($row->obj_id);
131  $this->setObjType($row->obj_type);
132  $this->setParentId($row->parent_id);
133  $this->setParentType($row->parent_type);
134  $this->setDescription(ilUtil::stripSlashes($row->description));
135  $this->setDescriptionLanguage(new ilMDLanguageItem($row->description_language));
136  }
137  }
138  return true;
139  }
setObjType($a_type)
setDescription($a_description)
foreach($_POST as $key=> $value) $res
setObjId($a_id)
setRBACId($a_id)
$query
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
setDescriptionLanguage(&$lng_obj)
setParentId($a_id)
global $ilDB
setParentType($a_parent_type)
+ Here is the call graph for this function:

◆ save() [1/2]

ilMDDescription::save ( )

Definition at line 59 of file class.ilMDDescription.php.

References ilMDBase\getMetaId(), ilDBConstants\MDB2_AUTOQUERY_INSERT, and ilMDBase\setMetaId().

60  {
61  if ($this->db->autoExecute(
62  'il_meta_description',
63  $this->__getFields(),
65  )) {
66  $this->setMetaId($this->db->getLastInsertId());
67 
68  return $this->getMetaId();
69  }
70  return false;
71  }
setMetaId($a_meta_id, $a_read_data=true)
+ Here is the call graph for this function:

◆ save() [2/2]

ilMDDescription::save ( )

Definition at line 59 of file class.ilMDDescription.php.

References $ilDB, __getFields(), array, ilMDBase\getMetaId(), and ilMDBase\setMetaId().

60  {
61  global $ilDB;
62 
63  $fields = $this->__getFields();
64  $fields['meta_description_id'] = array('integer',$next_id = $ilDB->nextId('il_meta_description'));
65 
66  if ($this->db->insert('il_meta_description', $fields)) {
67  $this->setMetaId($next_id);
68  return $this->getMetaId();
69  }
70  return false;
71  }
setMetaId($a_meta_id, $a_read_data=true)
Create styles array
The data for the language used.
global $ilDB
+ Here is the call graph for this function:

◆ setDescription() [1/2]

ilMDDescription::setDescription (   $a_description)

Definition at line 36 of file class.ilMDDescription.php.

Referenced by read().

37  {
38  $this->description = $a_description;
39  }
+ Here is the caller graph for this function:

◆ setDescription() [2/2]

ilMDDescription::setDescription (   $a_description)

Definition at line 36 of file class.ilMDDescription.php.

37  {
38  $this->description = $a_description;
39  }

◆ setDescriptionLanguage() [1/2]

ilMDDescription::setDescriptionLanguage ( $lng_obj)

Definition at line 44 of file class.ilMDDescription.php.

Referenced by read().

45  {
46  if (is_object($lng_obj)) {
47  $this->description_language = $lng_obj;
48  }
49  }
+ Here is the caller graph for this function:

◆ setDescriptionLanguage() [2/2]

ilMDDescription::setDescriptionLanguage ( $lng_obj)

Definition at line 44 of file class.ilMDDescription.php.

45  {
46  if (is_object($lng_obj)) {
47  $this->description_language = $lng_obj;
48  }
49  }

◆ toXML() [1/2]

ilMDDescription::toXML ( $writer)

Definition at line 144 of file class.ilMDDescription.php.

References array, getDescription(), and getDescriptionLanguageCode().

145  {
146  $writer->xmlElement(
147  'Description',
148  array('Language' => $this->getDescriptionLanguageCode() ?
149  $this->getDescriptionLanguageCode() :
150  'en'),
151  $this->getDescription()
152  );
153  }
Create styles array
The data for the language used.
+ Here is the call graph for this function:

◆ toXML() [2/2]

ilMDDescription::toXML ( $writer)

Definition at line 146 of file class.ilMDDescription.php.

References array, getDescription(), and getDescriptionLanguageCode().

147  {
148  $writer->xmlElement('Description', array('Language' => $this->getDescriptionLanguageCode()), $this->getDescription());
149  }
Create styles array
The data for the language used.
+ Here is the call graph for this function:

◆ update() [1/2]

ilMDDescription::update ( )

Definition at line 73 of file class.ilMDDescription.php.

References $ilDB, ilMDBase\getMetaId(), and ilDBConstants\MDB2_AUTOQUERY_UPDATE.

74  {
75  global $ilDB;
76 
77  if ($this->getMetaId()) {
78  if ($this->db->autoExecute(
79  'il_meta_description',
80  $this->__getFields(),
82  "meta_description_id = " . $ilDB->quote($this->getMetaId())
83  )) {
84  return true;
85  }
86  }
87  return false;
88  }
global $ilDB
+ Here is the call graph for this function:

◆ update() [2/2]

ilMDDescription::update ( )

Definition at line 73 of file class.ilMDDescription.php.

References $ilDB, array, and ilMDBase\getMetaId().

74  {
75  global $ilDB;
76 
77  if ($this->getMetaId()) {
78  if ($this->db->update(
79  'il_meta_description',
80  $this->__getFields(),
81  array("meta_description_id" => array('integer',$this->getMetaId()))
82  )) {
83  return true;
84  }
85  }
86  return false;
87  }
Create styles array
The data for the language used.
global $ilDB
+ Here is the call graph for this function:

The documentation for this class was generated from the following file: