芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/admin/tool/lp/classes/output/manage_competencies_page.php
. /** * Class containing data for managecompetencyframeworks page * * @package tool_lp * @copyright 2015 Damyon Wiese * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace tool_lp\output; defined('MOODLE_INTERNAL') || die(); use renderable; use templatable; use renderer_base; use single_button; use stdClass; use moodle_url; use context_system; use core_competency\api; use core_competency\competency; use core_competency\competency_framework; use core_competency\external\competency_framework_exporter; /** * Class containing data for managecompetencies page * * @copyright 2015 Damyon Wiese * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class manage_competencies_page implements renderable, templatable { /** @var \core_competency\competency_framework $framework This competency framework. */ protected $framework = null; /** @var \core_competency\competency[] $competencies List of competencies. */ protected $competencies = array(); /** @var string $search Text to search for. */ protected $search = ''; /** @var bool $canmanage Result of permissions checks. */ protected $canmanage = false; /** @var moodle_url $pluginurlbase Base url to use constructing links. */ protected $pluginbaseurl = null; /** @var context $pagecontext The page context. */ protected $pagecontext = null; /** @var \core_competency\competency $competency The competency to show when the page loads. */ protected $competency = null; /** * Construct this renderable. * * @param \core_competency\competency_framework $framework Competency framework. * @param string $search Search string. * @param context $pagecontext The page context. * @param \core_competency\competency $competency The core competency to show when the page loads. */ public function __construct($framework, $search, $pagecontext, $competency) { $this->framework = $framework; $this->pagecontext = $pagecontext; $this->search = $search; $this->competency = $competency; $addpage = new single_button( new moodle_url('/admin/tool/lp/editcompetencyframework.php'), get_string('addnewcompetency', 'tool_lp') ); $this->navigation[] = $addpage; $this->canmanage = has_capability('moodle/competency:competencymanage', $framework->get_context()); } /** * Export this data so it can be used as the context for a mustache template. * * @param renderer_base $output Renderer base. * @return stdClass */ public function export_for_template(renderer_base $output) { $data = new stdClass(); $exporter = new competency_framework_exporter($this->framework); $data->framework = $exporter->export($output); $data->canmanage = $this->canmanage; $data->search = $this->search; $data->pagecontextid = $this->pagecontext->id; $data->pluginbaseurl = (new moodle_url('/admin/tool/lp'))->out(true); $data->competencyid = 0; if ($this->competency) { $data->competencyid = $this->competency->get('id'); } $rulesmodules = array(); $rules = competency::get_available_rules(); foreach ($rules as $type => $rulename) { $amd = null; if ($type == 'core_competency\\competency_rule_all') { $amd = 'tool_lp/competency_rule_all'; } else if ($type == 'core_competency\\competency_rule_points') { $amd = 'tool_lp/competency_rule_points'; } else { // We do not know how to display that rule. continue; } $rulesmodules[] = [ 'name' => (string) $rulename, 'type' => $type, 'amd' => $amd, ]; } $data->rulesmodules = json_encode(array_values($rulesmodules)); return $data; } }