Go to the source code of this file.
Namespaces |
| namespace | admin |
Variables |
| | $delete = optional_param('delete', '', PARAM_PLUGIN) |
| | $confirm = optional_param('confirm', '', PARAM_BOOL) |
| | if (!empty($delete) and confirm_sesskey()) |
| | If data submitted, then process and store.
|
| | $table = new flexible_table('toolplugins_administration_table') |
| | Print the table of all installed tool plugins.
|
| | $plugins = array() |
| | $like = $DB->sql_like('plugin', '?', true, true, false, '|') |
| | $params = array('tool|_%') |
| | $installed = $DB->get_records_select('config_plugins', "$like AND name = 'version'", $params) |
| | $versions = array() |
Variable Documentation
| $like = $DB->sql_like('plugin', '?', true, true, false, '|') |
Print the table of all installed tool plugins.
Definition at line 75 of file tools.php.
If data submitted, then process and store.
Definition at line 41 of file tools.php.