Merge pull request #15833 from yashodha/participant_edit
[civicrm-core.git] / CRM / Extension / Container / Static.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
f299f7db 6 | Copyright CiviCRM LLC (c) 2004-2020 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 * @package CRM
f299f7db 30 * @copyright CiviCRM LLC (c) 2004-2020
6a488035
TO
31 */
32
33/**
34 * An extension container is a locally-accessible source tree which can be
35 * scanned for extensions.
36 */
37class CRM_Extension_Container_Static implements CRM_Extension_Container_Interface {
7b966967 38
e0ef6999 39 /**
78612209
TO
40 * @param array $exts
41 * Array(string $key => array $spec) List of extensions.
e0ef6999 42 */
6a488035
TO
43 public function __construct($exts) {
44 $this->exts = $exts;
45 }
46
58119ee4 47 /**
e7c15cb6 48 * @inheritDoc
58119ee4
TO
49 */
50 public function checkRequirements() {
be2fb01f 51 return [];
58119ee4
TO
52 }
53
6a488035 54 /**
e7c15cb6 55 * @inheritDoc
6a488035
TO
56 */
57 public function getName() {
58 return $this->name;
59 }
60
61 /**
e7c15cb6 62 * @inheritDoc
6a488035
TO
63 */
64 public function getKeys() {
65 return array_keys($this->exts);
66 }
67
68 /**
e7c15cb6 69 * @inheritDoc
6a488035
TO
70 */
71 public function getPath($key) {
72 $e = $this->getExt($key);
73 return $e['path'];
74 }
75
76 /**
e7c15cb6 77 * @inheritDoc
6a488035
TO
78 */
79 public function getResUrl($key) {
80 $e = $this->getExt($key);
81 return $e['resUrl'];
82 }
83
84 /**
e7c15cb6 85 * @inheritDoc
6a488035
TO
86 */
87 public function refresh() {
88 }
89
e0ef6999 90 /**
78612209
TO
91 * @param string $key
92 * Extension name.
e0ef6999
EM
93 *
94 * @throws CRM_Extension_Exception_MissingException
95 */
6a488035
TO
96 protected function getExt($key) {
97 if (isset($this->exts[$key])) {
98 return $this->exts[$key];
78612209
TO
99 }
100 else {
6a488035
TO
101 throw new CRM_Extension_Exception_MissingException("Missing extension: $key");
102 }
103 }
96025800 104
6a488035 105}