@@ -33,6 +33,8 @@ class CvPlugins {
33
33
* Ex: ['appName' => 'cv', 'appVersion' => '0.3.50']
34
34
*/
35
35
public function init (array $ pluginEnv ) {
36
+ require_once __DIR__ . '/cvplugin_loader.php ' ;
37
+
36
38
$ this ->pluginEnv = $ pluginEnv ;
37
39
if (getenv ('CV_PLUGIN_PATH ' )) {
38
40
$ this ->paths = explode (PATH_SEPARATOR , getenv ('CV_PLUGIN_PATH ' ));
@@ -68,11 +70,28 @@ public function init(array $pluginEnv) {
68
70
$ this ->loadAll ($ plugins );
69
71
}
70
72
73
+ /**
74
+ * Like CvPlugins::init(), this searches for and loads plugins. This is effectively
75
+ * the second phase of plugin-loading. It focuses on CiviCRM extensions
76
+ * which embed extra plugins.
77
+ */
78
+ public function initExtensions (): void {
79
+ $ plugins = [];
80
+ $ event = GenericHookEvent::create ([
81
+ 'plugins ' => &$ plugins ,
82
+ 'pluginEnv ' => $ this ->pluginEnv + ['protocol ' => self ::PROTOCOL_VERSION ],
83
+ ]);
84
+ \Civi::dispatcher ()->dispatch ('civi.cv-lib.plugins ' , $ event );
85
+
86
+ $ this ->loadAll ($ plugins );
87
+ }
88
+
71
89
/**
72
90
* @param array $plugins
73
91
* Ex: ['helloworld' => '/etc/cv/plugin/helloworld.php']
92
+ * @internal
74
93
*/
75
- protected function loadAll (array $ plugins ): void {
94
+ public function loadAll (array $ plugins ): void {
76
95
ksort ($ plugins );
77
96
foreach ($ plugins as $ pluginName => $ pluginFile ) {
78
97
$ this ->load ($ this ->pluginEnv + [
@@ -90,9 +109,21 @@ protected function loadAll(array $plugins): void {
90
109
* - version: Protocol version (ex: "1")
91
110
* - name: Basenemae of the plugin (eg `hello.php`)
92
111
* - file: Logic filename (eg `/etc/cv/plugin/hello.php`)
112
+ *
93
113
* @return void
114
+ * @internal
94
115
*/
95
- protected function load (array $ CV_PLUGIN ) {
116
+ public function load (array $ CV_PLUGIN ) {
117
+ if (isset ($ this ->plugins [$ CV_PLUGIN ['name ' ]])) {
118
+ if ($ this ->plugins [$ CV_PLUGIN ['name ' ]] === $ CV_PLUGIN ['file ' ]) {
119
+ return ;
120
+ }
121
+ else {
122
+ fprintf (STDERR , "WARNING: Plugin %s has already been loaded from %s. Ignore duplicate %s. \n" ,
123
+ $ CV_PLUGIN ['name ' ], $ this ->plugins [$ CV_PLUGIN ['name ' ]], $ CV_PLUGIN ['file ' ]);
124
+ return ;
125
+ }
126
+ }
96
127
$ this ->plugins [$ CV_PLUGIN ['name ' ]] = $ CV_PLUGIN ['file ' ];
97
128
include $ CV_PLUGIN ['file ' ];
98
129
}
0 commit comments