mirror of
https://github.com/catalyst/moodle-auth_outage.git
synced 2026-05-17 05:48:43 +02:00
Building basic structure.
This commit is contained in:
25
auth.php
25
auth.php
@@ -35,32 +35,11 @@ require_once($CFG->libdir . '/authlib.php');
|
||||
*/
|
||||
class auth_plugin_outage extends auth_plugin_base
|
||||
{
|
||||
public function __construct() {
|
||||
$this->pluginconfig = 'auth_outage';
|
||||
$this->authtype = 'outage';
|
||||
$this->roleauth = 'auth_outage';
|
||||
$this->component = 'auth_outage';
|
||||
$this->errorlogtag = '[AUTH_OUTAGE]';
|
||||
$this->config = get_config('auth_outage');
|
||||
}
|
||||
|
||||
/**
|
||||
* This is the primary method that is used by the authenticate_user_login()
|
||||
* function in moodlelib.php.
|
||||
*
|
||||
* This method should return a boolean indicating
|
||||
* whether or not the username and password authenticate successfully.
|
||||
*
|
||||
* Returns true if the username and password work and false if they are
|
||||
* wrong or don't exist.
|
||||
*
|
||||
* @param string $username The username (with system magic quotes)
|
||||
* @param string $password The password (with system magic quotes)
|
||||
*
|
||||
* @return bool Authentication success or failure.
|
||||
* Do not authenticate users.
|
||||
* @return bool False
|
||||
*/
|
||||
public function user_login($username, $password) {
|
||||
// Do not authenticate users.
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
6
classes/listform.php
Normal file
6
classes/listform.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
namespace auth_outage;
|
||||
|
||||
class listform {
|
||||
public $var = 'a';
|
||||
}
|
||||
39
classes/outage.php
Normal file
39
classes/outage.php
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* An Outage object with all information about one specific outage.
|
||||
*
|
||||
* @package auth_outage
|
||||
* @author Daniel Thee Roperto <daniel.roperto@catalyst-au.net>
|
||||
* @copyright Catalyst IT
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace auth_outage;
|
||||
|
||||
class outage
|
||||
{
|
||||
public $id;
|
||||
public $start_time;
|
||||
public $stop_time;
|
||||
public $warning_minutes;
|
||||
public $title;
|
||||
public $description;
|
||||
public $created_by;
|
||||
public $modified_by;
|
||||
public $last_modified;
|
||||
}
|
||||
@@ -7,14 +7,14 @@
|
||||
<TABLE NAME="auth_outage" COMMENT="Table used for auth/outage plugin. Holds information about all past, current and future outages.">
|
||||
<FIELDS>
|
||||
<FIELD NAME="id" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="true"/>
|
||||
<FIELD NAME="starttime" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="false" COMMENT="When outage starts."/>
|
||||
<FIELD NAME="stoptime" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="false" COMMENT="When outage ends."/>
|
||||
<FIELD NAME="start_time" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="false" COMMENT="When outage starts."/>
|
||||
<FIELD NAME="stop_time" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="false" COMMENT="When outage ends."/>
|
||||
<FIELD NAME="warning_minutes" TYPE="int" LENGTH="7" NOTNULL="true" SEQUENCE="false" COMMENT="How many minutes before the outage to display a warning to all users."/>
|
||||
<FIELD NAME="title" TYPE="char" LENGTH="20" NOTNULL="true" SEQUENCE="false" COMMENT="Title for the outage (short description)."/>
|
||||
<FIELD NAME="description" TYPE="text" NOTNULL="true" SEQUENCE="false" COMMENT="More information about the outage."/>
|
||||
<FIELD NAME="createdby" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="false" COMMENT="Who created this entry."/>
|
||||
<FIELD NAME="modifiedby" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="false" COMMENT="Who last modified this entry."/>
|
||||
<FIELD NAME="lastmod" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="false" COMMENT="When was this entry last modified."/>
|
||||
<FIELD NAME="created_by" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="false" COMMENT="Who created this entry."/>
|
||||
<FIELD NAME="modified_by" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="false" COMMENT="Who last modified this entry."/>
|
||||
<FIELD NAME="last_modified" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="false" COMMENT="When was this entry last modified."/>
|
||||
</FIELDS>
|
||||
<KEYS>
|
||||
<KEY NAME="primary" TYPE="primary" FIELDS="id"/>
|
||||
|
||||
25
lib.php
Normal file
25
lib.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* auth_outage plugin lib
|
||||
*
|
||||
* @package auth_outage
|
||||
* @author Daniel Thee Roperto <daniel.roperto@catalyst-au.net>
|
||||
* @copyright Catalyst IT
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
defined('MOODLE_INTERNAL') || die;
|
||||
133
list.php
Normal file
133
list.php
Normal file
@@ -0,0 +1,133 @@
|
||||
<?php
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* List outages
|
||||
*
|
||||
* @package auth_outage
|
||||
* @author Daniel Thee Roperto <daniel.roperto@catalyst-au.net>
|
||||
* @copyright Catalyst IT
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
use \auth_outage\outage;
|
||||
|
||||
require_once('../../config.php');
|
||||
require_once($CFG->libdir . '/adminlib.php');
|
||||
|
||||
// TODO Check parameters.
|
||||
//$triggerid = optional_param('id', 0, PARAM_INT);
|
||||
// $datatype = required_param('datatype', PARAM_ALPHANUM);
|
||||
// if (empty($datatype)) { throw new coding_exception('required_param() requires $parname and $type to be specified (parameter: datatype)'); }
|
||||
|
||||
// Page API: https://docs.moodle.org/dev/Page_API#.24PAGE_The_Moodle_page_global .
|
||||
admin_externalpage_setup('auth_outage_list'); // Does require_login and set_context inside.
|
||||
$PAGE->set_url(new moodle_url('/auth/outage/list.php'));
|
||||
$PAGE->set_title('Outage List');
|
||||
$PAGE->set_heading('List of registered outages.');
|
||||
//$PAGE->requires->css('/local/extension/styles.css');
|
||||
|
||||
$renderer = $PAGE->get_renderer('auth_outage');
|
||||
|
||||
$outage_list = [];
|
||||
for ($i = 1; $i <= 10; $i++) {
|
||||
$outage_list[$i] = new outage();
|
||||
$outage_list[$i]->id = $i;
|
||||
$outage_list[$i]->start_time = time();
|
||||
$outage_list[$i]->stop_time = time() + 60 * 60 * 4; // 4 hours.
|
||||
$outage_list[$i]->warning_minutes = 10 * $i;
|
||||
$outage_list[$i]->title = 'Outage #' . $i;
|
||||
$outage_list[$i]->description = 'This is the Outage #' . $i . ', backup creation.';
|
||||
$outage_list[$i]->created_by = 1;
|
||||
$outage_list[$i]->modified_by = 1;
|
||||
$outage_list[$i]->last_modified = time() - 60 * 60 * 10; // -10 hours.
|
||||
};
|
||||
|
||||
echo $OUTPUT->header();
|
||||
|
||||
echo $renderer->render_outage_list($outage_list);
|
||||
|
||||
//$form = new \auth_outage\listform();
|
||||
|
||||
|
||||
/*
|
||||
$data = null;
|
||||
$editordata = array(
|
||||
'template_notify' => array('text' => get_string('template_notify_content', 'local_extension')),
|
||||
'template_user' => array('text' => get_string('template_user_content', 'local_extension')),
|
||||
);
|
||||
|
||||
if (!empty($triggerid) && confirm_sesskey()) {
|
||||
$data = \local_extension\rule::from_id($triggerid);
|
||||
|
||||
// Set the saved serialised data as object properties, which will be loaded as default form values.
|
||||
// If and only if the form elements have the same name, and they have been saved to the data variable.
|
||||
if (!empty($data->data)) {
|
||||
foreach ($data->data as $key => $value) {
|
||||
|
||||
if (strpos($key, 'template') === 0) {
|
||||
if (!empty($value)) {
|
||||
$editordata[$key] = array('text' => $value);
|
||||
}
|
||||
}
|
||||
|
||||
$data->$key = $value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$rules = \local_extension\rule::load_all($datatype);
|
||||
$sorted = \local_extension\utility::rule_tree($rules);
|
||||
|
||||
$params = array(
|
||||
'ruleid' => $triggerid,
|
||||
'rules' => $sorted,
|
||||
'datatype' => $datatype,
|
||||
'editordata' => $editordata,
|
||||
);
|
||||
|
||||
//// MFORM
|
||||
|
||||
|
||||
$mform->set_data($data);
|
||||
|
||||
if ($mform->is_cancelled()) {
|
||||
|
||||
$url = new moodle_url('/local/extension/manage.php');
|
||||
redirect($url);
|
||||
die;
|
||||
|
||||
} else if ($form = $mform->get_data()) {
|
||||
|
||||
$rule = new \local_extension\rule();
|
||||
|
||||
// Also saves template_ form items to the custom data variable.
|
||||
$rule->load_from_form($form);
|
||||
|
||||
if (!empty($rule->id)) {
|
||||
$DB->update_record('local_extension_triggers', $rule);
|
||||
} else {
|
||||
$DB->insert_record('local_extension_triggers', $rule);
|
||||
}
|
||||
|
||||
$url = new moodle_url('/local/extension/manage.php');
|
||||
redirect($url);
|
||||
die;
|
||||
|
||||
}
|
||||
*/
|
||||
//echo $mform->display();
|
||||
echo $OUTPUT->footer();
|
||||
436
renderer.php
Normal file
436
renderer.php
Normal file
@@ -0,0 +1,436 @@
|
||||
<?php
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
use \auth_outage\outage;
|
||||
|
||||
/**
|
||||
* auth_outage renderer
|
||||
*
|
||||
* @package auth_outage
|
||||
* @author Daniel Thee Roperto <daniel.roperto@catalyst-au.net>
|
||||
* @copyright Catalyst IT
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.'); // It must be included from a Moodle page.
|
||||
}
|
||||
|
||||
class auth_outage_renderer extends plugin_renderer_base
|
||||
{
|
||||
public function render_outage_list(array $outages) {
|
||||
$html = html_writer::tag('h1', 'Outage List');
|
||||
foreach ($outages as $outage) {
|
||||
$html .= $this->render_outage_list_entry($outage);
|
||||
}
|
||||
return $html;
|
||||
}
|
||||
|
||||
private function render_outage_list_entry(outage $outage) {
|
||||
return html_writer::div(
|
||||
html_writer::span(
|
||||
html_writer::tag('b', $outage->title) . html_writer::empty_tag('br')
|
||||
. html_writer::tag('i', $outage->description) . html_writer::empty_tag('br')
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Extension comment renderer.
|
||||
*
|
||||
* @param request $req The extension request object.
|
||||
* @param boolean $showdate If this is set, then print the full date instead of 'time ago'.
|
||||
* @return string $out The html output.
|
||||
*/
|
||||
public function render_extension_comments(\local_extension\request $req, $showdate = false) {
|
||||
$out = '';
|
||||
|
||||
$out .= html_writer::start_tag('div', array('class' => 'comments'));
|
||||
|
||||
// Fetch the comments, state changes and file attachments.
|
||||
$comments = $req->get_history();
|
||||
|
||||
foreach ($comments as $comment) {
|
||||
$out .= $this->render_single_comment($req, $comment, $showdate);
|
||||
}
|
||||
|
||||
$out .= html_writer::end_div(); // End .comments.
|
||||
|
||||
return $out;
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper function to render a single comment. Also used in email notifications.
|
||||
*
|
||||
* @param \local_extension\request $req
|
||||
* @param stdClass $comment
|
||||
* @param boolean $showdate If this is set, then print the full date instead of 'time ago'.
|
||||
* @return string $out
|
||||
*/
|
||||
public function render_single_comment(\local_extension\request $req, $comment, $showdate = false) {
|
||||
$class = 'content';
|
||||
$out = '';
|
||||
|
||||
// Add a css class to change background color for file attachments and state changes.
|
||||
if (!empty($comment->filehash)) {
|
||||
$class .= ' fileattachment';
|
||||
}
|
||||
|
||||
if (!empty($comment->state)) {
|
||||
$class .= ' statechange';
|
||||
}
|
||||
|
||||
$user = $req->users[$comment->userid];
|
||||
|
||||
$out .= html_writer::start_tag('div', array('class' => 'comment'));
|
||||
|
||||
$out .= html_writer::start_tag('div', array('class' => 'avatar'));
|
||||
$out .= $this->output->user_picture($user, array(
|
||||
'size' => 50,
|
||||
));
|
||||
$out .= html_writer::end_div(); // End .avatar.
|
||||
|
||||
$out .= html_writer::start_tag('div', array('class' => $class));
|
||||
$out .= html_writer::tag('span', fullname($user), array('class' => 'name'));
|
||||
|
||||
$out .= html_writer::tag('span', ' - ' . $this->render_role($req, $user->id), array('class' => 'role'));
|
||||
$out .= html_writer::tag('span', ' - ' . $this->render_time($comment->timestamp, $showdate), array('class' => 'time'));
|
||||
|
||||
$out .= html_writer::start_tag('div', array('class' => 'message'));
|
||||
$out .= html_writer::div(format_text(trim($comment->message), FORMAT_MOODLE), 'comment');
|
||||
$out .= html_writer::end_div(); // End .message.
|
||||
$out .= html_writer::end_div(); // End .content.
|
||||
$out .= html_writer::end_div(); // End .comment.
|
||||
|
||||
return $out;
|
||||
}
|
||||
|
||||
/**
|
||||
* Renders role information
|
||||
*
|
||||
* @param \local_extension\request $req
|
||||
* @param integer $userid
|
||||
* @return string The html output.
|
||||
*/
|
||||
public function render_role($req, $userid) {
|
||||
$details = '';
|
||||
$rolename = '';
|
||||
$roles = array();
|
||||
|
||||
// Roles are scoped to the enrollment status in courses.
|
||||
foreach ($req->mods as $cmid => $mod) {
|
||||
$course = $mod['course'];
|
||||
$context = \context_course::instance($course->id);
|
||||
$roles = get_user_roles($context, $userid, true);
|
||||
|
||||
foreach ($roles as $role) {
|
||||
$rolename = role_get_name($role, $context);
|
||||
if (!empty($rolename)) {
|
||||
$details .= "{$rolename} - {$course->fullname}\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return html_writer::tag('abbr', $rolename, array('title' => $details));
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Render nice times
|
||||
*
|
||||
* @param integer $time The time to show
|
||||
* @param boolean $showdate If this is set, then print the full date instead of 'time ago'.
|
||||
* @return string The html output.
|
||||
*/
|
||||
public function render_time($time, $showdate = false) {
|
||||
$delta = time() - $time;
|
||||
|
||||
// The nice delta.
|
||||
|
||||
// Just show the biggest time unit instead of 2.
|
||||
$show = format_time($delta);
|
||||
$num = strtok($show, ' ');
|
||||
$unit = strtok(' ');
|
||||
$show = "$num $unit";
|
||||
$show = get_string('ago', 'message', $show);
|
||||
|
||||
// The full date.
|
||||
$fulldate = userdate($time, '%d %h %Y %l:%M%P');
|
||||
|
||||
if ($showdate) {
|
||||
return html_writer::tag('abbr', $fulldate);
|
||||
} else {
|
||||
return html_writer::tag('abbr', $show, array('title' => $fulldate));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Extension attachment file renderer.
|
||||
*
|
||||
* @param request $req The extension request object.
|
||||
* @return string $out The html output.
|
||||
*/
|
||||
public function render_extension_attachments(\local_extension\request $req) {
|
||||
global $OUTPUT;
|
||||
|
||||
list($fs, $files) = $req->fetch_attachments();
|
||||
|
||||
$out = html_writer::start_tag('div', array('class' => 'attachments'));
|
||||
$out .= get_string('attachments', 'local_extension');
|
||||
|
||||
foreach ($files as $file) {
|
||||
/* @var stored_file $file */
|
||||
|
||||
$f = $fs->get_file(
|
||||
$file->get_contextid(),
|
||||
$file->get_component(),
|
||||
$file->get_filearea(),
|
||||
$file->get_itemid(),
|
||||
$file->get_filepath(),
|
||||
$file->get_filename()
|
||||
);
|
||||
|
||||
if (!$f || $f->is_directory()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$fileurl = moodle_url::make_pluginfile_url(
|
||||
$file->get_contextid(),
|
||||
$file->get_component(),
|
||||
$file->get_filearea(),
|
||||
$file->get_itemid(),
|
||||
$file->get_filepath(),
|
||||
$file->get_filename()
|
||||
);
|
||||
|
||||
$out .= $OUTPUT->pix_icon(file_file_icon($file, 24), get_mimetype_description($file));
|
||||
$out .= html_writer::link($fileurl, $f->get_filename()) . "<br />";
|
||||
$out .= userdate($file->get_timecreated(), '%d %h %Y %l:%M%P') . "<br />";
|
||||
|
||||
}
|
||||
$out .= html_writer::end_div(); // End .attachments.
|
||||
|
||||
// The first file will be '.'
|
||||
if (count($files) > 1) {
|
||||
return $out;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Extension status email renderer.
|
||||
*
|
||||
* @param request $req The extension request object.
|
||||
* @return string $out The html output.
|
||||
*/
|
||||
public function render_extension_email(\local_extension\request $req) {
|
||||
}
|
||||
|
||||
/**
|
||||
* Render a summary of all requests in a table.
|
||||
*
|
||||
* @param flexible_table $table
|
||||
* @param array $requests
|
||||
*/
|
||||
public function render_extension_summary_table($table, $requests) {
|
||||
|
||||
if (!empty($requests)) {
|
||||
|
||||
foreach ($requests as $request) {
|
||||
$statusurl = new moodle_url("/local/extension/status.php", array('id' => $request->id));
|
||||
$status = get_string("table_header_statusrow", "local_extension", $statusurl->out());
|
||||
|
||||
$values = array($request->id, $request->count, userdate($request->timestamp), $status);
|
||||
$table->add_data($values);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
return $table->finish_output();
|
||||
}
|
||||
|
||||
/**
|
||||
* Render a summary of all triggers in a table.
|
||||
*
|
||||
* @param flexible_table $table
|
||||
* @param array $triggers
|
||||
* @param integer $parent
|
||||
*/
|
||||
public function render_extension_trigger_table($table, $triggers, $parent = null) {
|
||||
global $OUTPUT;
|
||||
if (!empty($triggers)) {
|
||||
|
||||
foreach ($triggers as $id => $trigger) {
|
||||
|
||||
$buttons = array();
|
||||
|
||||
$url = new moodle_url('/local/extension/editrule.php', array_merge(array('id' => $trigger->id, 'datatype' => $trigger->datatype, 'sesskey' => sesskey())));
|
||||
$html = html_writer::empty_tag('img', array('src' => $OUTPUT->pix_url('t/edit'), 'alt' => get_string('edit'), 'class' => 'iconsmall'));
|
||||
$buttons[] = html_writer::link($url, $html, array('title' => get_string('edit')));
|
||||
|
||||
$url = new moodle_url('', array_merge(array('delete' => $trigger->id, 'sesskey' => sesskey())));
|
||||
$html = html_writer::empty_tag('img', array('src' => $OUTPUT->pix_url('t/delete'), 'alt' => get_string('delete'), 'class' => 'iconsmall'));
|
||||
$buttons[] = html_writer::link($url, $html, array('title' => get_string('delete')));
|
||||
|
||||
$parentstr = 'N/A';
|
||||
if (!empty($parent)) {
|
||||
$parentstr = $parent->name;
|
||||
}
|
||||
|
||||
// Table columns 'name', 'action', 'role', 'parent', 'continue', 'priority', 'data'.
|
||||
$values = array(
|
||||
$trigger->name,
|
||||
$trigger->get_action_name(),
|
||||
$trigger->get_role_name(),
|
||||
$parentstr,
|
||||
$trigger->datatype,
|
||||
$trigger->priority + 1,
|
||||
$this->render_trigger_rule_text($trigger, $parentstr),
|
||||
implode(' ', $buttons)
|
||||
);
|
||||
|
||||
$table->add_data($values);
|
||||
|
||||
if (!empty($trigger->children)) {
|
||||
$this->render_extension_trigger_table($table, $trigger->children, $trigger);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $table;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adapter trigger renderer for status management page.
|
||||
*
|
||||
* @param \local_extension\rule $trigger
|
||||
* @param string $parentstr The name of the parent trigger.
|
||||
* @return string $html The html output.
|
||||
*/
|
||||
public function render_trigger_rule_text($trigger, $parentstr) {
|
||||
$html = html_writer::start_tag('div');
|
||||
|
||||
$activate = array(
|
||||
get_string('form_rule_label_parent', 'local_extension'),
|
||||
$parentstr,
|
||||
get_string('form_rule_label_parent_end', 'local_extension'),
|
||||
);
|
||||
$html .= html_writer::tag('p', implode(' ', $activate));
|
||||
|
||||
$lengthtype = $this->rule_type($trigger->lengthtype);
|
||||
|
||||
$reqlength = array(
|
||||
get_string('form_rule_label_request_length', 'local_extension'),
|
||||
$lengthtype,
|
||||
$trigger->lengthfromduedate,
|
||||
get_string('form_rule_label_days_long', 'local_extension'),
|
||||
);
|
||||
$html .= html_writer::tag('p', implode(' ', $reqlength));
|
||||
|
||||
$elapsedtype = $this->rule_type($trigger->elapsedtype);
|
||||
|
||||
$elapsedlength = array(
|
||||
get_string('form_rule_label_elapsed_length', 'local_extension'),
|
||||
$elapsedtype,
|
||||
$trigger->elapsedfromrequest,
|
||||
get_string('form_rule_label_days_old', 'local_extension'),
|
||||
);
|
||||
$html .= html_writer::tag('p', implode(' ', $elapsedlength));
|
||||
|
||||
$setroles = array(
|
||||
get_string('form_rule_label_set_roles', 'local_extension'),
|
||||
$trigger->get_role_name(),
|
||||
get_string('form_rule_label_to', 'local_extension'),
|
||||
$trigger->get_action_name(),
|
||||
get_string('form_rule_label_this_request', 'local_extension'),
|
||||
);
|
||||
$html .= html_writer::tag('p', implode(' ', $setroles));
|
||||
|
||||
$html .= html_writer::end_div();
|
||||
|
||||
return $html;
|
||||
}
|
||||
|
||||
/**
|
||||
* Internal helper function to return the type of rule length checking.
|
||||
* @param string $triggertype
|
||||
* @return string
|
||||
*/
|
||||
private function rule_type($triggertype) {
|
||||
$greaterthan = get_string('form_rule_greater_or_equal', 'local_extension');
|
||||
$lessthan = get_string('form_rule_less_than', 'local_extension');
|
||||
$any = get_string('form_rule_any_value', 'local_extension');
|
||||
|
||||
$type = '';
|
||||
|
||||
switch ($triggertype) {
|
||||
case \local_extension\rule::RULE_CONDITION_GE:
|
||||
$type = $greaterthan;
|
||||
break;
|
||||
case \local_extension\rule::RULE_CONDITION_LT:
|
||||
$type = $lessthan;
|
||||
break;
|
||||
case \local_extension\rule::RULE_CONDITION_ANY:
|
||||
$type = $any;
|
||||
break;
|
||||
default:
|
||||
$type = '';
|
||||
break;
|
||||
}
|
||||
|
||||
return $type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Renders a dropdown select box with the available rule type handlers.
|
||||
*
|
||||
* @param array $mods
|
||||
* @param moodle_url $url
|
||||
* @return string $html
|
||||
*/
|
||||
public function render_manage_new_rule($mods, $url) {
|
||||
$stredit = get_string('button_edit_rule', 'local_extension');
|
||||
|
||||
$options = array();
|
||||
|
||||
foreach ($mods as $mod) {
|
||||
$options[$mod->get_data_type()] = $mod->get_name();
|
||||
}
|
||||
|
||||
$html = $this->single_select($url, 'datatype', $options, '', array('' => $stredit), 'newfieldform');
|
||||
|
||||
return $html;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prints the list of rules, and child rules that may be deleted on manage.php
|
||||
*
|
||||
* @param array $rules
|
||||
* @return string
|
||||
*/
|
||||
public function render_delete_rules($rules) {
|
||||
$html = '';
|
||||
|
||||
$html .= html_writer::start_div();
|
||||
|
||||
$html .= var_dump($rules);
|
||||
|
||||
$html .= html_writer::end_div();
|
||||
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
|
||||
39
settings.php
39
settings.php
@@ -14,9 +14,40 @@
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* auth_outage plugin settings
|
||||
*
|
||||
* @package auth_outage
|
||||
* @author Daniel Thee Roperto <daniel.roperto@catalyst-au.net>
|
||||
* @copyright Catalyst IT
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
defined('MOODLE_INTERNAL') || die;
|
||||
|
||||
if ($ADMIN->fulltree) {
|
||||
$settings->add(new admin_setting_configselect('data_auth_outage', get_string('enablerssfeeds', 'admin'),
|
||||
$str, 0, $options));
|
||||
}
|
||||
if ($hassiteconfig) {
|
||||
// Configure default settings page.
|
||||
$settings->visiblename = "Defaults";
|
||||
$settings->add(
|
||||
new admin_setting_configtext('auth_outage_warning_period',
|
||||
"Default Warning Time",
|
||||
"Default warning time (in minutes) for outages.",
|
||||
120, PARAM_INT));
|
||||
$settings->add(
|
||||
new admin_setting_configtextarea('auth_outage_warning_text',
|
||||
'Default Warning Message',
|
||||
'Default warning message for outages. Use [from] and [until] placeholders as required.',
|
||||
'There is an scheduled maintenance from [from] to [until] and our system will not be available during that time.',
|
||||
PARAM_TEXT)
|
||||
);
|
||||
// Create category for Outage.
|
||||
$ADMIN->add('authsettings', new admin_category('auth_outage', 'Outage'));
|
||||
// Add settings page toconfigure defaults.
|
||||
$ADMIN->add('auth_outage', $settings);
|
||||
// Clear '$settings' to prevent adding again outsite category.
|
||||
$settings = null;
|
||||
// Add list page.
|
||||
$ADMIN->add('auth_outage',
|
||||
new admin_externalpage('auth_outage_list', 'Outage List',
|
||||
new moodle_url($CFG->wwwroot . '/auth/outage/list.php')
|
||||
));
|
||||
}
|
||||
@@ -28,8 +28,8 @@ if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.'); // It must be included from a Moodle page.
|
||||
}
|
||||
|
||||
$plugin->version = 2016082200; // The current plugin version (Date: YYYYMMDDXX).
|
||||
$plugin->release = 2016082200; // Same as version
|
||||
$plugin->version = 2016083000; // The current plugin version (Date: YYYYMMDDXX).
|
||||
$plugin->release = $plugin->version; // Same as version
|
||||
$plugin->requires = 2014051200; // Requires Moodle 2.7 or later.
|
||||
$plugin->component = "auth_outage";
|
||||
$plugin->maturity = MATURITY_ALPHA; // Not suitable for PRODUCTION environments yet!
|
||||
|
||||
Reference in New Issue
Block a user