3 // This file is part of Moodle - http://moodle.org/
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
19 * Core global functions for Blog.
23 * @copyright 2009 Nicolas Connault
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 defined('MOODLE_INTERNAL') || die();
30 * Library of functions and constants for blog
32 require_once($CFG->dirroot .'/blog/rsslib.php');
33 require_once($CFG->dirroot.'/tag/lib.php');
36 * User can edit a blog entry if this is their own blog entry and they have
37 * the capability moodle/blog:create, or if they have the capability
38 * moodle/blog:manageentries.
40 * This also applies to deleting of entries.
42 function blog_user_can_edit_entry($blogentry) {
45 $sitecontext = get_context_instance(CONTEXT_SYSTEM);
47 if (has_capability('moodle/blog:manageentries', $sitecontext)) {
48 return true; // can edit any blog entry
51 if ($blogentry->userid == $USER->id && has_capability('moodle/blog:create', $sitecontext)) {
52 return true; // can edit own when having blog:create capability
60 * Checks to see if a user can view the blogs of another user.
61 * Only blog level is checked here, the capabilities are enforced
64 function blog_user_can_view_user_entry($targetuserid, $blogentry=null) {
65 global $CFG, $USER, $DB;
67 if (empty($CFG->bloglevel)) {
68 return false; // blog system disabled
71 if (isloggedin() && $USER->id == $targetuserid) {
72 return true; // can view own entries in any case
75 $sitecontext = get_context_instance(CONTEXT_SYSTEM);
76 if (has_capability('moodle/blog:manageentries', $sitecontext)) {
77 return true; // can manage all entries
80 // coming for 1 entry, make sure it's not a draft
81 if ($blogentry && $blogentry->publishstate == 'draft' && !has_capability('moodle/blog:viewdrafts', $sitecontext)) {
82 return false; // can not view draft of others
85 // coming for 1 entry, make sure user is logged in, if not a public blog
86 if ($blogentry && $blogentry->publishstate != 'public' && !isloggedin()) {
90 switch ($CFG->bloglevel) {
91 case BLOG_GLOBAL_LEVEL:
96 if (isloggedin()) { // not logged in viewers forbidden
102 case BLOG_USER_LEVEL:
104 $personalcontext = get_context_instance(CONTEXT_USER, $targetuserid);
105 return has_capability('moodle/user:readuserblogs', $personalcontext);
112 * remove all associations for the blog entries of a particular user
113 * @param int userid - id of user whose blog associations will be deleted
115 function blog_remove_associations_for_user($userid) {
117 throw new coding_exception('function blog_remove_associations_for_user() is not finished');
119 $blogentries = blog_fetch_entries(array('user' => $userid), 'lasmodified DESC');
120 foreach ($blogentries as $entry) {
121 if (blog_user_can_edit_entry($entry)) {
122 blog_remove_associations_for_entry($entry->id);
129 * remove all associations for the blog entries of a particular course
130 * @param int courseid - id of user whose blog associations will be deleted
132 function blog_remove_associations_for_course($courseid) {
134 $context = get_context_instance(CONTEXT_COURSE, $courseid);
135 $DB->delete_records('blog_association', array('contextid' => $context->id));
139 * Given a record in the {blog_external} table, checks the blog's URL
140 * for new entries not yet copied into Moodle.
142 * @param object $externalblog
143 * @return boolean False if the Feed is invalid
145 function blog_sync_external_entries($externalblog) {
147 require_once($CFG->libdir . '/simplepie/moodle_simplepie.php');
149 $rssfile = new moodle_simplepie_file($externalblog->url);
150 $filetest = new SimplePie_Locator($rssfile);
152 if (!$filetest->is_feed($rssfile)) {
153 $externalblog->failedlastsync = 1;
154 $DB->update_record('blog_external', $externalblog);
156 } else if (!empty($externalblog->failedlastsync)) {
157 $externalblog->failedlastsync = 0;
158 $DB->update_record('blog_external', $externalblog);
161 // Delete all blog entries associated with this external blog
162 blog_delete_external_entries($externalblog);
164 $rss = new moodle_simplepie($externalblog->url);
166 if (empty($rss->data)) {
170 foreach ($rss->get_items() as $entry) {
171 // If filtertags are defined, use them to filter the entries by RSS category
172 if (!empty($externalblog->filtertags)) {
173 $containsfiltertag = false;
174 $categories = $entry->get_categories();
175 $filtertags = explode(',', $externalblog->filtertags);
176 $filtertags = array_map('trim', $filtertags);
177 $filtertags = array_map('strtolower', $filtertags);
179 foreach ($categories as $category) {
180 if (in_array(trim(strtolower($category->term)), $filtertags)) {
181 $containsfiltertag = true;
185 if (!$containsfiltertag) {
190 $newentry = new stdClass();
191 $newentry->userid = $externalblog->userid;
192 $newentry->module = 'blog_external';
193 $newentry->content = $externalblog->id;
194 $newentry->uniquehash = $entry->get_permalink();
195 $newentry->publishstate = 'site';
196 $newentry->format = FORMAT_HTML;
197 $newentry->subject = $entry->get_title();
198 $newentry->summary = $entry->get_description();
200 //our DB doesnt allow null creation or modified timestamps so check the external blog didnt supply one
201 $entrydate = $entry->get_date('U');
202 if (empty($entrydate)) {
203 $newentry->created = time();
204 $newentry->lastmodified = time();
206 $newentry->created = $entrydate;
207 $newentry->lastmodified = $entrydate;
210 $textlib = textlib_get_instance();
211 if ($textlib->strlen($newentry->uniquehash) > 255) {
212 // The URL for this item is too long for the field. Rather than add
213 // the entry without the link we will skip straight over it.
214 // RSS spec says recommended length 500, we use 255.
215 debugging('External blog entry skipped because of oversized URL', DEBUG_DEVELOPER);
219 $id = $DB->insert_record('post', $newentry);
222 if ($tags = tag_get_tags_array('blog_external', $externalblog->id)) {
223 tag_set('post', $id, $tags);
227 $DB->update_record('blog_external', array('id' => $externalblog->id, 'timefetched' => mktime()));
231 * Given an external blog object, deletes all related blog entries from the post table.
232 * NOTE: The external blog's id is saved as post.content, a field that is not oterhwise used by blog entries.
233 * @param object $externablog
235 function blog_delete_external_entries($externalblog) {
237 require_capability('moodle/blog:manageexternal', get_context_instance(CONTEXT_SYSTEM));
238 $DB->delete_records_select('post',
239 "module='blog_external' AND " . $DB->sql_compare_text('content') . " = ?",
240 array($externalblog->id));
244 * Returns a URL based on the context of the current page.
245 * This URL points to blog/index.php and includes filter parameters appropriate for the current page.
247 * @param stdclass $context
250 function blog_get_context_url($context=null) {
253 $viewblogentriesurl = new moodle_url('/blog/index.php');
255 if (empty($context)) {
257 $context = $PAGE->context;
260 // Change contextlevel to SYSTEM if viewing the site course
261 if ($context->contextlevel == CONTEXT_COURSE && $context->instanceid == SITEID) {
262 $context->contextlevel = CONTEXT_SYSTEM;
268 switch ($context->contextlevel) {
271 case CONTEXT_COURSECAT:
274 $filterparam = 'courseid';
275 $strlevel = get_string('course');
278 $filterparam = 'modid';
279 $strlevel = print_context_name($context);
282 $filterparam = 'userid';
283 $strlevel = get_string('user');
287 if (!empty($filterparam)) {
288 $viewblogentriesurl->param($filterparam, $context->instanceid);
291 return $viewblogentriesurl;
295 * This function checks that blogs are enabled, and that the user can see blogs at all
298 function blog_is_enabled_for_user() {
300 //return (!empty($CFG->bloglevel) && $CFG->bloglevel <= BLOG_GLOBAL_LEVEL && isloggedin() && !isguestuser());
301 return (!empty($CFG->bloglevel) && (isloggedin() || ($CFG->bloglevel == BLOG_GLOBAL_LEVEL)));
305 * This function gets all of the options available for the current user in respect
308 * It loads the following if applicable:
309 * - Module options {@see blog_get_options_for_module}
310 * - Course options {@see blog_get_options_for_course}
311 * - User specific options {@see blog_get_options_for_user}
312 * - General options (BLOG_LEVEL_GLOBAL)
314 * @param moodle_page $page The page to load for (normally $PAGE)
315 * @param stdClass $userid Load for a specific user
316 * @return array An array of options organised by type.
318 function blog_get_all_options(moodle_page $page, stdClass $userid = null) {
319 global $CFG, $DB, $USER;
323 // If blogs are enabled and the user is logged in and not a guest
324 if (blog_is_enabled_for_user()) {
325 // If the context is the user then assume we want to load for the users context
326 if (is_null($userid) && $page->context->contextlevel == CONTEXT_USER) {
327 $userid = $page->context->instanceid;
329 // Check the userid var
330 if (!is_null($userid) && $userid!==$USER->id) {
331 // Load the user from the userid... it MUST EXIST throw a wobbly if it doesn't!
332 $user = $DB->get_record('user', array('id'=>$userid), '*', MUST_EXIST);
337 if ($CFG->useblogassociations && $page->cm !== null) {
338 // Load for the module associated with the page
339 $options[CONTEXT_MODULE] = blog_get_options_for_module($page->cm, $user);
340 } else if ($CFG->useblogassociations && $page->course->id != SITEID) {
341 // Load the options for the course associated with the page
342 $options[CONTEXT_COURSE] = blog_get_options_for_course($page->course, $user);
345 // Get the options for the user
346 if ($user !== null) {
347 // Load for the requested user
348 $options[CONTEXT_USER+1] = blog_get_options_for_user($user);
350 // Load for the current user
351 $options[CONTEXT_USER] = blog_get_options_for_user();
354 // If blog level is global then display a link to view all site entries
355 if (!empty($CFG->bloglevel) && $CFG->bloglevel >= BLOG_GLOBAL_LEVEL && has_capability('moodle/blog:view', get_context_instance(CONTEXT_SYSTEM))) {
356 $options[CONTEXT_SYSTEM] = array('viewsite' => array(
357 'string' => get_string('viewsiteentries', 'blog'),
358 'link' => new moodle_url('/blog/index.php')
362 // Return the options
367 * Get all of the blog options that relate to the passed user.
369 * If no user is passed the current user is assumed.
371 * @staticvar array $useroptions Cache so we don't have to regenerate multiple times
372 * @param stdClass $user
373 * @return array The array of options for the requested user
375 function blog_get_options_for_user(stdClass $user=null) {
378 static $useroptions = array();
381 // Blogs must be enabled and the user must be logged in
382 if (!blog_is_enabled_for_user()) {
386 // Sort out the user var
387 if ($user === null || $user->id == $USER->id) {
389 $iscurrentuser = true;
391 $iscurrentuser = false;
394 // If we've already generated serve from the cache
395 if (array_key_exists($user->id, $useroptions)) {
396 return $useroptions[$user->id];
399 $sitecontext = get_context_instance(CONTEXT_SYSTEM);
400 $canview = has_capability('moodle/blog:view', $sitecontext);
402 if (!$iscurrentuser && $canview && ($CFG->bloglevel >= BLOG_SITE_LEVEL)) {
403 // Not the current user, but we can view and its blogs are enabled for SITE or GLOBAL
404 $options['userentries'] = array(
405 'string' => get_string('viewuserentries', 'blog', fullname($user)),
406 'link' => new moodle_url('/blog/index.php', array('userid'=>$user->id))
409 // It's the current user
411 // We can view our own blogs .... BIG surprise
412 $options['view'] = array(
413 'string' => get_string('viewallmyentries', 'blog'),
414 'link' => new moodle_url('/blog/index.php', array('userid'=>$USER->id))
417 if (has_capability('moodle/blog:create', $sitecontext)) {
418 // We can add to our own blog
419 $options['add'] = array(
420 'string' => get_string('addnewentry', 'blog'),
421 'link' => new moodle_url('/blog/edit.php', array('action'=>'add'))
426 $useroptions[$user->id] = $options;
427 // Return the options
432 * Get the blog options that relate to the given course for the given user.
434 * @staticvar array $courseoptions A cache so we can save regenerating multiple times
435 * @param stdClass $course The course to load options for
436 * @param stdClass $user The user to load options for null == current user
437 * @return array The array of options
439 function blog_get_options_for_course(stdClass $course, stdClass $user=null) {
442 static $courseoptions = array();
446 // User must be logged in and blogs must be enabled
447 if (!blog_is_enabled_for_user()) {
451 // Check that the user can associate with the course
452 $sitecontext = get_context_instance(CONTEXT_SYSTEM);
453 if (!has_capability('moodle/blog:associatecourse', $sitecontext)) {
456 // Generate the cache key
457 $key = $course->id.':';
463 // Serve from the cache if we've already generated for this course
464 if (array_key_exists($key, $courseoptions)) {
465 return $courseoptions[$key];
468 if (has_capability('moodle/blog:view', get_context_instance(CONTEXT_COURSE, $course->id))) {
470 if ($CFG->bloglevel >= BLOG_SITE_LEVEL) {
471 // View entries about this course
472 $options['courseview'] = array(
473 'string' => get_string('viewcourseblogs', 'blog'),
474 'link' => new moodle_url('/blog/index.php', array('courseid'=>$course->id))
477 // View MY entries about this course
478 $options['courseviewmine'] = array(
479 'string' => get_string('viewmyentriesaboutcourse', 'blog'),
480 'link' => new moodle_url('/blog/index.php', array('courseid'=>$course->id, 'userid'=>$USER->id))
482 if (!empty($user) && ($CFG->bloglevel >= BLOG_SITE_LEVEL)) {
483 // View the provided users entries about this course
484 $options['courseviewuser'] = array(
485 'string' => get_string('viewentriesbyuseraboutcourse', 'blog', fullname($user)),
486 'link' => new moodle_url('/blog/index.php', array('courseid'=>$course->id, 'userid'=>$user->id))
491 if (has_capability('moodle/blog:create', $sitecontext)) {
492 // We can blog about this course
493 $options['courseadd'] = array(
494 'string' => get_string('blogaboutthiscourse', 'blog', get_string('course')),
495 'link' => new moodle_url('/blog/edit.php', array('action'=>'add', 'courseid'=>$course->id))
500 // Cache the options for this course
501 $courseoptions[$key] = $options;
502 // Return the options
507 * Get the blog options relating to the given module for the given user
509 * @staticvar array $moduleoptions Cache
510 * @param stdClass $module The module to get options for
511 * @param stdClass $user The user to get options for null == currentuser
514 function blog_get_options_for_module(stdClass $module, stdClass $user=null) {
517 static $moduleoptions = array();
520 // User must be logged in, blogs must be enabled
521 if (!blog_is_enabled_for_user()) {
525 // Check the user can associate with the module
526 $sitecontext = get_context_instance(CONTEXT_SYSTEM);
527 if (!has_capability('moodle/blog:associatemodule', $sitecontext)) {
531 // Generate the cache key
532 $key = $module->id.':';
538 if (array_key_exists($key, $moduleoptions)) {
539 // Serve from the cache so we don't have to regenerate
540 return $moduleoptions[$module->id];
543 if (has_capability('moodle/blog:view', get_context_instance(CONTEXT_MODULE, $module->id))) {
545 if ($CFG->bloglevel >= BLOG_SITE_LEVEL) {
546 // View all entries about this module
548 $a->type = $module->modname;
549 $options['moduleview'] = array(
550 'string' => get_string('viewallmodentries', 'blog', $a),
551 'link' => new moodle_url('/blog/index.php', array('modid'=>$module->id))
554 // View MY entries about this module
555 $options['moduleviewmine'] = array(
556 'string' => get_string('viewmyentriesaboutmodule', 'blog', $module->modname),
557 'link' => new moodle_url('/blog/index.php', array('modid'=>$module->id, 'userid'=>$USER->id))
559 if (!empty($user) && ($CFG->bloglevel >= BLOG_SITE_LEVEL)) {
560 // View the given users entries about this module
562 $a->mod = $module->modname;
563 $a->user = fullname($user);
564 $options['moduleviewuser'] = array(
565 'string' => get_string('blogentriesbyuseraboutmodule', 'blog', $a),
566 'link' => new moodle_url('/blog/index.php', array('modid'=>$module->id, 'userid'=>$user->id))
571 if (has_capability('moodle/blog:create', $sitecontext)) {
572 // The user can blog about this module
573 $options['moduleadd'] = array(
574 'string' => get_string('blogaboutthismodule', 'blog', $module->modname),
575 'link' => new moodle_url('/blog/edit.php', array('action'=>'add', 'modid'=>$module->id))
579 $moduleoptions[$key] = $options;
580 // Return the options
585 * This function encapsulates all the logic behind the complex
586 * navigation, titles and headings of the blog listing page, depending
587 * on URL params. It looks at URL params and at the current context level.
588 * It builds and returns an array containing:
590 * 1. heading: The heading displayed above the blog entries
591 * 2. stradd: The text to be used as the "Add entry" link
592 * 3. strview: The text to be used as the "View entries" link
593 * 4. url: The moodle_url object used as the base for add and view links
594 * 5. filters: An array of parameters used to filter blog listings. Used by index.php and the Recent blogs block
596 * All other variables are set directly in $PAGE
598 * It uses the current URL to build these variables.
599 * A number of mutually exclusive use cases are used to structure this function.
603 function blog_get_headers($courseid=null, $groupid=null, $userid=null, $tagid=null) {
604 global $CFG, $PAGE, $DB, $USER;
606 $id = optional_param('id', null, PARAM_INT);
607 $tag = optional_param('tag', null, PARAM_NOTAGS);
608 $tagid = optional_param('tagid', $tagid, PARAM_INT);
609 $userid = optional_param('userid', $userid, PARAM_INT);
610 $modid = optional_param('modid', null, PARAM_INT);
611 $entryid = optional_param('entryid', null, PARAM_INT);
612 $groupid = optional_param('groupid', $groupid, PARAM_INT);
613 $courseid = optional_param('courseid', $courseid, PARAM_INT);
614 $search = optional_param('search', null, PARAM_RAW);
615 $action = optional_param('action', null, PARAM_ALPHA);
616 $confirm = optional_param('confirm', false, PARAM_BOOL);
618 // Ignore userid when action == add
619 if ($action == 'add' && $userid) {
621 $PAGE->url->remove_params(array('userid'));
622 } else if ($action == 'add' && $entryid) {
624 $PAGE->url->remove_params(array('entryid'));
627 $headers = array('title' => '', 'heading' => '', 'cm' => null, 'filters' => array());
629 $blogurl = new moodle_url('/blog/index.php');
631 // If the title is not yet set, it's likely that the context isn't set either, so skip this part
632 $pagetitle = $PAGE->title;
633 if (!empty($pagetitle)) {
634 $contexturl = blog_get_context_url();
636 // Look at the context URL, it may have additional params that are not in the current URL
637 if (!$blogurl->compare($contexturl)) {
638 $blogurl = $contexturl;
639 if (empty($courseid)) {
640 $courseid = $blogurl->param('courseid');
643 $modid = $blogurl->param('modid');
648 $headers['stradd'] = get_string('addnewentry', 'blog');
649 $headers['strview'] = null;
651 $site = $DB->get_record('course', array('id' => SITEID));
652 $sitecontext = get_context_instance(CONTEXT_SYSTEM);
653 // Common Lang strings
654 $strparticipants = get_string("participants");
655 $strblogentries = get_string("blogentries", 'blog');
657 // Prepare record objects as needed
658 if (!empty($courseid)) {
659 $headers['filters']['course'] = $courseid;
660 $course = $DB->get_record('course', array('id' => $courseid));
663 if (!empty($userid)) {
664 $headers['filters']['user'] = $userid;
665 $user = $DB->get_record('user', array('id' => $userid));
668 if (!empty($groupid)) { // groupid always overrides courseid
669 $headers['filters']['group'] = $groupid;
670 $group = $DB->get_record('groups', array('id' => $groupid));
671 $course = $DB->get_record('course', array('id' => $group->courseid));
674 $PAGE->set_pagelayout('standard');
676 if (!empty($modid) && $CFG->useblogassociations && has_capability('moodle/blog:associatemodule', $sitecontext)) { // modid always overrides courseid, so the $course object may be reset here
677 $headers['filters']['module'] = $modid;
678 // A groupid param may conflict with this coursemod's courseid. Ignore groupid in that case
679 $courseid = $DB->get_field('course_modules', 'course', array('id'=>$modid));
680 $course = $DB->get_record('course', array('id' => $courseid));
681 $cm = $DB->get_record('course_modules', array('id' => $modid));
682 $cm->modname = $DB->get_field('modules', 'name', array('id' => $cm->module));
683 $cm->name = $DB->get_field($cm->modname, 'name', array('id' => $cm->instance));
685 $a->type = get_string('modulename', $cm->modname);
686 $PAGE->set_cm($cm, $course);
687 $headers['stradd'] = get_string('blogaboutthis', 'blog', $a);
688 $headers['strview'] = get_string('viewallmodentries', 'blog', $a);
691 // Case 1: No entry, mod, course or user params: all site entries to be shown (filtered by search and tag/tagid)
692 // Note: if action is set to 'add' or 'edit', we do this at the end
693 if (empty($entryid) && empty($modid) && empty($courseid) && empty($userid) && !in_array($action, array('edit', 'add'))) {
694 $PAGE->navbar->add($strblogentries, $blogurl);
695 $PAGE->set_title("$site->shortname: " . get_string('blog', 'blog'));
696 $PAGE->set_heading("$site->shortname: " . get_string('blog', 'blog'));
697 $headers['heading'] = get_string('siteblog', 'blog', $site->shortname);
698 // $headers['strview'] = get_string('viewsiteentries', 'blog');
701 // Case 2: only entryid is requested, ignore all other filters. courseid is used to give more contextual information
702 if (!empty($entryid)) {
703 $headers['filters']['entry'] = $entryid;
704 $sql = 'SELECT u.* FROM {user} u, {post} p WHERE p.id = ? AND p.userid = u.id';
705 $user = $DB->get_record_sql($sql, array($entryid));
706 $entry = $DB->get_record('post', array('id' => $entryid));
708 $blogurl->param('userid', $user->id);
710 if (!empty($course)) {
711 $mycourseid = $course->id;
712 $blogurl->param('courseid', $mycourseid);
714 $mycourseid = $site->id;
717 $PAGE->navbar->add($strblogentries, $blogurl);
719 $blogurl->remove_params('userid');
720 $PAGE->navbar->add($entry->subject, $blogurl);
722 $PAGE->set_title("$site->shortname: " . fullname($user) . ": $entry->subject");
723 $PAGE->set_heading("$site->shortname: " . fullname($user) . ": $entry->subject");
724 $headers['heading'] = get_string('blogentrybyuser', 'blog', fullname($user));
726 // We ignore tag and search params
727 if (empty($action) || !$CFG->useblogassociations) {
728 $headers['url'] = $blogurl;
733 // Case 3: A user's blog entries
734 if (!empty($userid) && empty($entryid) && ((empty($courseid) && empty($modid)) || !$CFG->useblogassociations)) {
735 $blogurl->param('userid', $userid);
736 $PAGE->set_title("$site->shortname: " . fullname($user) . ": " . get_string('blog', 'blog'));
737 $PAGE->set_heading("$site->shortname: " . fullname($user) . ": " . get_string('blog', 'blog'));
738 $headers['heading'] = get_string('userblog', 'blog', fullname($user));
739 $headers['strview'] = get_string('viewuserentries', 'blog', fullname($user));
743 // Case 4: No blog associations, no userid
744 if (!$CFG->useblogassociations && empty($userid) && !in_array($action, array('edit', 'add'))) {
745 $PAGE->set_title("$site->shortname: " . get_string('blog', 'blog'));
746 $PAGE->set_heading("$site->shortname: " . get_string('blog', 'blog'));
747 $headers['heading'] = get_string('siteblog', 'blog', $site->shortname);
750 // Case 5: Blog entries associated with an activity by a specific user (courseid ignored)
751 if (!empty($userid) && !empty($modid) && empty($entryid)) {
752 $blogurl->param('userid', $userid);
753 $blogurl->param('modid', $modid);
755 // Course module navigation is handled by build_navigation as the second param
756 $headers['cm'] = $cm;
757 $PAGE->navbar->add(fullname($user), "$CFG->wwwroot/user/view.php?id=$user->id");
758 $PAGE->navbar->add($strblogentries, $blogurl);
760 $PAGE->set_title("$site->shortname: $cm->name: " . fullname($user) . ': ' . get_string('blogentries', 'blog'));
761 $PAGE->set_heading("$site->shortname: $cm->name: " . fullname($user) . ': ' . get_string('blogentries', 'blog'));
764 $a->user = fullname($user);
766 $a->type = get_string('modulename', $cm->modname);
767 $headers['heading'] = get_string('blogentriesbyuseraboutmodule', 'blog', $a);
768 $headers['stradd'] = get_string('blogaboutthis', 'blog', $a);
769 $headers['strview'] = get_string('viewallmodentries', 'blog', $a);
772 // Case 6: Blog entries associated with a course by a specific user
773 if (!empty($userid) && !empty($courseid) && empty($modid) && empty($entryid)) {
774 $blogurl->param('userid', $userid);
775 $blogurl->param('courseid', $courseid);
777 $PAGE->navbar->add($strblogentries, $blogurl);
779 $PAGE->set_title("$site->shortname: $course->shortname: " . fullname($user) . ': ' . get_string('blogentries', 'blog'));
780 $PAGE->set_heading("$site->shortname: $course->shortname: " . fullname($user) . ': ' . get_string('blogentries', 'blog'));
783 $a->user = fullname($user);
784 $a->course = $course->fullname;
785 $a->type = get_string('course');
786 $headers['heading'] = get_string('blogentriesbyuseraboutcourse', 'blog', $a);
787 $headers['stradd'] = get_string('blogaboutthis', 'blog', $a);
788 $headers['strview'] = get_string('viewblogentries', 'blog', $a);
790 // Remove the userid from the URL to inform the blog_menu block correctly
791 $blogurl->remove_params(array('userid'));
794 // Case 7: Blog entries by members of a group, associated with that group's course
795 if (!empty($groupid) && empty($modid) && empty($entryid)) {
796 $blogurl->param('courseid', $course->id);
798 $PAGE->navbar->add($strblogentries, $blogurl);
799 $blogurl->remove_params(array('courseid'));
800 $blogurl->param('groupid', $groupid);
801 $PAGE->navbar->add($group->name, $blogurl);
803 $PAGE->set_title("$site->shortname: $course->shortname: " . get_string('blogentries', 'blog') . ": $group->name");
804 $PAGE->set_heading("$site->shortname: $course->shortname: " . get_string('blogentries', 'blog') . ": $group->name");
807 $a->group = $group->name;
808 $a->course = $course->fullname;
809 $a->type = get_string('course');
810 $headers['heading'] = get_string('blogentriesbygroupaboutcourse', 'blog', $a);
811 $headers['stradd'] = get_string('blogaboutthis', 'blog', $a);
812 $headers['strview'] = get_string('viewblogentries', 'blog', $a);
815 // Case 8: Blog entries by members of a group, associated with an activity in that course
816 if (!empty($groupid) && !empty($modid) && empty($entryid)) {
817 $headers['cm'] = $cm;
818 $blogurl->param('modid', $modid);
819 $PAGE->navbar->add($strblogentries, $blogurl);
821 $blogurl->param('groupid', $groupid);
822 $PAGE->navbar->add($group->name, $blogurl);
824 $PAGE->set_title("$site->shortname: $course->shortname: $cm->name: " . get_string('blogentries', 'blog') . ": $group->name");
825 $PAGE->set_heading("$site->shortname: $course->shortname: $cm->name: " . get_string('blogentries', 'blog') . ": $group->name");
828 $a->group = $group->name;
830 $a->type = get_string('modulename', $cm->modname);
831 $headers['heading'] = get_string('blogentriesbygroupaboutmodule', 'blog', $a);
832 $headers['stradd'] = get_string('blogaboutthis', 'blog', $a);
833 $headers['strview'] = get_string('viewallmodentries', 'blog', $a);
837 // Case 9: All blog entries associated with an activity
838 if (!empty($modid) && empty($userid) && empty($groupid) && empty($entryid)) {
839 $PAGE->set_cm($cm, $course);
840 $blogurl->param('modid', $modid);
841 $PAGE->navbar->add($strblogentries, $blogurl);
842 $PAGE->set_title("$site->shortname: $course->shortname: $cm->name: " . get_string('blogentries', 'blog'));
843 $PAGE->set_heading("$site->shortname: $course->shortname: $cm->name: " . get_string('blogentries', 'blog'));
844 $headers['heading'] = get_string('blogentriesabout', 'blog', $cm->name);
846 $a->type = get_string('modulename', $cm->modname);
847 $headers['stradd'] = get_string('blogaboutthis', 'blog', $a);
848 $headers['strview'] = get_string('viewallmodentries', 'blog', $a);
851 // Case 10: All blog entries associated with a course
852 if (!empty($courseid) && empty($userid) && empty($groupid) && empty($modid) && empty($entryid)) {
853 $blogurl->param('courseid', $courseid);
854 $PAGE->navbar->add($strblogentries, $blogurl);
855 $PAGE->set_title("$site->shortname: $course->shortname: " . get_string('blogentries', 'blog'));
856 $PAGE->set_heading("$site->shortname: $course->shortname: " . get_string('blogentries', 'blog'));
858 $a->type = get_string('course');
859 $headers['heading'] = get_string('blogentriesabout', 'blog', $course->fullname);
860 $headers['stradd'] = get_string('blogaboutthis', 'blog', $a);
861 $headers['strview'] = get_string('viewblogentries', 'blog', $a);
862 $blogurl->remove_params(array('userid'));
865 if (!in_array($action, array('edit', 'add'))) {
867 if (!empty($tagid)) {
868 $headers['filters']['tag'] = $tagid;
869 $blogurl->param('tagid', $tagid);
870 $tagrec = $DB->get_record('tag', array('id'=>$tagid));
871 $PAGE->navbar->add($tagrec->name, $blogurl);
872 } elseif (!empty($tag)) {
873 $blogurl->param('tag', $tag);
874 $PAGE->navbar->add(get_string('tagparam', 'blog', $tag), $blogurl);
877 // Append Search info
878 if (!empty($search)) {
879 $headers['filters']['search'] = $search;
880 $blogurl->param('search', $search);
881 $PAGE->navbar->add(get_string('searchterm', 'blog', $search), $blogurl->out());
885 // Append edit mode info
886 if (!empty($action) && $action == 'add') {
888 } else if (!empty($action) && $action == 'edit') {
889 $PAGE->navbar->add(get_string('editentry', 'blog'));
892 if (empty($headers['url'])) {
893 $headers['url'] = $blogurl;
899 * Shortcut function for getting a count of blog entries associated with a course or a module
900 * @param int $courseid The ID of the course
901 * @param int $cmid The ID of the course_modules
902 * @return string The number of associated entries
904 function blog_get_associated_count($courseid, $cmid=null) {
906 $context = get_context_instance(CONTEXT_COURSE, $courseid);
908 $context = get_context_instance(CONTEXT_MODULE, $cmid);
910 return $DB->count_records('blog_association', array('contextid' => $context->id));