Forming the settings page

This commit is contained in:
Valentin Popov 2017-10-22 13:45:49 +04:00
parent d974670910
commit be91a4c9b4
3 changed files with 30 additions and 21 deletions

View File

@ -15,16 +15,15 @@
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/** /**
* Strings for component 'local_webhooks', language 'en'. * Strings for component "local_webhooks", language "en".
* *
* @package local_webhooks * @package local_webhooks
* @copyright 2017 "Valentin Popov" <info@valentineus.link> * @copyright 2017 "Valentin Popov" <info@valentineus.link>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/ */
$string['local_webhooksdescription'] = ''; $string["enableservice"] = "Enabled";
$string['pluginname'] = 'WebHook\'s'; $string["enableservice_help"] = "Enable the Event Tracking service.";
$string['enabled'] = 'Enabled'; $string["linkmanagerservice"] = "Service management manager";
$string['enabled_help'] = 'Enable event tracking.'; $string["local_webhooksdescription"] = "";
$string['url'] = 'URL'; $string["pluginname"] = "Moodle WebHooks";
$string['url_help'] = 'Web address of the remote service.';

View File

@ -15,16 +15,15 @@
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/** /**
* Strings for component 'local_webhooks', language 'ru'. * Strings for component "local_webhooks", language "ru".
* *
* @package local_webhooks * @package local_webhooks
* @copyright 2017 "Valentin Popov" <info@valentineus.link> * @copyright 2017 "Valentin Popov" <info@valentineus.link>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/ */
$string['local_webhooksdescription'] = ''; $string["enableservice"] = "Включить";
$string['pluginname'] = 'WebHook\'s'; $string["enableservice_help"] = "Включение службы отслеживания событий.";
$string['enabled'] = 'Включить'; $string["linkmanagerservice"] = "Менеджер управления службами";
$string['enabled_help'] = 'Включить отслеживание событий.'; $string["local_webhooksdescription"] = "";
$string['url'] = 'URL'; $string["pluginname"] = "Moodle WebHooks";
$string['url_help'] = 'Веб-адрес удалённой службы.';

View File

@ -22,15 +22,26 @@
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/ */
defined('MOODLE_INTERNAL') || die(); defined("MOODLE_INTERNAL") || die();
$settings = null;
if ($hassiteconfig) { if ($hassiteconfig) {
$settings = new admin_settingpage('local_webhooks', get_string('pluginname', 'local_webhooks')); $settings = new admin_settingpage(
$ADMIN->add('localplugins', $settings); "local_webhooks",
new lang_string("pluginname", "local_webhooks")
);
$settings->add(new admin_setting_configcheckbox('local_webhooks/enabled', get_string('enabled', 'local_webhooks'), $ADMIN->add("localplugins", $settings);
get_string('enabled_help', 'local_webhooks'), false));
$settings->add(new admin_setting_configtext('local_webhooks/url', get_string('url', 'local_webhooks'), $settings->add(new admin_setting_configcheckbox(
get_string('url_help', 'local_webhooks'), 'http://example.com/endpoint', PARAM_URL, 40)); "local_webhooks/enabled",
new lang_string("enableservice", "local_webhooks"),
new lang_string("enableservice_help", "local_webhooks"),
false
));
/* Link to the service manager */
$linktext = new lang_string("linkmanagerservice", "local_webhooks");
$link = "<a href=\"" . $CFG->wwwroot . "/local/webhooks/managerservice.php\">" . $linktext . "</a>";
$settings->add(new admin_setting_heading("local_webhooks_addheading", "", $link));
} }