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
. /** * Contains the service_factory, a locator for services for the favourites subsystem. * * Services encapsulate the business logic, and any data manipulation code, and are what clients should interact with. * * @package core_favourites * @copyright 2018 Jake Dallimore * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace core_favourites; defined('MOODLE_INTERNAL') || die(); /** * Class service_factory, providing functions for location of service objects for the favourites subsystem. * * This class is responsible for providing service objects to clients only. * * @copyright 2018 Jake Dallimore * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class service_factory { /** * Returns a basic service object providing operations for user favourites. * * @param \context_user $context the context of the user to which the service should be scoped. * @return \core_favourites\local\service\user_favourite_service the service object. */ public static function get_service_for_user_context(\context_user $context) : local\service\user_favourite_service { return new local\service\user_favourite_service($context, new local\repository\favourite_repository()); } /** * Returns a basic service object providing operations for favourites belonging to a given component. * * @param string $component frankenstyle component name. * @return local\service\component_favourite_service the service object. */ public static function get_service_for_component(string $component) : local\service\component_favourite_service { return new local\service\component_favourite_service($component, new local\repository\favourite_repository()); } }