CRM-16373 - rm CRM_Core_Config_Variables
[civicrm-core.git] / Civi.php
CommitLineData
711aa5d7
TO
1<?php
2
3/**
4 * Class Civi
5 *
6 * The "Civi" class provides a facade for accessing major subsystems,
7 * such as the service-container and settings manager. It serves as a
8 * bridge which allows procedural code to access important objects.
9 *
10 * General principles:
11 * - Each function provides access to a major subsystem.
12 * - Each function performs a simple lookup.
13 * - Each function returns an interface.
14 * - Whenever possible, interfaces should be well-known (e.g. based
15 * on a standard or well-regarded provider).
16 */
17class Civi {
18
19 /**
20 * A central location for static variable storage.
21 *
22 * @code
23 * `Civi::$statics[__CLASS__]['foo'] = 'bar';
24 * @endcode
25 */
26 public static $statics = array();
27
7b5937fe
TO
28 /**
29 * EXPERIMENTAL. Retrieve a named cache instance.
30 *
31 * This interface is flagged as experimental due to political
32 * ambiguity in PHP community -- PHP-FIG has an open but
33 * somewhat controversial draft standard for caching. Based on
34 * the current draft, it's expected that this function could
35 * simultaneously support both CRM_Utils_Cache_Interface and
36 * PSR-6, but that depends on whether PSR-6 changes any more.
37 *
38 * @param string $name
39 * The name of the cache. The 'default' cache is biased toward
40 * high-performance caches (eg memcache/redis/apc) when
41 * available and falls back to single-request (static) caching.
42 * @return CRM_Utils_Cache_Interface
43 */
44 public static function cache($name = 'default') {
45 return \Civi\Core\Container::singleton()->get('cache.' . $name);
46 }
47
711aa5d7
TO
48 /**
49 * Get the service container.
50 *
51 * @return \Symfony\Component\DependencyInjection\ContainerInterface
52 */
53 public static function container() {
54 return Civi\Core\Container::singleton();
55 }
56
6e5ad5ee
TO
57 /**
58 * @return \Psr\Log\LoggerInterface
59 */
60 public static function log() {
61 return Civi\Core\Container::singleton()->get('psr_log');
62 }
63
711aa5d7
TO
64 /**
65 * Fetch a service from the container.
66 *
67 * @param string $id
68 * The service ID.
69 * @return mixed
70 */
71 public static function service($id) {
72 return \Civi\Core\Container::singleton()->get($id);
73 }
74
75 /**
76 * Reset all ephemeral system state, e.g. statics,
77 * singletons, containers.
78 */
79 public static function reset() {
80 Civi\Core\Container::singleton(TRUE);
81 self::$statics = array();
82 }
83
3a84c0ab
TO
84 /**
85 * Obtain the domain settings.
86 *
87 * @param int|null $domainID
88 * For the default domain, leave $domainID as NULL.
89 * @return \Civi\Core\SettingsBag
90 */
91 public static function settings($domainID = NULL) {
92 return Civi\Core\Container::singleton()->get('settings_manager')->getBagByDomain($domainID);
93 }
94
711aa5d7 95}