5 require_once(
"./Services/COPage/classes/class.ilPCBlog.php");
6 require_once(
"./Services/COPage/classes/class.ilPageContentGUI.php");
30 public function __construct($a_pg_obj, $a_content_obj, $a_hier_id, $a_pc_id =
"")
34 $this->tpl = $DIC[
"tpl"];
35 $this->ctrl = $DIC->ctrl();
36 $this->
user = $DIC->user();
37 $this->lng = $DIC->language();
47 $next_class = $this->ctrl->getNextClass($this);
50 $cmd = $this->ctrl->getCmd();
52 switch ($next_class) {
75 $tpl->setContent($a_form->getHTML());
92 $tpl->setContent($a_form->getHTML());
107 include_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
109 $form->setFormAction($ilCtrl->getFormAction($this));
111 $form->setTitle($this->lng->txt(
"cont_insert_blog"));
113 $form->setTitle($this->lng->txt(
"cont_update_blog"));
119 foreach ($blogs_ids as $blog_id) {
125 $obj->setRequired(
true);
126 $obj->setOptions($options);
127 $form->addItem($obj);
130 $form->addCommandButton(
"create_blog", $this->lng->txt(
"select"));
131 $form->addCommandButton(
"cancelCreate", $this->lng->txt(
"cancel"));
133 $obj->setValue($this->content_obj->getBlogId());
134 $form->addCommandButton(
"update", $this->lng->txt(
"select"));
135 $form->addCommandButton(
"cancelUpdate", $this->lng->txt(
"cancel"));
148 if ($form->checkInput()) {
152 $form->setValuesByPost();
153 return $this->
insert($form);
156 if ($form->checkInput()) {
158 $this->content_obj->create($this->pg_obj, $this->hier_id, $this->pc_id);
159 $this->content_obj->setData($form->getInput(
"blog_id"), $form->getInput(
"posting"));
160 $this->updated = $this->pg_obj->update();
161 if ($this->updated ===
true) {
162 $this->ctrl->returnToParent($this,
"jump" . $this->hier_id);
166 $form->setValuesByPost();
178 if ($form->checkInput()) {
182 $this->pg_obj->addHierIDs();
183 $form->setValuesByPost();
184 return $this->
edit($form);
187 if ($form->checkInput()) {
188 $this->content_obj->setData($form->getInput(
"blog_id"), $form->getInput(
"posting"));
189 $this->updated = $this->pg_obj->update();
190 if ($this->updated ===
true) {
191 $this->ctrl->returnToParent($this,
"jump" . $this->hier_id);
195 $this->pg_obj->addHierIDs();
196 $form->setValuesByPost();
217 $tpl->setContent($a_form->getHTML());
235 $tpl->setContent($a_form->getHTML());
250 include_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
252 $form->setFormAction($ilCtrl->getFormAction($this));
254 $form->setTitle($this->lng->txt(
"cont_insert_blog"));
256 $form->setTitle($this->lng->txt(
"cont_update_blog"));
262 foreach ($postings as $post) {
264 if ($post[
"author"] ==
$ilUser->getId()) {
266 $title = $post[
"title"] .
" - " .
270 $cbox->setValue($post[
"id"]);
279 $obj->setOptions($options);
280 $form->addItem($obj);
283 $blog_id->setValue($a_blog_id);
284 $form->addItem($blog_id);
287 $form->addCommandButton(
"create_blog", $this->lng->txt(
"save"));
288 $form->addCommandButton(
"cancelCreate", $this->lng->txt(
"cancel"));
290 $obj->setValue($this->content_obj->getPostings());
291 $form->addCommandButton(
"update", $this->lng->txt(
"save"));
292 $form->addCommandButton(
"cancelUpdate", $this->lng->txt(
"cancel"));
editPosting($a_blog_id, ilPropertyFormGUI $a_form=null)
Edit blog posting form.
initPostingForm($a_blog_id, $a_insert=false)
Init blog posting form.
static _lookupTitle($a_id)
lookup object title
edit(ilPropertyFormGUI $a_form=null)
Edit blog form.
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
initForm($a_insert=false)
Init blog form.
static getAllPostings($a_blog_id, $a_limit=1000, $a_offset=0)
Get all postings of blog.
static searchBlogsByAuthor($a_user_id)
Get all blogs where user has postings.
User Interface for Editing of Page Content Objects (Paragraphs, Tables, ...)
executeCommand()
execute command
insert(ilPropertyFormGUI $a_form=null)
Insert blog form.
__construct($a_pg_obj, $a_content_obj, $a_hier_id, $a_pc_id="")
Constructor public.
displayValidationError()
display validation errors
insertPosting($a_blog_id, ilPropertyFormGUI $a_form=null)
Insert new blog posting form.
__construct(Container $dic, ilPlugin $plugin)