[ 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 * This file contains main class for the course format Social 19 * 20 * @since Moodle 2.0 21 * @package format_social 22 * @copyright 2009 Sam Hemelryk 23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later 24 */ 25 26 defined('MOODLE_INTERNAL') || die(); 27 require_once($CFG->dirroot. '/course/format/lib.php'); 28 29 /** 30 * Main class for the Social course format 31 * 32 * @package format_social 33 * @copyright 2012 Marina Glancy 34 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later 35 */ 36 class format_social extends format_base { 37 38 /** 39 * The URL to use for the specified course 40 * 41 * @param int|stdClass $section Section object from database or just field course_sections.section 42 * if null the course view page is returned 43 * @param array $options options for view URL. At the moment core uses: 44 * 'navigation' (bool) if true and section has no separate page, the function returns null 45 * 'sr' (int) used by multipage formats to specify to which section to return 46 * @return null|moodle_url 47 */ 48 public function get_view_url($section, $options = array()) { 49 if (!empty($options['navigation']) && $section !== null) { 50 return null; 51 } 52 return new moodle_url('/course/view.php', array('id' => $this->courseid)); 53 } 54 55 /** 56 * Loads all of the course sections into the navigation 57 * 58 * @param global_navigation $navigation 59 * @param navigation_node $node The course node within the navigation 60 */ 61 public function extend_course_navigation($navigation, navigation_node $node) { 62 // Social course format does not extend navigation, it uses social_activities block instead 63 } 64 65 /** 66 * Returns the list of blocks to be automatically added for the newly created course 67 * 68 * @return array of default blocks, must contain two keys BLOCK_POS_LEFT and BLOCK_POS_RIGHT 69 * each of values is an array of block names (for left and right side columns) 70 */ 71 public function get_default_blocks() { 72 return array( 73 BLOCK_POS_LEFT => array(), 74 BLOCK_POS_RIGHT => array('search_forums', 'calendar_upcoming', 'social_activities', 75 'recent_activity', 'course_list') 76 ); 77 } 78 79 /** 80 * Definitions of the additional options that this course format uses for course 81 * 82 * social format uses the following options: 83 * - numdiscussions 84 * 85 * @param bool $foreditform 86 * @return array of options 87 */ 88 public function course_format_options($foreditform = false) { 89 static $courseformatoptions = false; 90 if ($courseformatoptions === false) { 91 $courseformatoptions = array( 92 'numdiscussions' => array( 93 'default' => 10, 94 'type' => PARAM_INT, 95 ) 96 ); 97 } 98 99 if ($foreditform && !isset($courseformatoptions['numdiscussions']['label'])) { 100 $courseformatoptionsedit = array( 101 'numdiscussions' => array( 102 'label' => new lang_string('numberdiscussions', 'format_social'), 103 'help' => 'numberdiscussions', 104 'help_component' => 'format_social', 105 'element_type' => 'text', 106 ) 107 ); 108 $courseformatoptions = array_merge_recursive($courseformatoptions, $courseformatoptionsedit); 109 } 110 return $courseformatoptions; 111 } 112 }
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 |