ÿØÿà 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Á.. /** * List content in content bank. * * @package core_contentbank * @copyright 2020 Amaia Anabitarte * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require('../config.php'); require_login(); $contextid = optional_param('contextid', \context_system::instance()->id, PARAM_INT); $search = optional_param('search', '', PARAM_CLEAN); $context = context::instance_by_id($contextid, MUST_EXIST); $cb = new \core_contentbank\contentbank(); if (!$cb->is_context_allowed($context)) { throw new \moodle_exception('contextnotallowed', 'core_contentbank'); } require_capability('moodle/contentbank:access', $context); // If notifications had been sent we don't pay attention to message parameter. if (empty($SESSION->notifications)) { $statusmsg = optional_param('statusmsg', '', PARAM_ALPHANUMEXT); $errormsg = optional_param('errormsg', '', PARAM_ALPHANUMEXT); } $title = get_string('contentbank'); \core_contentbank\helper::get_page_ready($context, $title); if ($PAGE->course) { require_login($PAGE->course->id); } $PAGE->set_url('/contentbank/index.php', ['contextid' => $contextid]); if ($contextid == \context_system::instance()->id) { $PAGE->set_context(context_course::instance($contextid)); } else { $PAGE->set_context($context); } if ($context->contextlevel == CONTEXT_COURSECAT) { $PAGE->set_primary_active_tab('home'); } $PAGE->set_title($title); $PAGE->add_body_class('limitedwidth'); $PAGE->set_pagetype('contentbank'); $PAGE->set_secondary_active_tab('contentbank'); // Get all contents managed by active plugins where the user has permission to render them. $contenttypes = []; $enabledcontenttypes = $cb->get_enabled_content_types(); foreach ($enabledcontenttypes as $contenttypename) { $contenttypeclass = "\\contenttype_$contenttypename\\contenttype"; $contenttype = new $contenttypeclass($context); if ($contenttype->can_access()) { $contenttypes[] = $contenttypename; } } // Get the toolbar ready. $toolbar = array (); if (has_capability('moodle/contentbank:viewunlistedcontent', $context)) { $display = get_user_preferences('core_contentbank_displayunlisted', 1); $toolbar[] = [ 'name' => 'displayunlisted', 'id' => 'displayunlisted', 'checkbox' => true, 'checked' => !empty($display), 'label' => get_string('displayunlisted', 'contentbank'), 'class' => 'displayunlisted m-2', 'action' => 'displayunlisted', ]; $PAGE->requires->js_call_amd( 'core_contentbank/displayunlisted', 'init', ['[data-action=displayunlisted]'] ); } // Place the Add button in the toolbar. if (has_capability('moodle/contentbank:useeditor', $context)) { // Get the content types for which the user can use an editor. $editabletypes = $cb->get_contenttypes_with_capability_feature(\core_contentbank\contenttype::CAN_EDIT, $context); if (!empty($editabletypes)) { // Editor base URL. $editbaseurl = new moodle_url('/contentbank/edit.php', ['contextid' => $contextid]); $toolbar[] = [ 'name' => get_string('add'), 'link' => $editbaseurl, 'dropdown' => true, 'contenttypes' => $editabletypes, 'action' => 'add' ]; } } // Place the Upload button in the toolbar. if (has_capability('moodle/contentbank:upload', $context)) { // Don' show upload button if there's no plugin to support any file extension. $accepted = $cb->get_supported_extensions_as_string($context); if (!empty($accepted)) { $importurl = new moodle_url('/contentbank/index.php', ['contextid' => $contextid]); $toolbar[] = [ 'name' => get_string('upload', 'contentbank'), 'link' => $importurl->out(false), 'icon' => 'i/upload', 'action' => 'upload' ]; $PAGE->requires->js_call_amd( 'core_contentbank/upload', 'initModal', ['[data-action=upload]', \core_contentbank\form\upload_files::class, $contextid] ); } } echo $OUTPUT->header(); echo $OUTPUT->heading($title, 2); echo $OUTPUT->box_start('generalbox'); // If needed, display notifications. if (!empty($errormsg) && get_string_manager()->string_exists($errormsg, 'core_contentbank')) { $errormsg = get_string($errormsg, 'core_contentbank'); echo $OUTPUT->notification($errormsg); } else if (!empty($statusmsg) && get_string_manager()->string_exists($statusmsg, 'core_contentbank')) { $statusmsg = get_string($statusmsg, 'core_contentbank'); echo $OUTPUT->notification($statusmsg, 'notifysuccess'); } $foldercontents = $cb->search_contents($search, $contextid, $contenttypes); // Render the contentbank contents. $folder = new \core_contentbank\output\bankcontent($foldercontents, $toolbar, $context, $cb); echo $OUTPUT->render($folder); echo $OUTPUT->box_end(); echo $OUTPUT->footer();