39 public function setTitle(
string $a_title): void
41 $this->title = $a_title;
61 $this->created = $a_date;
71 $this->author = $a_id;
81 $this->approved = $a_status;
95 $this->withdrawn = $a_date;
110 bool $a_import =
false 114 $id =
$ilDB->nextId(
"il_blog_posting");
127 $query =
"INSERT INTO il_blog_posting (id, title, blog_id, created, author, approved, last_withdrawn)" .
129 $ilDB->quote($this->
getId(),
"integer") .
"," .
132 $ilDB->quote($created,
"timestamp") .
"," .
135 $ilDB->quote($withdrawn,
"timestamp") .
")";
139 parent::create($a_import);
145 bool $a_validate =
true,
146 bool $a_no_history =
false,
147 bool $a_notify =
true,
148 string $a_notify_action =
"update" 156 $query =
"UPDATE il_blog_posting SET" .
160 ",last_withdrawn =" .
$ilDB->quote($withdrawn,
"timestamp") .
161 " WHERE id = " .
$ilDB->quote($this->
getId(),
"integer");
164 $ret = parent::update($a_validate, $a_no_history);
180 $query =
"SELECT * FROM il_blog_posting" .
181 " WHERE id = " .
$ilDB->quote($this->
getId(),
"integer");
183 $rec =
$ilDB->fetchAssoc($set);
189 if ($rec[
"approved"]) {
203 $this->approved =
false;
211 public function delete():
void 222 $query =
"DELETE FROM il_blog_posting" .
223 " WHERE id = " .
$ilDB->quote($this->
getId(),
"integer");
237 $this->
update(
true,
false,
false);
256 $ilDB = $DIC->database();
258 $query =
"SELECT * FROM il_blog_posting" .
259 " WHERE blog_id = " .
$ilDB->quote($a_blog_id,
"integer");
261 while ($rec =
$ilDB->fetchAssoc($set)) {
263 $md_obj =
new ilMD($a_blog_id, $rec[
"id"],
"blp");
264 if (is_object($md_section = $md_obj->getGeneral())) {
265 foreach ($md_section->getKeywordIds() as
$id) {
266 $md_key = $md_section->getKeyword(
$id);
281 $ilDB = $DIC->database();
283 $query =
"SELECT blog_id FROM il_blog_posting" .
284 " WHERE id = " .
$ilDB->quote($a_posting_id,
"integer");
286 if ($rec =
$ilDB->fetchAssoc($set)) {
287 return (
int) $rec[
"blog_id"];
302 $ilDB = $DIC->database();
304 $pages = parent::getAllPages(
"blp", $a_blog_id);
307 $ilDB->setLimit($a_limit, $a_offset);
310 $query =
"SELECT * FROM il_blog_posting" .
311 " WHERE blog_id = " .
$ilDB->quote($a_blog_id,
"integer") .
312 " ORDER BY created DESC";
315 while ($rec =
$ilDB->fetchAssoc($set)) {
316 if (isset($pages[$rec[
"id"]])) {
317 $post[$rec[
"id"]] = $pages[$rec[
"id"]];
318 $post[$rec[
"id"]][
"title"] = $rec[
"title"];
320 $post[$rec[
"id"]][
"author"] = $rec[
"author"];
321 $post[$rec[
"id"]][
"approved"] = (bool) $rec[
"approved"];
324 foreach (self::getPageContributors(
"blp", $rec[
"id"]) as $editor) {
325 if ($editor[
"user_id"] != $rec[
"author"]) {
326 $post[$rec[
"id"]][
"editors"][] = $editor[
"user_id"];
344 $ilDB = $DIC->database();
346 $query =
"SELECT id FROM il_blog_posting" .
347 " WHERE blog_id = " .
$ilDB->quote($a_blog_id,
"integer") .
348 " AND id = " .
$ilDB->quote($a_posting_id,
"integer");
350 if ($rec =
$ilDB->fetchAssoc($set)) {
362 $data = self::getAllPostings($a_blog_id, 1);
375 bool $a_is_in_workspace =
false 377 $this->blog_node_id = $a_id;
378 $this->blog_node_is_wsp = $a_is_in_workspace;
389 $ilDB = $DIC->database();
393 $sql =
"SELECT DISTINCT(blog_id)" .
394 " FROM il_blog_posting" .
395 " WHERE author = " .
$ilDB->quote($a_user_id);
396 $set =
$ilDB->query($sql);
397 while ($row =
$ilDB->fetchAssoc($set)) {
398 $ids[] = (
int) $row[
"blog_id"];
408 $snippet = str_replace(array(
'<br/>',
'<br />',
'</p>',
'</div>'),
"\n", $snippet);
410 return trim(strip_tags($snippet));
420 if (!is_object($md_section = $md_obj->getGeneral())) {
421 $md_section = $md_obj->addGeneral();
434 $ulang =
$ilUser->getLanguage();
435 $keywords = array($ulang => $keywords);
451 bool $a_update =
false 482 $default_visibility = $news_set->get(
"default_visibility",
"users");
485 $news_item->setContext(
492 $news_item->setVisibility($default_visibility);
496 $news_item->setUserId(
$ilUser->getId());
501 $news_item->setTitle($this->
getTitle());
504 ?
"blog_news_posting_updated" 505 :
"blog_news_posting_published";
511 $contributors = array();
513 $contributors[] = $user[
"user_id"];
515 if (count($contributors) > 1 || !in_array($this->
getAuthor(), $contributors)) {
518 foreach ($contributors as $user_id) {
523 $content .=
"\n" . sprintf(
$lng->
txt(
"blog_news_posting_authors"), implode(
", ", $authors));
526 $news_item->setContentTextIsLangVar(
false);
527 $news_item->setContent($content);
530 $news_item->setContentLong($snippet);
532 if (!$news_item->getId()) {
533 $news_item->create();
535 $news_item->update(
true);
548 $db = $DIC->database();
550 $set =
$db->
query(
"SELECT $a_field FROM il_blog_posting " .
551 " WHERE id = " .
$db->
quote($a_posting_id,
"integer"));
554 return $rec[$a_field] ?? null;
559 return (
string) self::lookup(
"title", $a_posting_id);
getActive(bool $a_check_scheduled_activation=false)
getNotificationAbstract()
static lookupTitle(int $a_posting_id)
static getLastPost(int $a_blog_id)
Get newest posting for blog.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static deleteNewsOfContext(int $a_context_obj_id, string $a_context_obj_type, int $a_context_sub_obj_id=0, string $a_context_sub_obj_type="")
Delete all news of a context.
static searchBlogsByAuthor(int $a_user_id)
Get all blogs where user has postings.
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link="", bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
setCreated(ilDateTime $a_date)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
static getLastNewsIdForContext(int $a_context_obj_id, string $a_context_obj_type, int $a_context_sub_obj_id=0, string $a_context_sub_obj_type="", bool $a_only_today=false)
Get last news id of news set related to a certain context.
static getAllPostings(int $a_blog_id, int $a_limit=1000, int $a_offset=0)
Get all postings of blog.
fetchAssoc(ilDBStatement $statement)
static exists(int $a_blog_id, int $a_posting_id)
Checks whether a posting exists.
update(bool $a_validate=true, bool $a_no_history=false, bool $a_notify=true, string $a_notify_action="update")
setTitle(string $a_title)
quote($value, string $type)
static lookup(string $a_field, string $a_posting_id)
Lookup posting property.
getWithdrawn()
Get last withdrawal date.
static now()
Return current timestamp in Y-m-d H:i:s format.
handleNews(bool $a_update=false)
Handle news item.
static updateKeywords(ilMDGeneral $a_md_section, array $a_keywords)
static deleteAllBlogPostings(int $a_blog_id)
Delete all postings for blog.
setApproved(bool $a_status)
updateKeywords(array $keywords)
static sendNotification(string $a_action, bool $a_in_wsp, int $a_blog_node_id, int $a_posting_id, ?string $a_comment=null)
const NEWS_NOTICE
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
static lookupKeywords(int $a_rbac_id, int $a_obj_id, bool $a_return_ids=false)
query(string $query)
Run a (read-only) Query on the database.
setBlogNodeId(int $a_id, bool $a_is_in_workspace=false)
Set blog node id (needed for notification)
static lookupBlogId(int $a_posting_id)
A news item can be created by different sources.
addUpdateListener(object $a_object, string $a_method, $a_parameters="")
create(bool $a_import=false)
Create new blog posting.
setWithdrawn(ilDateTime $a_date)
Set last withdrawal date.
static getSnippet(int $a_id, bool $a_truncate=false, int $a_truncate_length=500, string $a_truncate_sign="...", bool $a_include_picture=false, int $a_picture_width=144, int $a_picture_height=144, string $a_export_directory=null)
Get first text paragraph of page.
static getKeywords(int $a_obj_id, int $a_posting_id)
setActive(bool $a_active)