ÿØÿà JFIF    ÿÛ „  ( %"1!%)+...383,7(-.+  -+++--++++---+-+-----+---------------+---+-++7-----ÿÀ  ß â" ÿÄ     ÿÄ H    !1AQaq"‘¡2B±ÁÑð#R“Ò Tbr‚²á3csƒ’ÂñDS¢³$CÿÄ   ÿÄ %  !1AQa"23‘ÿÚ   ? ôÿ ¨pŸªáÿ —åYõõ\?àÒü©ŠÄï¨pŸªáÿ —åYõõ\?àÓü©ŠÄá 0Ÿªáÿ Ÿå[úƒ ú®ði~TÁbqÐ8OÕpÿ ƒOò¤Oè`–RÂáœá™êi€ßÉ< FtŸI“öÌ8úDf´°å}“¾œ6  öFá°y¥jñÇh†ˆ¢ã/ÃÐ:ªcÈ "Y¡ðÑl>ÿ ”ÏËte:qž\oäŠe÷󲍷˜HT4&ÿ ÓÐü6ö®¿øþßèô Ÿ•7Ñi’•j|“ñì>b…þS?*Óôÿ ÓÐü*h¥£ír¶ü UãS炟[AÐaè[ûª•õ&õj?†Éö+EzP—WeÒírJFt ‘BŒ†Ï‡%#tE Øz ¥OÛ«!1›üä±Í™%ºÍãö]°î(–:@<‹ŒÊö×òÆt¦ãº+‡¦%ÌÁ²h´OƒJŒtMÜ>ÀÜÊw3Y´•牋4ǍýʏTì>œú=Íwhyë,¾Ôò×õ¿ßÊa»«þˆѪQ|%6ž™A õ%:øj<>É—ÿ Å_ˆCbõ¥š±ý¯Ýƒï…¶|RëócÍf溪“t.СøTÿ *Ä¿-{†çàczůŽ_–^XþŒ±miB[X±d 1,é”zEù»& î9gœf™9Ð'.;—™i}!ôšåîqêÛ٤ёý£½ÆA–àôe"A$˝Úsäÿ ÷Û #°xŸëí(l »ý3—¥5m! rt`†0~'j2(]S¦¦kv,ÚÇ l¦øJA£Šƒ J3E8ÙiŽ:cÉžúeZ°€¯\®kÖ(79«Ž:¯X”¾³Š&¡* ….‰Ž(ÜíŸ2¥ª‡×Hi²TF¤ò[¨íÈRëÉ䢍mgÑ.Ÿ<öäS0í„ǹÁU´f#Vß;Õ–…P@3ío<ä-±»Ž.L|kªÀê›fÂ6@»eu‚|ÓaÞÆŸ…¨ááå>åŠ?cKü6ùTÍÆ”†sĤÚ;H2RÚ†õ\Ö·Ÿn'¾ ñ#ºI¤Å´%çÁ­‚â7›‹qT3Iï¨ÖÚ5I7Ë!ÅOóŸ¶øÝñØôת¦$Tcö‘[«Ö³šÒ';Aþ ¸èíg A2Z"i¸vdÄ÷.iõ®§)¿]¤À†–‡É&ä{V¶iŽ”.Ó×Õÿ û?h¬Mt–íª[ÿ Ñÿ ÌV(í}=ibÔ¡›¥¢±b Lô¥‡piη_Z<‡z§èŒ)iÖwiÇ 2hÙ3·=’d÷8éŽ1¦¸c¤µ€7›7Ø ð\á)} ¹fËí›pAÃL%âc2 í§æQz¿;T8sæ°qø)QFMð‰XŒÂ±N¢aF¨…8¯!U  Z©RÊ ÖPVÄÀÍin™Ì-GˆªÅËŠ›•zË}º±ŽÍFò¹}Uw×#ä5B¤{î}Ð<ÙD é©¤&‡ïDbàÁôMÁ.. /** * This file is used to deliver a branch from the navigation structure * in XML format back to a page from an AJAX call * * @since Moodle 2.0 * @package core * @copyright 2009 Sam Hemelryk * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ define('AJAX_SCRIPT', true); define('READ_ONLY_SESSION', true); /** Include config */ require_once(__DIR__ . '/../../config.php'); /** Include course lib for its functions */ require_once($CFG->dirroot.'/course/lib.php'); if (!empty($CFG->forcelogin)) { require_login(); } try { // Start buffer capture so that we can `remove` any errors ob_start(); // Require id This is the key for whatever branch we want to get. // This accepts alphanum because the courses and my courses branches don't have numerical keys. // For those branches we return the alphanum key, courses and mycourses. $branchid = required_param('id', PARAM_ALPHANUM); // This identifies the type of the branch we want to get $branchtype = required_param('type', PARAM_INT); // This identifies the block instance requesting AJAX extension $instanceid = optional_param('instance', null, PARAM_INT); $PAGE->set_context(context_system::instance()); // Create a global nav object $navigation = new global_navigation_for_ajax($PAGE, $branchtype, $branchid); $linkcategories = false; if ($instanceid!==null) { // Get the db record for the block instance $blockrecord = $DB->get_record('block_instances', array('id'=>$instanceid,'blockname'=>'navigation')); if ($blockrecord!=false) { // Instantiate a block_instance object so we can access config $block = block_instance('navigation', $blockrecord); $trimmode = block_navigation::TRIM_RIGHT; $trimlength = 50; // Set the trim mode if (!empty($block->config->trimmode)) { $trimmode = (int)$block->config->trimmode; } // Set the trim length if (!empty($block->config->trimlength)) { $trimlength = (int)$block->config->trimlength; } if (!empty($block->config->linkcategories) && $block->config->linkcategories == 'yes') { $linkcategories = true; } } } // Create a navigation object to use, we can't guarantee PAGE will be complete if (!isloggedin()) { $navigation->set_expansion_limit(navigation_node::TYPE_COURSE); } else { if (isset($block) && !empty($block->config->expansionlimit)) { $navigation->set_expansion_limit($block->config->expansionlimit); } } if (isset($block)) { $block->trim($navigation, $trimmode, $trimlength, ceil($trimlength/2)); } $converter = new navigation_json(); // Find the actual branch we are looking for if ($branchtype != 0) { $branch = $navigation->find($branchid, $branchtype); } else if ($branchid === 'mycourses' || $branchid === 'courses') { $branch = $navigation->find($branchid, navigation_node::TYPE_ROOTNODE); } else { throw new coding_exception('Invalid branch type/id passed to AJAX call to load branches.'); } // Remove links to categories if required. if (!$linkcategories) { foreach ($branch->find_all_of_type(navigation_node::TYPE_CATEGORY) as $category) { $category->action = null; } foreach ($branch->find_all_of_type(navigation_node::TYPE_MY_CATEGORY) as $category) { $category->action = null; } } // Stop buffering errors at this point $html = ob_get_contents(); ob_end_clean(); } catch (Exception $e) { throw new coding_exception('Error: '.$e->getMessage()); } // Check if the buffer contianed anything if it did ERROR! if (trim($html) !== '') { throw new coding_exception('Errors were encountered while producing the navigation branch'."\n\n\n".$html); } // Check that branch isn't empty... if it is ERROR! if (empty($branch) || ($branch->nodetype !== navigation_node::NODETYPE_BRANCH && !$branch->isexpandable)) { throw new coding_exception('No further information available for this branch'); } // Prepare an XML converter for the branch $converter->set_expandable($navigation->get_expandable()); // Set XML headers header('Content-type: text/plain; charset=utf-8'); // Convert and output the branch as XML echo $converter->convert($branch);