Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/monara/public_html/test.athavaneng.com/themes.php on line 99
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 226
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 227
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 228
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 229
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 230
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 231
.
/**
* Site recommendations for the activity chooser.
*
* @package core_course
* @copyright 2020 Adrian Greeve
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once("../config.php");
$search = optional_param('search', '', PARAM_TEXT);
$context = context_system::instance();
$url = new moodle_url('/course/recommendations.php');
$pageheading = format_string($SITE->fullname, true, ['context' => $context]);
$PAGE->set_context($context);
$PAGE->set_url($url);
$PAGE->set_pagelayout('admin');
$PAGE->set_title(get_string('activitychooserrecommendations', 'course'));
$PAGE->set_heading($pageheading);
require_login();
require_capability('moodle/course:recommendactivity', $context);
$renderer = $PAGE->get_renderer('core_course', 'recommendations');
echo $renderer->header();
echo $renderer->heading(get_string('activitychooserrecommendations', 'course'));
$manager = \core_course\local\factory\content_item_service_factory::get_content_item_service();
if (!empty($search)) {
$modules = $manager->get_content_items_by_name_pattern($USER, $search);
} else {
$modules = $manager->get_all_content_items($USER);
}
$activitylist = new \core_course\output\recommendations\activity_list($modules, $search);
echo $renderer->render_activity_list($activitylist);
echo $renderer->footer();