3 declare(strict_types=1);
27 public const TYPE =
'etal';
52 public function __construct(
int $a_id = 0,
bool $a_call_by_reference =
true)
74 public function read(): void
80 public function create():
int 85 $this->data->setObjectId($this->
getId());
90 $app->setSubtitle(
'');
91 $app->setFullday($this->data->isAllDay());
94 $app->setStart($this->data->getStartDate());
95 $app->setEnd($this->data->getEndDate());
96 $app->setLocation($this->data->getLocation());
105 'Modules/EmployeeTalk',
108 'obj_id' => $this->
getId(),
109 'appointments' => $apps
113 return $this->
getId();
118 public function update():
bool 126 $app->setFullday($this->data->isAllDay());
129 $app->setStart($this->data->getStartDate());
130 $app->setEnd($this->data->getEndDate());
131 $app->setLocation($this->data->getLocation());
140 'Modules/EmployeeTalk',
143 'obj_id' => $this->
getId(),
144 'appointments' => $apps
156 self::loadRootOrgRefIdAndId();
158 return self::$root_ref_id;
166 self::loadRootOrgRefIdAndId();
168 return self::$root_id;
173 if (self::$root_ref_id === -1 || self::$root_id === -1) {
175 $ilDB = $DIC[
'ilDB'];
176 $q =
"SELECT o.obj_id, r.ref_id FROM object_data o 177 INNER JOIN object_reference r ON r.obj_id = o.obj_id 178 WHERE title = " .
$ilDB->quote(
'__TalkTemplateAdministration',
'text') .
"";
179 $set =
$ilDB->query($q);
181 self::$root_id = (
int)
$res[
"obj_id"];
182 self::$root_ref_id = (
int)
$res[
"ref_id"];
197 public static function _exists(
int $a_id,
bool $a_reference =
false, ?
string $type = null): bool
199 return parent::_exists($a_id, $a_reference,
"etal");
207 public function delete():
bool 215 'Modules/EmployeeTalk',
219 'obj_id' => $this->
getId(),
228 $trashed_node_data = $this->tree->getNodeData(
232 $node_data = $this->tree->getNodeData($this->
getRefId());
234 $result = parent::delete();
236 if ((
int) ($trashed_node_data[
'child'] ?? 0) === $this->
getRefId()) {
237 $this->tree->deleteNode(
241 } elseif ((
int) ($node_data[
'child'] ?? 0) === $this->
getRefId()) {
242 $this->tree->deleteNode(
248 if (!$parent_series->hasChildren()) {
249 $parent_series->delete();
269 $this->data = clone
$data;
278 $talkClone = parent::cloneObject($target_id, $copy_id, $omit_tree);
279 $data = $this->
getData()->setObjectId($talkClone->getId());
281 $talkClone->setData(
$data);
__construct(int $a_id=0, bool $a_call_by_reference=true)
Apointment templates are used for automatic generated apointments.
create()
note: title, description and type should be set when this function is called
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
setData(EmployeeTalk $data)
setOfflineStatus(bool $status)
__construct(Container $dic, ilPlugin $plugin)
static loadRootOrgRefIdAndId()
getLongDescription()
get object long description (stored in object_description)
static _exists(int $a_id, bool $a_reference=false, ?string $type=null)