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
. namespace core\event; defined('MOODLE_INTERNAL') || die(); require_once(__DIR__.'/../fixtures/event_fixtures.php'); /** * Tests for event manager, base event and observers. * * @package core * @category phpunit * @copyright 2014 Petr Skoda * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class unknown_logged_test extends \advanced_testcase { public function test_restore_event() { $event1 = \core_tests\event\unittest_executed::create(array('context' => \context_system::instance(), 'other' => array('sample' => 1, 'xx' => 10))); $data1 = $event1->get_data(); $data1['eventname'] = '\mod_xx\event\xx_yy'; $data1['component'] = 'mod_xx'; $data1['action'] = 'yy'; $data1['target'] = 'xx'; $extra1 = array('origin' => 'cli'); $event2 = \core\event\base::restore($data1, $extra1); $data2 = $event2->get_data(); $extra2 = $event2->get_logextra(); $this->assertInstanceOf('core\event\unknown_logged', $event2); $this->assertTrue($event2->is_triggered()); $this->assertTrue($event2->is_restored()); $this->assertNull($event2->get_url()); $this->assertEquals($data1, $data2); $this->assertEquals($extra1, $extra2); } }