. /** * Class containing data for a content view. * * @package core_contentbank * @copyright 2020 Victor Deniz * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace core_contentbank\output; use core_contentbank\content; use core_contentbank\contenttype; use moodle_url; use renderable; use renderer_base; use stdClass; use templatable; /** * Class containing data for the content view. * * @copyright 2020 Victor Deniz * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class viewcontent implements renderable, templatable { /** * @var contenttype Content bank content type. */ private $contenttype; /** * @var stdClass Record of the contentbank_content table. */ private $content; /** * Construct this renderable. * * @param contenttype $contenttype Content bank content type. * @param content $content Record of the contentbank_content table. */ public function __construct(contenttype $contenttype, content $content) { $this->contenttype = $contenttype; $this->content = $content; } /** * Export this data so it can be used as the context for a mustache template. * * @param renderer_base $output * * @return stdClass */ public function export_for_template(renderer_base $output): stdClass { $data = new stdClass(); // Get the content type html. $contenthtml = $this->contenttype->get_view_content($this->content); $data->contenthtml = $contenthtml; // Check if the user can edit this content type. if ($this->contenttype->can_edit($this->content)) { $data->usercanedit = true; $urlparams = [ 'contextid' => $this->content->get_contextid(), 'plugin' => $this->contenttype->get_plugin_name(), 'id' => $this->content->get_id() ]; $editcontenturl = new moodle_url('/contentbank/edit.php', $urlparams); $data->editcontenturl = $editcontenturl->out(false); } $closeurl = new moodle_url('/contentbank/index.php', ['contextid' => $this->content->get_contextid()]); $data->closeurl = $closeurl->out(false); return $data; } }