Browse Source

fix some phpdoc stuff.

MOODLE_33_STABLE
Dan Marsden 8 years ago
parent
commit
b1af6aabb1
  1. 23
      classes/sessions_page_params.php
  2. 22
      classes/summary.php
  3. 62
      lib.php
  4. 194
      renderer.php

23
classes/sessions_page_params.php

@ -31,11 +31,34 @@ defined('MOODLE_INTERNAL') || die();
* @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
*/ */
class mod_attendance_sessions_page_params { class mod_attendance_sessions_page_params {
/**
* Add Session.
*/
const ACTION_ADD = 1; const ACTION_ADD = 1;
/**
* Update Session.
*/
const ACTION_UPDATE = 2; const ACTION_UPDATE = 2;
/**
* Delete Session
*/
const ACTION_DELETE = 3; const ACTION_DELETE = 3;
/**
* Delete selected Sessions.
*/
const ACTION_DELETE_SELECTED = 4; const ACTION_DELETE_SELECTED = 4;
/**
* Change duration of a session.
*/
const ACTION_CHANGE_DURATION = 5; const ACTION_CHANGE_DURATION = 5;
/**
* Delete a hidden session.
*/
const ACTION_DELETE_HIDDEN = 6; const ACTION_DELETE_HIDDEN = 6;
/** @var int view mode of taking attendance page*/ /** @var int view mode of taking attendance page*/

22
classes/summary.php

@ -14,6 +14,14 @@
// You should have received a copy of the GNU General Public License // You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Class that computes summary of users points
*
* @package mod_attendance
* @copyright 2016 Antonio Carlos Mariani http://antonio.c.mariani@gmail.com
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die(); defined('MOODLE_INTERNAL') || die();
require_once($CFG->dirroot . '/mod/attendance/locallib.php'); require_once($CFG->dirroot . '/mod/attendance/locallib.php');
@ -47,8 +55,8 @@ class mod_attendance_summary {
/** /**
* Initializes the class * Initializes the class
* *
* @param int attendance instance identifier * @param int $attendanceid instance identifier
* @param array userids user instances identifier * @param array $userids user instances identifier
* @param int $startdate Attendance sessions startdate * @param int $startdate Attendance sessions startdate
* @param int $enddate Attendance sessions enddate * @param int $enddate Attendance sessions enddate
*/ */
@ -62,7 +70,7 @@ class mod_attendance_summary {
/** /**
* Returns true if the user has some session with points * Returns true if the user has some session with points
* *
* @param int userid User instance id * @param int $userid User instance id
* *
* @return boolean * @return boolean
*/ */
@ -106,7 +114,7 @@ class mod_attendance_summary {
/** /**
* Returns a summary of the points assigned to the user related to the taken sessions * Returns a summary of the points assigned to the user related to the taken sessions
* *
* @param int userid User instance id * @param int $userid User instance id
* *
* @return array * @return array
*/ */
@ -135,7 +143,7 @@ class mod_attendance_summary {
/** /**
* Returns a summary of the points assigned to the user, both related to taken sessions and related to all sessions * Returns a summary of the points assigned to the user, both related to taken sessions and related to all sessions
* *
* @param int userid User instance id * @param int $userid User instance id
* *
* @return array * @return array
*/ */
@ -172,7 +180,7 @@ class mod_attendance_summary {
/** /**
* Computes the summary of points for the users that have some taken session * Computes the summary of points for the users that have some taken session
* *
* @param array userids user instances identifier * @param array $userids user instances identifier
* @param int $startdate Attendance sessions startdate * @param int $startdate Attendance sessions startdate
* @param int $enddate Attendance sessions enddate * @param int $enddate Attendance sessions enddate
* @return (userid, numtakensessions, points, maxpoints) * @return (userid, numtakensessions, points, maxpoints)
@ -236,7 +244,7 @@ class mod_attendance_summary {
/** /**
* Computes the summary of taken sessions by acronym * Computes the summary of taken sessions by acronym
* *
* @param array userids user instances identifier * @param array $userids user instances identifier
* @param int $startdate Attendance sessions startdate * @param int $startdate Attendance sessions startdate
* @param int $enddate Attendance sessions enddate * @param int $enddate Attendance sessions enddate
* @return null * @return null

62
lib.php

@ -54,6 +54,11 @@ function attendance_supports($feature) {
} }
} }
/**
* Add default set of statuses to the new attendance.
*
* @param int $attid - id of attendance instance.
*/
function att_add_default_statuses($attid) { function att_add_default_statuses($attid) {
global $DB; global $DB;
@ -66,6 +71,12 @@ function att_add_default_statuses($attid) {
$statuses->close(); $statuses->close();
} }
/**
* Add new attendance instance.
*
* @param stdClass $attendance
* @return bool|int
*/
function attendance_add_instance($attendance) { function attendance_add_instance($attendance) {
global $DB; global $DB;
@ -80,7 +91,12 @@ function attendance_add_instance($attendance) {
return $attendance->id; return $attendance->id;
} }
/**
* Update existing attendance instance.
*
* @param stdClass $attendance
* @return bool
*/
function attendance_update_instance($attendance) { function attendance_update_instance($attendance) {
global $DB; global $DB;
@ -96,7 +112,12 @@ function attendance_update_instance($attendance) {
return true; return true;
} }
/**
* Delete existing attendance
*
* @param int $id
* @return bool
*/
function attendance_delete_instance($id) { function attendance_delete_instance($id) {
global $DB; global $DB;
@ -122,7 +143,7 @@ function attendance_delete_instance($id) {
/** /**
* Called by course/reset.php * Called by course/reset.php
* @param $mform form passed by reference * @param moodleform $mform form passed by reference
*/ */
function attendance_reset_course_form_definition(&$mform) { function attendance_reset_course_form_definition(&$mform) {
$mform->addElement('header', 'attendanceheader', get_string('modulename', 'attendance')); $mform->addElement('header', 'attendanceheader', get_string('modulename', 'attendance'));
@ -141,11 +162,20 @@ function attendance_reset_course_form_definition(&$mform) {
/** /**
* Course reset form defaults. * Course reset form defaults.
*
* @param stdClass $course
* @return array
*/ */
function attendance_reset_course_form_defaults($course) { function attendance_reset_course_form_defaults($course) {
return array('reset_attendance_log' => 0, 'reset_attendance_statuses' => 0, 'reset_attendance_sessions' => 0); return array('reset_attendance_log' => 0, 'reset_attendance_statuses' => 0, 'reset_attendance_sessions' => 0);
} }
/**
* Reset user data within attendance.
*
* @param stdClass $data
* @return array
*/
function attendance_reset_userdata($data) { function attendance_reset_userdata($data) {
global $DB; global $DB;
@ -198,12 +228,18 @@ function attendance_reset_userdata($data) {
return $status; return $status;
} }
/* /**
* Return a small object with summary information about what a * Return a small object with summary information about what a
* user has done with a given particular instance of this module * user has done with a given particular instance of this module
* Used for user activity reports. * Used for user activity reports.
* $return->time = the time they did it * $return->time = the time they did it
* $return->info = a short text description * $return->info = a short text description
*
* @param stdClass $course - full course record.
* @param stdClass $user - full user record
* @param stdClass $mod
* @param stdClass $attendance
* @return stdClass.
*/ */
function attendance_user_outline($course, $user, $mod, $attendance) { function attendance_user_outline($course, $user, $mod, $attendance) {
global $CFG; global $CFG;
@ -229,10 +265,14 @@ function attendance_user_outline($course, $user, $mod, $attendance) {
return $result; return $result;
} }
/* /**
* Print a detailed representation of what a user has done with * Print a detailed representation of what a user has done with
* a given particular instance of this module, for user activity reports. * a given particular instance of this module, for user activity reports.
* *
* @param stdClass $course
* @param stdClass $user
* @param stdClass $mod
* @param stdClass $attendance
*/ */
function attendance_user_complete($course, $user, $mod, $attendance) { function attendance_user_complete($course, $user, $mod, $attendance) {
global $CFG; global $CFG;
@ -245,14 +285,21 @@ function attendance_user_complete($course, $user, $mod, $attendance) {
} }
} }
/**
* Dummy function - must exist to allow quick editing of module name.
*
* @param stdClass $attendance
* @param int $userid
* @param bool $nullifnone
*/
function attendance_update_grades($attendance, $userid=0, $nullifnone=true) { function attendance_update_grades($attendance, $userid=0, $nullifnone=true) {
// We need this function to exist so that quick editing of module name is passed to gradebook. // We need this function to exist so that quick editing of module name is passed to gradebook.
} }
/** /**
* Create grade item for given attendance * Create grade item for given attendance
* *
* @param object $attendance object with extra cmidnumber * @param stdClass $attendance object with extra cmidnumber
* @param mixed optional array/object of grade(s); 'reset' means reset grades in gradebook * @param mixed $grades optional array/object of grade(s); 'reset' means reset grades in gradebook
* @return int 0 if ok, error code otherwise * @return int 0 if ok, error code otherwise
*/ */
function attendance_grade_item_update($attendance, $grades=null) { function attendance_grade_item_update($attendance, $grades=null) {
@ -390,7 +437,6 @@ function attendance_pluginfile($course, $cm, $context, $filearea, $args, $forced
* Print tabs on attendance settings page. * Print tabs on attendance settings page.
* *
* @param string $selected - current selected tab. * @param string $selected - current selected tab.
*
*/ */
function attendance_print_settings_tabs($selected = 'settings') { function attendance_print_settings_tabs($selected = 'settings') {
global $CFG; global $CFG;

194
renderer.php

@ -40,7 +40,7 @@ class mod_attendance_renderer extends plugin_renderer_base {
/** /**
* Renders tabs for attendance * Renders tabs for attendance
* *
* @param atttabs - tabs to display * @param attendance_tabs $atttabs - tabs to display
* @return string html code * @return string html code
*/ */
protected function render_attendance_tabs(attendance_tabs $atttabs) { protected function render_attendance_tabs(attendance_tabs $atttabs) {
@ -50,7 +50,7 @@ class mod_attendance_renderer extends plugin_renderer_base {
/** /**
* Renders filter controls for attendance * Renders filter controls for attendance
* *
* @param fcontrols - filter controls data to display * @param attendance_filter_controls $fcontrols - filter controls data to display
* @return string html code * @return string html code
*/ */
protected function render_attendance_filter_controls(attendance_filter_controls $fcontrols) { protected function render_attendance_filter_controls(attendance_filter_controls $fcontrols) {
@ -73,6 +73,12 @@ class mod_attendance_renderer extends plugin_renderer_base {
return $o; return $o;
} }
/**
* Render group selector
*
* @param attendance_filter_controls $fcontrols
* @return mixed|string
*/
protected function render_sess_group_selector(attendance_filter_controls $fcontrols) { protected function render_sess_group_selector(attendance_filter_controls $fcontrols) {
switch ($fcontrols->pageparams->selectortype) { switch ($fcontrols->pageparams->selectortype) {
case mod_attendance_page_with_filter_controls::SELECTOR_SESS_TYPE: case mod_attendance_page_with_filter_controls::SELECTOR_SESS_TYPE:
@ -93,6 +99,12 @@ class mod_attendance_renderer extends plugin_renderer_base {
return ''; return '';
} }
/**
* Render paging controls.
*
* @param attendance_filter_controls $fcontrols
* @return string
*/
protected function render_paging_controls(attendance_filter_controls $fcontrols) { protected function render_paging_controls(attendance_filter_controls $fcontrols) {
$pagingcontrols = ''; $pagingcontrols = '';
@ -127,6 +139,12 @@ class mod_attendance_renderer extends plugin_renderer_base {
return $pagingcontrols; return $pagingcontrols;
} }
/**
* Render date controls.
*
* @param attendance_filter_controls $fcontrols
* @return string
*/
protected function render_curdate_controls(attendance_filter_controls $fcontrols) { protected function render_curdate_controls(attendance_filter_controls $fcontrols) {
global $CFG; global $CFG;
@ -173,6 +191,12 @@ class mod_attendance_renderer extends plugin_renderer_base {
return $curdatecontrols; return $curdatecontrols;
} }
/**
* Render view controls.
*
* @param attendance_filter_controls $fcontrols
* @return string
*/
protected function render_view_controls(attendance_filter_controls $fcontrols) { protected function render_view_controls(attendance_filter_controls $fcontrols) {
$views[ATT_VIEW_ALL] = get_string('all', 'attendance'); $views[ATT_VIEW_ALL] = get_string('all', 'attendance');
$views[ATT_VIEW_ALLPAST] = get_string('allpast', 'attendance'); $views[ATT_VIEW_ALLPAST] = get_string('allpast', 'attendance');
@ -213,6 +237,12 @@ class mod_attendance_renderer extends plugin_renderer_base {
return $o; return $o;
} }
/**
* Render session manage table.
*
* @param attendance_manage_data $sessdata
* @return string
*/
protected function render_sess_manage_table(attendance_manage_data $sessdata) { protected function render_sess_manage_table(attendance_manage_data $sessdata) {
$this->page->requires->js_init_call('M.mod_attendance.init_manage'); $this->page->requires->js_init_call('M.mod_attendance.init_manage');
@ -261,6 +291,13 @@ class mod_attendance_renderer extends plugin_renderer_base {
return html_writer::table($table); return html_writer::table($table);
} }
/**
* Construct date time actions.
*
* @param attendance_manage_data $sessdata
* @param stdClass $sess
* @return array
*/
private function construct_date_time_actions(attendance_manage_data $sessdata, $sess) { private function construct_date_time_actions(attendance_manage_data $sessdata, $sess) {
$actions = ''; $actions = '';
@ -300,6 +337,12 @@ class mod_attendance_renderer extends plugin_renderer_base {
return array('date' => $date, 'time' => $time, 'actions' => $actions); return array('date' => $date, 'time' => $time, 'actions' => $actions);
} }
/**
* Render session manage control.
*
* @param attendance_manage_data $sessdata
* @return string
*/
protected function render_sess_manage_control(attendance_manage_data $sessdata) { protected function render_sess_manage_control(attendance_manage_data $sessdata) {
$table = new html_table(); $table = new html_table();
$table->attributes['class'] = ' '; $table->attributes['class'] = ' ';
@ -335,6 +378,12 @@ class mod_attendance_renderer extends plugin_renderer_base {
return html_writer::table($table); return html_writer::table($table);
} }
/**
* Render take data.
*
* @param attendance_take_data $takedata
* @return string
*/
protected function render_attendance_take_data(attendance_take_data $takedata) { protected function render_attendance_take_data(attendance_take_data $takedata) {
$controls = $this->render_attendance_take_controls($takedata); $controls = $this->render_attendance_take_controls($takedata);
$table = html_writer::start_div('no-overflow'); $table = html_writer::start_div('no-overflow');
@ -374,6 +423,12 @@ class mod_attendance_renderer extends plugin_renderer_base {
return $controls.$table.$statsoutput; return $controls.$table.$statsoutput;
} }
/**
* Render take controls.
*
* @param attendance_take_data $takedata
* @return string
*/
protected function render_attendance_take_controls(attendance_take_data $takedata) { protected function render_attendance_take_controls(attendance_take_data $takedata) {
$table = new html_table(); $table = new html_table();
$table->attributes['class'] = ' '; $table->attributes['class'] = ' ';
@ -384,6 +439,12 @@ class mod_attendance_renderer extends plugin_renderer_base {
return $this->output->container(html_writer::table($table), 'generalbox takecontrols'); return $this->output->container(html_writer::table($table), 'generalbox takecontrols');
} }
/**
* Construct take session info.
*
* @param attendance_take_data $takedata
* @return string
*/
private function construct_take_session_info(attendance_take_data $takedata) { private function construct_take_session_info(attendance_take_data $takedata) {
$sess = $takedata->sessioninfo; $sess = $takedata->sessioninfo;
$date = userdate($sess->sessdate, get_string('strftimedate')); $date = userdate($sess->sessdate, get_string('strftimedate'));
@ -398,6 +459,12 @@ class mod_attendance_renderer extends plugin_renderer_base {
return $sessinfo; return $sessinfo;
} }
/**
* Construct take controls.
*
* @param attendance_take_data $takedata
* @return string
*/
private function construct_take_controls(attendance_take_data $takedata) { private function construct_take_controls(attendance_take_data $takedata) {
global $CFG; global $CFG;
@ -498,6 +565,12 @@ class mod_attendance_renderer extends plugin_renderer_base {
return $controls; return $controls;
} }
/**
* Render take list.
*
* @param attendance_take_data $takedata
* @return string
*/
protected function render_attendance_take_list(attendance_take_data $takedata) { protected function render_attendance_take_list(attendance_take_data $takedata) {
global $PAGE, $CFG; global $PAGE, $CFG;
$table = new html_table(); $table = new html_table();
@ -602,6 +675,12 @@ class mod_attendance_renderer extends plugin_renderer_base {
return html_writer::table($table); return html_writer::table($table);
} }
/**
* Render take grid.
*
* @param attendance_take_data $takedata
* @return string
*/
protected function render_attendance_take_grid(attendance_take_data $takedata) { protected function render_attendance_take_grid(attendance_take_data $takedata) {
$table = new html_table(); $table = new html_table();
for ($i = 0; $i < $takedata->pageparams->gridcols; $i++) { for ($i = 0; $i < $takedata->pageparams->gridcols; $i++) {
@ -651,6 +730,12 @@ class mod_attendance_renderer extends plugin_renderer_base {
return html_writer::table($table); return html_writer::table($table);
} }
/**
* Construct full name.
*
* @param stdClass $data
* @return string
*/
private function construct_fullname_head($data) { private function construct_fullname_head($data) {
global $CFG; global $CFG;
@ -677,6 +762,13 @@ class mod_attendance_renderer extends plugin_renderer_base {
return $fullnamehead; return $fullnamehead;
} }
/**
* Construct take user controls.
*
* @param attendance_take_data $takedata
* @param stdClass $user
* @return array
*/
private function construct_take_user_controls(attendance_take_data $takedata, $user) { private function construct_take_user_controls(attendance_take_data $takedata, $user) {
$celldata = array(); $celldata = array();
if ($user->enrolmentend and $user->enrolmentend < $takedata->sessioninfo->sessdate) { if ($user->enrolmentend and $user->enrolmentend < $takedata->sessioninfo->sessdate) {
@ -731,6 +823,12 @@ class mod_attendance_renderer extends plugin_renderer_base {
return $celldata; return $celldata;
} }
/**
* Render header.
*
* @param mod_attendance_header $header
* @return string
*/
protected function render_mod_attendance_header(mod_attendance_header $header) { protected function render_mod_attendance_header(mod_attendance_header $header) {
if (!$header->should_render()) { if (!$header->should_render()) {
return ''; return '';
@ -748,6 +846,12 @@ class mod_attendance_renderer extends plugin_renderer_base {
return $o; return $o;
} }
/**
* Render user data.
*
* @param attendance_user_data $userdata
* @return string
*/
protected function render_attendance_user_data(attendance_user_data $userdata) { protected function render_attendance_user_data(attendance_user_data $userdata) {
$o = $this->render_user_report_tabs($userdata); $o = $this->render_user_report_tabs($userdata);
@ -764,6 +868,12 @@ class mod_attendance_renderer extends plugin_renderer_base {
return $o; return $o;
} }
/**
* Render user report tabs.
*
* @param attendance_user_data $userdata
* @return string
*/
protected function render_user_report_tabs(attendance_user_data $userdata) { protected function render_user_report_tabs(attendance_user_data $userdata) {
$tabs = array(); $tabs = array();
@ -781,6 +891,12 @@ class mod_attendance_renderer extends plugin_renderer_base {
return print_tabs(array($tabs), $userdata->pageparams->mode, null, null, true); return print_tabs(array($tabs), $userdata->pageparams->mode, null, null, true);
} }
/**
* Construct user data.
*
* @param attendance_user_data $userdata
* @return string
*/
private function construct_user_data(attendance_user_data $userdata) { private function construct_user_data(attendance_user_data $userdata) {
$o = html_writer::tag('h2', fullname($userdata->user)); $o = html_writer::tag('h2', fullname($userdata->user));
@ -814,6 +930,12 @@ class mod_attendance_renderer extends plugin_renderer_base {
return $o; return $o;
} }
/**
* Construct user sessions log.
*
* @param attendance_user_data $userdata
* @return string
*/
private function construct_user_sessions_log(attendance_user_data $userdata) { private function construct_user_sessions_log(attendance_user_data $userdata) {
$table = new html_table(); $table = new html_table();
$table->attributes['class'] = 'generaltable attwidth boxaligncenter'; $table->attributes['class'] = 'generaltable attwidth boxaligncenter';
@ -887,12 +1009,25 @@ class mod_attendance_renderer extends plugin_renderer_base {
return html_writer::table($table); return html_writer::table($table);
} }
/**
* Construct time for display.
*
* @param int $datetime
* @param int $duration
* @return string
*/
private function construct_time($datetime, $duration) { private function construct_time($datetime, $duration) {
$time = html_writer::tag('nobr', construct_session_time($datetime, $duration)); $time = html_writer::tag('nobr', construct_session_time($datetime, $duration));
return $time; return $time;
} }
/**
* Render report data.
*
* @param attendance_report_data $reportdata
* @return string
*/
protected function render_attendance_report_data(attendance_report_data $reportdata) { protected function render_attendance_report_data(attendance_report_data $reportdata) {
global $PAGE, $COURSE; global $PAGE, $COURSE;
@ -1332,7 +1467,7 @@ class mod_attendance_renderer extends plugin_renderer_base {
/** /**
* Build and return a html_table_cell for header rows * Build and return a html_table_cell for header rows
* *
* @param Mixed (html_table_cell or string) $cell the cell or a label for a cell * @param html_table_cell|string $cell the cell or a label for a cell
* @param boolean $contrast true menans the cell must be shown with bgcolor contrast * @param boolean $contrast true menans the cell must be shown with bgcolor contrast
* @param boolean $center true means the cell text should be centered. Othersiwe it should be left-aligned. * @param boolean $center true means the cell text should be centered. Othersiwe it should be left-aligned.
* @param int $colspan how many columns should cell spans * @param int $colspan how many columns should cell spans
@ -1360,7 +1495,7 @@ class mod_attendance_renderer extends plugin_renderer_base {
/** /**
* Build and return a html_table_cell for data rows * Build and return a html_table_cell for data rows
* *
* @param Mixed (html_table_cell or string) $cell the cell or a label for a cell * @param html_table_cell|string $cell the cell or a label for a cell
* @param boolean $contrast true menans the cell must be shown with bgcolor contrast * @param boolean $contrast true menans the cell must be shown with bgcolor contrast
* @param boolean $center true means the cell text should be centered. Othersiwe it should be left-aligned. * @param boolean $center true means the cell text should be centered. Othersiwe it should be left-aligned.
* @param int $colspan how many columns should cell spans * @param int $colspan how many columns should cell spans
@ -1388,7 +1523,7 @@ class mod_attendance_renderer extends plugin_renderer_base {
/** /**
* Build and return a html_table_cell for header or data rows * Build and return a html_table_cell for header or data rows
* *
* @param Mixed (html_table_cell or string) $cell the cell or a label for a cell * @param html_table_cell|string $cell the cell or a label for a cell
* @param Array $classes a list of css classes * @param Array $classes a list of css classes
* @param int $colspan how many columns should cell spans * @param int $colspan how many columns should cell spans
* @param int $rowspan how many rows should cell spans * @param int $rowspan how many rows should cell spans
@ -1449,6 +1584,12 @@ class mod_attendance_renderer extends plugin_renderer_base {
return $this->output->url_select($opts, $selected, null); return $this->output->url_select($opts, $selected, null);
} }
/**
* Render preferences data.
*
* @param stdClass $prefdata
* @return string
*/
protected function render_attendance_preferences_data($prefdata) { protected function render_attendance_preferences_data($prefdata) {
$this->page->requires->js('/mod/attendance/module.js'); $this->page->requires->js('/mod/attendance/module.js');
@ -1505,14 +1646,35 @@ class mod_attendance_renderer extends plugin_renderer_base {
return $o; return $o;
} }
/**
* Render default statusset.
*
* @param attendance_default_statusset $prefdata
* @return string
*/
protected function render_attendance_default_statusset(attendance_default_statusset $prefdata) { protected function render_attendance_default_statusset(attendance_default_statusset $prefdata) {
return $this->render_attendance_preferences_data($prefdata); return $this->render_attendance_preferences_data($prefdata);
} }
/**
* Render preferences data.
*
* @param stdClass $prefdata
* @return string
*/
protected function render_attendance_pref($prefdata) { protected function render_attendance_pref($prefdata) {
} }
/**
* Construct text input.
*
* @param string $name
* @param integer $size
* @param integer $maxlength
* @param string $value
* @return string
*/
private function construct_text_input($name, $size, $maxlength, $value='') { private function construct_text_input($name, $size, $maxlength, $value='') {
$attributes = array( $attributes = array(
'type' => 'text', 'type' => 'text',
@ -1523,6 +1685,13 @@ class mod_attendance_renderer extends plugin_renderer_base {
return html_writer::empty_tag('input', $attributes); return html_writer::empty_tag('input', $attributes);
} }
/**
* Construct action icons.
*
* @param stdClass $st
* @param stdClass $prefdata
* @return string
*/
private function construct_preferences_actions_icons($st, $prefdata) { private function construct_preferences_actions_icons($st, $prefdata) {
global $OUTPUT; global $OUTPUT;
$params = array('sesskey' => sesskey(), $params = array('sesskey' => sesskey(),
@ -1550,6 +1719,13 @@ class mod_attendance_renderer extends plugin_renderer_base {
return $showhideicon . $deleteicon; return $showhideicon . $deleteicon;
} }
/**
* Construct preferences button.
*
* @param string $text
* @param string $action
* @return string
*/
private function construct_preferences_button($text, $action) { private function construct_preferences_button($text, $action) {
$attributes = array( $attributes = array(
'type' => 'submit', 'type' => 'submit',
@ -1570,7 +1746,13 @@ class mod_attendance_renderer extends plugin_renderer_base {
return html_writer::tag('p', $text, $attributes); return html_writer::tag('p', $text, $attributes);
} }
// Show different picture if it is a temporary user. /**
* Show different picture if it is a temporary user.
*
* @param stdClass $user
* @param array $opts
* @return string
*/
protected function user_picture($user, array $opts = null) { protected function user_picture($user, array $opts = null) {
if ($user->type == 'temporary') { if ($user->type == 'temporary') {
$attrib = array( $attrib = array(

Loading…
Cancel
Save