|
Moodle
2.2.1
http://www.collinsharper.com
|
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('reportplugins_administration_table') | |
| Print the table of all installed report plugins. | |
| $plugins = array() | |
| $like = $DB->sql_like('plugin', '?', true, true, false, '|') | |
| $params = array('report|_%') | |
| $installed = $DB->get_records_select('config_plugins', "$like AND name = 'version'", $params) | |
| $versions = array() | |
| $confirm = optional_param('confirm', '', PARAM_BOOL) |
Definition at line 37 of file reports.php.
| $delete = optional_param('delete', '', PARAM_PLUGIN) |
Definition at line 36 of file reports.php.
| $installed = $DB->get_records_select('config_plugins', "$like AND name = 'version'", $params) |
Definition at line 96 of file reports.php.
Definition at line 94 of file reports.php.
Definition at line 95 of file reports.php.
| $plugins = array() |
Definition at line 83 of file reports.php.
| $table = new flexible_table('reportplugins_administration_table') |
Print the table of all installed report plugins.
Definition at line 75 of file reports.php.
| $versions = array() |
Definition at line 97 of file reports.php.
| if(!empty($delete) and confirm_sesskey()) |
If data submitted, then process and store.
Definition at line 41 of file reports.php.