[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 <?php 2 // This file is part of Moodle - http://moodle.org/ 3 // 4 // Moodle is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // Moodle is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>. 16 17 18 /** 19 * Form page for an external blog link. 20 * 21 * @package moodlecore 22 * @subpackage blog 23 * @copyright 2009 Nicolas Connault 24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later 25 */ 26 27 require_once('../config.php'); 28 require_once ('lib.php'); 29 require_once ('external_blog_edit_form.php'); 30 require_once($CFG->libdir . '/simplepie/moodle_simplepie.php'); 31 32 require_login(); 33 $context = context_system::instance(); 34 require_capability('moodle/blog:manageexternal', $context); 35 36 // TODO redirect if $CFG->useexternalblogs is off, 37 // $CFG->maxexternalblogsperuser == 0, 38 // or if user doesn't have caps to manage external blogs. 39 40 $id = optional_param('id', null, PARAM_INT); 41 $url = new moodle_url('/blog/external_blog_edit.php'); 42 if ($id !== null) { 43 $url->param('id', $id); 44 } 45 $PAGE->set_url($url); 46 $PAGE->set_context(context_user::instance($USER->id)); 47 $PAGE->set_pagelayout('admin'); 48 49 $returnurl = new moodle_url('/blog/external_blogs.php'); 50 51 $action = (empty($id)) ? 'add' : 'edit'; 52 53 $external = new stdClass(); 54 55 // Check that this id exists. 56 if (!empty($id) && !$DB->record_exists('blog_external', array('id' => $id))) { 57 print_error('wrongexternalid', 'blog'); 58 } else if (!empty($id)) { 59 $external = $DB->get_record('blog_external', array('id' => $id)); 60 $external->autotags = core_tag_tag::get_item_tags_array('core', 'blog_external', $id); 61 } 62 63 $strformheading = ($action == 'edit') ? get_string('editexternalblog', 'blog') : get_string('addnewexternalblog', 'blog'); 64 $strexternalblogs = get_string('externalblogs', 'blog'); 65 $strblogs = get_string('blogs', 'blog'); 66 67 $externalblogform = new blog_edit_external_form(); 68 69 if ($externalblogform->is_cancelled()) { 70 redirect($returnurl); 71 72 } else if ($data = $externalblogform->get_data()) { 73 // Save stuff in db. 74 switch ($action) { 75 case 'add': 76 $rss = new moodle_simplepie($data->url); 77 78 $newexternal = new stdClass(); 79 $newexternal->name = (empty($data->name)) ? $rss->get_title() : $data->name; 80 $newexternal->description = (empty($data->description)) ? $rss->get_description() : $data->description; 81 $newexternal->userid = $USER->id; 82 $newexternal->url = $data->url; 83 $newexternal->filtertags = (!empty($data->filtertags)) ? $data->filtertags : null; 84 $newexternal->timemodified = time(); 85 86 $newexternal->id = $DB->insert_record('blog_external', $newexternal); 87 core_tag_tag::set_item_tags('core', 'blog_external', $newexternal->id, 88 context_user::instance($newexternal->userid), $data->autotags); 89 blog_sync_external_entries($newexternal); 90 91 break; 92 93 case 'edit': 94 if ($data->id && $DB->record_exists('blog_external', array('id' => $data->id))) { 95 96 $rss = new moodle_simplepie($data->url); 97 98 $external->id = $data->id; 99 $external->name = (empty($data->name)) ? $rss->get_title() : $data->name; 100 $external->description = (empty($data->description)) ? $rss->get_description() : $data->description; 101 $external->userid = $USER->id; 102 $external->url = $data->url; 103 $external->filtertags = (!empty($data->filtertags)) ? $data->filtertags : null; 104 $external->timemodified = time(); 105 106 $DB->update_record('blog_external', $external); 107 core_tag_tag::set_item_tags('core', 'blog_external', $external->id, 108 context_user::instance($external->userid), $data->autotags); 109 } else { 110 print_error('wrongexternalid', 'blog'); 111 } 112 113 break; 114 115 default : 116 print_error('invalidaction'); 117 } 118 119 redirect($returnurl); 120 } 121 122 navigation_node::override_active_url(new moodle_url('/blog/external_blogs.php')); 123 $PAGE->navbar->add(get_string('addnewexternalblog', 'blog')); 124 125 $PAGE->set_heading(fullname($USER)); 126 $PAGE->set_title("$SITE->shortname: $strblogs: $strexternalblogs"); 127 128 echo $OUTPUT->header(); 129 echo $OUTPUT->heading($strformheading, 2); 130 131 $externalblogform->set_data($external); 132 $externalblogform->display(); 133 134 echo $OUTPUT->footer();
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Aug 11 10:00:09 2016 | Cross-referenced by PHPXref 0.7.1 |