Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.0.x will end 8 May 2023 (12 months).
  • Bug fixes for security issues in 4.0.x will end 13 November 2023 (18 months).
  • PHP version: minimum PHP 7.3.0 Note: the minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is also supported.

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.

Copyright: 2018 Jake Dallimore <jrhdallimore@gmail.com>
License: http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
File Size: 59 lines (3 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

service_factory:: (2 methods):
  get_service_for_user_context()
  get_service_for_component()


Class: service_factory  - X-Ref

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.

get_service_for_user_context(\context_user $context)   X-Ref
Returns a basic service object providing operations for user favourites.

return: \core_favourites\local\service\user_favourite_service the service object.
param: \context_user $context the context of the user to which the service should be scoped.

get_service_for_component(string $component)   X-Ref
Returns a basic service object providing operations for favourites belonging to a given component.

return: local\service\component_favourite_service the service object.
param: string $component frankenstyle component name.