. /** * Contains class used to display message search results. * * @package core_message * @copyright 2016 Mark Nelson * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace core_message\output\messagearea; defined('MOODLE_INTERNAL') || die(); use renderable; use templatable; /** * Class used to display message search results. * * @package core_message * @copyright 2016 Mark Nelson * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class message_search_results implements templatable, renderable { /** * @var array The list of contacts. */ public $contacts; /** * Constructor. * * @param array $contacts */ public function __construct($contacts) { $this->contacts = $contacts; } public function export_for_template(\renderer_base $output) { $data = new \stdClass(); $data->contacts = array(); foreach ($this->contacts as $contact) { $contact = new contact($contact); $data->contacts[] = $contact->export_for_template($output); } return $data; } }