mirror of
https://github.com/moodle/moodle.git
synced 2025-04-04 16:04:00 +02:00
MDL-32009 messaging: Refator get_settings_url plugintype method
No need to duplicate checks since we have them in one place.
This commit is contained in:
parent
23778a4dfa
commit
26d859e0ec
@ -1529,16 +1529,28 @@ class plugintype_enrol extends plugintype_base implements plugin_information {
|
||||
*/
|
||||
class plugintype_message extends plugintype_base implements plugin_information {
|
||||
|
||||
private $processors;
|
||||
|
||||
protected function __construct() {
|
||||
global $CFG;
|
||||
require_once($CFG->dirroot . '/message/lib.php');
|
||||
$this->processors = get_message_processors();
|
||||
}
|
||||
|
||||
/**
|
||||
* @see plugin_information::get_settings_url()
|
||||
*/
|
||||
public function get_settings_url() {
|
||||
|
||||
if (file_exists($this->full_path('settings.php')) or file_exists($this->full_path('settingstree.php'))) {
|
||||
return new moodle_url('/admin/settings.php', array('section' => 'messagesetting' . $this->name));
|
||||
if (isset($this->processors[$this->name])) {
|
||||
$processor = $this->processors[$this->name];
|
||||
} else {
|
||||
return parent::get_settings_url();
|
||||
}
|
||||
|
||||
if ($processor->available && $processor->hassettings) {
|
||||
return new moodle_url('settings.php', array('section' => 'messagesetting'.$processor->name));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user