Renderable class to display a set of rules in the manage subscriptions page.
Copyright: | 2014 onwards Ankit Agarwal <ankit.agrr@gmail.com> |
License: | http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later |
File Size: | 227 lines (8 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
rules:: (10 methods):
__construct()
col_name()
col_description()
col_course()
col_plugin()
col_eventname()
col_filters()
col_select()
query_db()
get_user_courses_select()
__construct($uniqueid, \moodle_url $url, $courseid = 0, $perpage = 100) X-Ref |
Sets up the table_log parameters. param: string $uniqueid unique id of form. param: \moodle_url $url url where this table is displayed. param: int $courseid course id. param: int $perpage Number of rules to display per page. |
col_name(\tool_monitor\rule $rule) X-Ref |
Generate content for name column. return: string html used to display the rule name. param: \tool_monitor\rule $rule rule object |
col_description(\tool_monitor\rule $rule) X-Ref |
Generate content for description column. return: string html used to display the description. param: \tool_monitor\rule $rule rule object |
col_course(\tool_monitor\rule $rule) X-Ref |
Generate content for course column. return: string html used to display the course name. param: \tool_monitor\rule $rule rule object |
col_plugin(\tool_monitor\rule $rule) X-Ref |
Generate content for plugin column. return: string html used to display the plugin name. param: \tool_monitor\rule $rule rule object |
col_eventname(\tool_monitor\rule $rule) X-Ref |
Generate content for eventname column. return: string html used to display the event name. param: \tool_monitor\rule $rule rule object |
col_filters(\tool_monitor\rule $rule) X-Ref |
Generate content for filters column. return: string html used to display the filters. param: \tool_monitor\rule $rule rule object |
col_select(\tool_monitor\rule $rule) X-Ref |
Generate content for select column. return: string html used to display the select field. param: \tool_monitor\rule $rule rule object |
query_db($pagesize, $useinitialsbar = true) X-Ref |
Query the reader. Store results in the object for use by build_table. param: int $pagesize size of page for paginated displayed table. param: bool $useinitialsbar do you want to use the initials bar. |
get_user_courses_select($choose = false) X-Ref |
Gets a list of courses where the current user can subscribe to rules as a dropdown. return: \single_select|bool returns the list of courses, or false if the select box param: bool $choose A flag for whether to show the 'choose...' option in the select box. |