Current Path : /var/www/ljmtc/cbt/mod/grouptool/classes/search/ |
Current File : /var/www/ljmtc/cbt/mod/grouptool/classes/search/activity.php |
<?php // This file is part of mod_grouptool for Moodle - http://moodle.org/ // // Moodle is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Moodle is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Moodle. If not, see <http://www.gnu.org/licenses/>. /** * Search area for mod_grouptool activities. * * @package mod_grouptool * @author Philipp Hager * @copyright 2014 Academic Moodle Cooperation {@link http://www.academic-moodle-cooperation.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace mod_grouptool\search; use core_search\document; defined('MOODLE_INTERNAL') || die(); /** * Search area for mod_grouptool activities. * * @package mod_grouptool * @author Philipp Hager * @copyright 2014 Academic Moodle Cooperation {@link http://www.academic-moodle-cooperation.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class activity extends \core_search\base_activity { /** * Returns true if this area uses file indexing. * * @return bool */ public function uses_file_indexing() { return true; } /** * Add the attached description files. * * @param document $document The current document * @throws \dml_missing_record_exception * @throws \coding_exception */ public function attach_files($document) { $fs = get_file_storage(); $cm = $this->get_cm($this->get_module_name(), $document->get('itemid'), $document->get('courseid')); $context = \context_module::instance($cm->id); $files = $fs->get_area_files($context->id, 'mod_grouptool', 'intro', false, 'sortorder DESC, id ASC', false); foreach ($files as $file) { $document->add_stored_file($file); } } }