. /** * Provides an overview of installed availability conditions. * * You can also enable/disable them from this screen. * * @package tool_availabilityconditions * @copyright 2014 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require_once(__DIR__ . '/../../../config.php'); require_once($CFG->libdir . '/adminlib.php'); require_once($CFG->libdir . '/tablelib.php'); admin_externalpage_setup('manageavailability'); // Get sorted list of all availability condition plugins. $plugins = array(); foreach (core_component::get_plugin_list('availability') as $plugin => $plugindir) { if (get_string_manager()->string_exists('pluginname', 'availability_' . $plugin)) { $strpluginname = get_string('pluginname', 'availability_' . $plugin); } else { $strpluginname = $plugin; } $plugins[$plugin] = $strpluginname; } core_collator::asort($plugins); // Do plugin actions. $pageurl = new moodle_url('/' . $CFG->admin . '/tool/availabilityconditions/'); if (($plugin = optional_param('plugin', '', PARAM_PLUGIN))) { require_sesskey(); if (!array_key_exists($plugin, $plugins)) { print_error('invalidcomponent', 'error', $pageurl); } $action = required_param('action', PARAM_ALPHA); switch ($action) { case 'hide' : set_config('disabled', 1, 'availability_' . $plugin); break; case 'show' : unset_config('disabled', 'availability_' . $plugin); break; } core_plugin_manager::reset_caches(); // Always redirect back after an action. redirect($pageurl); } echo $OUTPUT->header(); echo $OUTPUT->heading(get_string('manageplugins', 'availability')); // Show a table of installed availability conditions. $table = new flexible_table('availabilityconditions_administration_table'); $table->define_columns(array('name', 'version', 'enable')); $table->define_headers(array(get_string('plugin'), get_string('version'), get_string('hide') . '/' . get_string('show'))); $table->define_baseurl($PAGE->url); $table->set_attribute('id', 'availabilityconditions'); $table->set_attribute('class', 'admintable generaltable'); $table->setup(); $enabledlist = core\plugininfo\availability::get_enabled_plugins(); foreach ($plugins as $plugin => $name) { // Get version or ? if unknown. $version = get_config('availability_' . $plugin); if (!empty($version->version)) { $version = $version->version; } else { $version = '?'; } // Get enabled status and use to grey out name if necessary. $enabled = in_array($plugin, $enabledlist); if ($enabled) { $enabledaction = 'hide'; $enabledstr = get_string('hide'); $class = ''; } else { $enabledaction = 'show'; $enabledstr = get_string('show'); $class = 'dimmed_text'; } $namespan = html_writer::span($name, $class); // Make enable control. This is a POST request (using a form control rather // than just a link) because it makes a database change. $enablecontrol = html_writer::tag('form', html_writer::div( html_writer::empty_tag('input', array('type' => 'hidden', 'name' => 'sesskey', 'value' => sesskey())) . html_writer::empty_tag('input', array('type' => 'hidden', 'name' => 'plugin', 'value' => $plugin)) . html_writer::empty_tag('input', array('type' => 'hidden', 'name' => 'action', 'value' => $enabledaction)) . html_writer::empty_tag('input', array('type' => 'image', 'src' => $OUTPUT->pix_url('t/' . $enabledaction), 'alt' => $enabledstr, 'title' => $enabledstr)) ), array( 'method' => 'post', 'action' => './')); $table->add_data(array($namespan, $version, $enablecontrol)); } $table->print_html(); echo $OUTPUT->footer();