芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/admin/tool/lp/classes/output/template_cohorts_page.php
. /** * Template cohorts page renderable. * * @package tool_lp * @copyright 2015 Frédéric Massart - FMCorz.net * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace tool_lp\output; defined('MOODLE_INTERNAL') || die(); /** * Template cohorts renderable. * * @package tool_lp * @copyright 2015 Frédéric Massart - FMCorz.net * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class template_cohorts_page implements \renderable { /** * Constructor. * @param \core_competency\template $template * @param \moodle_url $url */ public function __construct(\core_competency\template $template, \moodle_url $url) { $this->template = $template; $this->url = $url; $this->table = new template_cohorts_table('tplcohorts', $template); $this->table->define_baseurl($url); } }