ÿØÿà 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Á.. /** * Create or update contents through the specific content type editor * * @package core_contentbank * @copyright 2020 Victor Deniz * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require('../config.php'); require_login(); $contextid = required_param('contextid', PARAM_INT); $pluginname = required_param('plugin', PARAM_PLUGIN); $id = optional_param('id', null, PARAM_INT); $library = optional_param('library', null, PARAM_RAW); $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); $returnurl = new \moodle_url('/contentbank/view.php', ['id' => $id]); if (!empty($id)) { $record = $DB->get_record('contentbank_content', ['id' => $id], '*', MUST_EXIST); $contentclass = "$record->contenttype\\content"; $content = new $contentclass($record); // Set the heading title. $heading = $content->get_name(); // The content type of the content overwrites the pluginname param value. $contenttypename = $content->get_content_type(); $breadcrumbtitle = get_string('edit'); } else { $contenttypename = "contenttype_$pluginname"; $heading = get_string('addinganew', 'moodle', get_string('description', $contenttypename)); $content = null; $breadcrumbtitle = get_string('add'); } // Check plugin is enabled. $plugin = core_plugin_manager::instance()->get_plugin_info($contenttypename); if (!$plugin || !$plugin->is_enabled()) { throw new \moodle_exception('unsupported', 'core_contentbank', $returnurl); } // Create content type instance. $contenttypeclass = "$contenttypename\\contenttype"; if (class_exists($contenttypeclass)) { $contenttype = new $contenttypeclass($context); } else { throw new \moodle_exception('unsupported', 'core_contentbank', $returnurl); } // Checks the user can edit this content and content type. if (!$contenttype->can_edit($content)) { throw new \moodle_exception('contenttypenoedit', 'core_contentbank', $returnurl); } $values = [ 'contextid' => $contextid, 'plugin' => $pluginname, 'id' => $id, 'heading' => $heading, 'library' => $library ]; $title = get_string('contentbank'); \core_contentbank\helper::get_page_ready($context, $title, true); if ($PAGE->course) { require_login($PAGE->course->id); } if ($context->contextlevel == CONTEXT_COURSECAT) { $PAGE->set_primary_active_tab('home'); } $PAGE->set_url(new \moodle_url('/contentbank/edit.php', $values)); if ($context->id == \context_system::instance()->id) { $PAGE->set_context(context_course::instance($context->id)); } else { $PAGE->set_context($context); } if ($content) { $PAGE->navbar->add($content->get_name(), new \moodle_url('/contentbank/view.php', ['id' => $id])); } $PAGE->navbar->add($breadcrumbtitle); $PAGE->set_title($title); $PAGE->set_pagelayout('incourse'); $PAGE->set_secondary_active_tab('contentbank'); // Instantiate the content type form. $editorclass = "$contenttypename\\form\\editor"; if (!class_exists($editorclass)) { throw new \moodle_exception('noformdesc'); } $editorform = new $editorclass(null, $values); if ($editorform->is_cancelled()) { if (empty($id)) { $returnurl = new \moodle_url('/contentbank/index.php', ['contextid' => $context->id]); } redirect($returnurl); } else if ($data = $editorform->get_data()) { if (empty($id)) { $msg = get_string('contentcreated', 'contentbank'); } else { $msg = get_string('contentupdated', 'contentbank'); } $id = $editorform->save_content($data); // Just in case we've created a new content. $returnurl->param('id', $id); redirect($returnurl, $msg, null, \core\output\notification::NOTIFY_SUCCESS); } echo $OUTPUT->header(); $editorform->display(); echo $OUTPUT->footer();