MDL-35661 local plugins do not have general settings URL

This commit is contained in:
Marina Glancy
2012-10-08 11:34:10 +08:00
parent 562dbe408e
commit 2741c017cb
-8
View File
@@ -2514,12 +2514,4 @@ class plugininfo_local extends plugininfo_base {
public function get_uninstall_url() {
return new moodle_url('/admin/localplugins.php', array('delete' => $this->name, 'sesskey' => sesskey()));
}
public function get_settings_url() {
if (file_exists($this->full_path('settings.php'))) {
return new moodle_url('/admin/settings.php', array('section' => 'local_' . $this->name));
} else {
return parent::get_settings_url();
}
}
}