. /** * Contains class block_rss_client\output\footer * * @package block_rss_client * @copyright 2015 Howard County Public School System * @author Brendan Anderson * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace block_rss_client\output; defined('MOODLE_INTERNAL') || die(); /** * Class to help display an RSS Block footer * * @package block_rss_client * @copyright 2015 Howard County Public School System * @author Brendan Anderson * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class footer implements \renderable, \templatable { /** * The link provided in the RSS channel * * @var \moodle_url */ protected $channelurl; /** * Constructor * * @param \moodle_url $channelurl The link provided in the RSS channel */ public function __construct(\moodle_url $channelurl) { $this->channelurl = $channelurl; } /** * Set the channel url * * @param \moodle_url $channelurl * @return \block_rss_client\output\footer */ public function set_channelurl(\moodle_url $channelurl) { $this->channelurl = $channelurl; return $this; } /** * Get the channel url * * @return \moodle_url */ public function get_channelurl() { return $this->channelurl; } /** * Export context for use in mustache templates * * @see templatable::export_for_template() * @param renderer_base $output * @return stdClass */ public function export_for_template(\renderer_base $output) { $data = new \stdClass(); $data->channellink = clean_param($this->channelurl, PARAM_URL); return $data; } }