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
. /** * Atto text editor integration version file. * * @package atto_h5p * @copyright 2019 Bas Brands * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); use core_h5p\local\library\autoloader; /** * Set params for this button. * * @param string $elementid * @param stdClass $options - the options for the editor, including the context. * @param stdClass $fpoptions - unused. */ function atto_h5p_params_for_js($elementid, $options, $fpoptions) { $context = $options['context']; if (!$context) { $context = context_system::instance(); } $addembed = has_capability('atto/h5p:addembed', $context); $upload = has_capability('moodle/h5p:deploy', $context); $allowedmethods = 'none'; if ($addembed && $upload) { $allowedmethods = 'both'; } else if ($addembed) { $allowedmethods = 'embed'; } else if ($upload) { $allowedmethods = 'upload'; } $params = [ 'allowedmethods' => $allowedmethods, 'storeinrepo' => true ]; return $params; } /** * Initialise the strings required for js */ function atto_h5p_strings_for_js() { global $PAGE; $strings = array( 'browserepositories', 'copyrightbutton', 'downloadbutton', 'instructions', 'embedbutton', 'h5pfile', 'h5poptions', 'h5purl', 'h5pfileorurl', 'invalidh5purl', 'noh5pcontent', 'pluginname' ); $PAGE->requires->strings_for_js($strings, 'atto_h5p'); $PAGE->requires->strings_for_js(['expand', 'collapse'], 'moodle'); $PAGE->requires->js(autoloader::get_h5p_core_library_url('js/h5p-resizer.js')); }