3 // AUTO-GENERATED FILE -- Civix may overwrite any changes made to this file
6 * The ExtensionUtil class provides small stubs for accessing resources of this
9 class CRM_Ewaysingle_ExtensionUtil
{
10 const SHORT_NAME
= "ewaysingle";
11 const LONG_NAME
= "ewaysingle";
12 const CLASS_PREFIX
= "CRM_Ewaysingle";
15 * Translate a string using the extension's domain.
17 * If the extension doesn't have a specific translation
18 * for the string, fallback to the default translations.
21 * Canonical message text (generally en_US).
22 * @param array $params
27 public static function ts($text, $params = []) {
28 if (!array_key_exists('domain', $params)) {
29 $params['domain'] = [self
::LONG_NAME
, NULL];
31 return ts($text, $params);
35 * Get the URL of a resource file (in this extension).
37 * @param string|NULL $file
41 * Ex: 'http://example.org/sites/default/ext/org.example.foo'.
42 * Ex: 'http://example.org/sites/default/ext/org.example.foo/css/foo.css'.
44 public static function url($file = NULL) {
46 return rtrim(CRM_Core_Resources
::singleton()->getUrl(self
::LONG_NAME
), '/');
48 return CRM_Core_Resources
::singleton()->getUrl(self
::LONG_NAME
, $file);
52 * Get the path of a resource file (in this extension).
54 * @param string|NULL $file
58 * Ex: '/var/www/example.org/sites/default/ext/org.example.foo'.
59 * Ex: '/var/www/example.org/sites/default/ext/org.example.foo/css/foo.css'.
61 public static function path($file = NULL) {
62 // return CRM_Core_Resources::singleton()->getPath(self::LONG_NAME, $file);
63 return __DIR__
. ($file === NULL ?
'' : (DIRECTORY_SEPARATOR
. $file));
67 * Get the name of a class within this extension.
69 * @param string $suffix
70 * Ex: 'Page_HelloWorld' or 'Page\\HelloWorld'.
72 * Ex: 'CRM_Foo_Page_HelloWorld'.
74 public static function findClass($suffix) {
75 return self
::CLASS_PREFIX
. '_' . str_replace('\\', '_', $suffix);
80 use CRM_Ewaysingle_ExtensionUtil
as E
;
83 * (Delegated) Implements hook_civicrm_config().
85 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_config
87 function _ewaysingle_civix_civicrm_config(&$config = NULL) {
88 static $configured = FALSE;
94 $template =& CRM_Core_Smarty
::singleton();
96 $extRoot = dirname(__FILE__
) . DIRECTORY_SEPARATOR
;
97 $extDir = $extRoot . 'templates';
99 if (is_array($template->template_dir
)) {
100 array_unshift($template->template_dir
, $extDir);
103 $template->template_dir
= [$extDir, $template->template_dir
];
106 $include_path = $extRoot . PATH_SEPARATOR
. get_include_path();
107 set_include_path($include_path);
111 * (Delegated) Implements hook_civicrm_xmlMenu().
113 * @param $files array(string)
115 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_xmlMenu
117 function _ewaysingle_civix_civicrm_xmlMenu(&$files) {
118 foreach (_ewaysingle_civix_glob(__DIR__
. '/xml/Menu/*.xml') as $file) {
124 * Implements hook_civicrm_install().
126 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_install
128 function _ewaysingle_civix_civicrm_install() {
129 _ewaysingle_civix_civicrm_config();
130 if ($upgrader = _ewaysingle_civix_upgrader()) {
131 $upgrader->onInstall();
136 * Implements hook_civicrm_postInstall().
138 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_postInstall
140 function _ewaysingle_civix_civicrm_postInstall() {
141 _ewaysingle_civix_civicrm_config();
142 if ($upgrader = _ewaysingle_civix_upgrader()) {
143 if (is_callable([$upgrader, 'onPostInstall'])) {
144 $upgrader->onPostInstall();
150 * Implements hook_civicrm_uninstall().
152 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_uninstall
154 function _ewaysingle_civix_civicrm_uninstall() {
155 _ewaysingle_civix_civicrm_config();
156 if ($upgrader = _ewaysingle_civix_upgrader()) {
157 $upgrader->onUninstall();
162 * (Delegated) Implements hook_civicrm_enable().
164 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_enable
166 function _ewaysingle_civix_civicrm_enable() {
167 _ewaysingle_civix_civicrm_config();
168 if ($upgrader = _ewaysingle_civix_upgrader()) {
169 if (is_callable([$upgrader, 'onEnable'])) {
170 $upgrader->onEnable();
176 * (Delegated) Implements hook_civicrm_disable().
178 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_disable
181 function _ewaysingle_civix_civicrm_disable() {
182 _ewaysingle_civix_civicrm_config();
183 if ($upgrader = _ewaysingle_civix_upgrader()) {
184 if (is_callable([$upgrader, 'onDisable'])) {
185 $upgrader->onDisable();
191 * (Delegated) Implements hook_civicrm_upgrade().
193 * @param $op string, the type of operation being performed; 'check' or 'enqueue'
194 * @param $queue CRM_Queue_Queue, (for 'enqueue') the modifiable list of pending up upgrade tasks
197 * based on op. for 'check', returns array(boolean) (TRUE if upgrades are pending)
198 * for 'enqueue', returns void
200 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_upgrade
202 function _ewaysingle_civix_civicrm_upgrade($op, CRM_Queue_Queue
$queue = NULL) {
203 if ($upgrader = _ewaysingle_civix_upgrader()) {
204 return $upgrader->onUpgrade($op, $queue);
209 * @return CRM_Ewaysingle_Upgrader
211 function _ewaysingle_civix_upgrader() {
212 if (!file_exists(__DIR__
. '/CRM/Ewaysingle/Upgrader.php')) {
216 return CRM_Ewaysingle_Upgrader_Base
::instance();
221 * Search directory tree for files which match a glob pattern.
223 * Note: Dot-directories (like "..", ".git", or ".svn") will be ignored.
224 * Note: In Civi 4.3+, delegate to CRM_Utils_File::findFiles()
226 * @param string $dir base dir
227 * @param string $pattern , glob pattern, eg "*.txt"
231 function _ewaysingle_civix_find_files($dir, $pattern) {
232 if (is_callable(['CRM_Utils_File', 'findFiles'])) {
233 return CRM_Utils_File
::findFiles($dir, $pattern);
238 while (!empty($todos)) {
239 $subdir = array_shift($todos);
240 foreach (_ewaysingle_civix_glob("$subdir/$pattern") as $match) {
241 if (!is_dir($match)) {
245 if ($dh = opendir($subdir)) {
246 while (FALSE !== ($entry = readdir($dh))) {
247 $path = $subdir . DIRECTORY_SEPARATOR
. $entry;
248 if ($entry[0] == '.') {
250 elseif (is_dir($path)) {
261 * (Delegated) Implements hook_civicrm_managed().
263 * Find any *.mgd.php files, merge their content, and return.
265 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_managed
267 function _ewaysingle_civix_civicrm_managed(&$entities) {
268 $mgdFiles = _ewaysingle_civix_find_files(__DIR__
, '*.mgd.php');
270 foreach ($mgdFiles as $file) {
272 foreach ($es as $e) {
273 if (empty($e['module'])) {
274 $e['module'] = E
::LONG_NAME
;
276 if (empty($e['params']['version'])) {
277 $e['params']['version'] = '3';
285 * (Delegated) Implements hook_civicrm_caseTypes().
287 * Find any and return any files matching "xml/case/*.xml"
289 * Note: This hook only runs in CiviCRM 4.4+.
291 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_caseTypes
293 function _ewaysingle_civix_civicrm_caseTypes(&$caseTypes) {
294 if (!is_dir(__DIR__
. '/xml/case')) {
298 foreach (_ewaysingle_civix_glob(__DIR__
. '/xml/case/*.xml') as $file) {
299 $name = preg_replace('/\.xml$/', '', basename($file));
300 if ($name != CRM_Case_XMLProcessor
::mungeCaseType($name)) {
301 $errorMessage = sprintf("Case-type file name is malformed (%s vs %s)", $name, CRM_Case_XMLProcessor
::mungeCaseType($name));
302 throw new CRM_Core_Exception($errorMessage);
304 $caseTypes[$name] = [
305 'module' => E
::LONG_NAME
,
313 * (Delegated) Implements hook_civicrm_angularModules().
315 * Find any and return any files matching "ang/*.ang.php"
317 * Note: This hook only runs in CiviCRM 4.5+.
319 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_angularModules
321 function _ewaysingle_civix_civicrm_angularModules(&$angularModules) {
322 if (!is_dir(__DIR__
. '/ang')) {
326 $files = _ewaysingle_civix_glob(__DIR__
. '/ang/*.ang.php');
327 foreach ($files as $file) {
328 $name = preg_replace(':\.ang\.php$:', '', basename($file));
329 $module = include $file;
330 if (empty($module['ext'])) {
331 $module['ext'] = E
::LONG_NAME
;
333 $angularModules[$name] = $module;
338 * (Delegated) Implements hook_civicrm_themes().
340 * Find any and return any files matching "*.theme.php"
342 function _ewaysingle_civix_civicrm_themes(&$themes) {
343 $files = _ewaysingle_civix_glob(__DIR__
. '/*.theme.php');
344 foreach ($files as $file) {
345 $themeMeta = include $file;
346 if (empty($themeMeta['name'])) {
347 $themeMeta['name'] = preg_replace(':\.theme\.php$:', '', basename($file));
349 if (empty($themeMeta['ext'])) {
350 $themeMeta['ext'] = E
::LONG_NAME
;
352 $themes[$themeMeta['name']] = $themeMeta;
357 * Glob wrapper which is guaranteed to return an array.
359 * The documentation for glob() says, "On some systems it is impossible to
360 * distinguish between empty match and an error." Anecdotally, the return
361 * result for an empty match is sometimes array() and sometimes FALSE.
362 * This wrapper provides consistency.
364 * @link http://php.net/glob
365 * @param string $pattern
369 function _ewaysingle_civix_glob($pattern) {
370 $result = glob($pattern);
371 return is_array($result) ?
$result : [];
375 * Inserts a navigation menu item at a given place in the hierarchy.
377 * @param array $menu - menu hierarchy
378 * @param string $path - path to parent of this item, e.g. 'my_extension/submenu'
379 * 'Mailing', or 'Administer/System Settings'
380 * @param array $item - the item to insert (parent/child attributes will be
385 function _ewaysingle_civix_insert_navigation_menu(&$menu, $path, $item) {
386 // If we are done going down the path, insert menu
389 'attributes' => array_merge([
390 'label' => CRM_Utils_Array
::value('name', $item),
397 // Find an recurse into the next level down
399 $path = explode('/', $path);
400 $first = array_shift($path);
401 foreach ($menu as $key => &$entry) {
402 if ($entry['attributes']['name'] == $first) {
403 if (!isset($entry['child'])) {
404 $entry['child'] = [];
406 $found = _ewaysingle_civix_insert_navigation_menu($entry['child'], implode('/', $path), $item);
414 * (Delegated) Implements hook_civicrm_navigationMenu().
416 function _ewaysingle_civix_navigationMenu(&$nodes) {
417 if (!is_callable(['CRM_Core_BAO_Navigation', 'fixNavigationMenu'])) {
418 _ewaysingle_civix_fixNavigationMenu($nodes);
423 * Given a navigation menu, generate navIDs for any items which are
426 function _ewaysingle_civix_fixNavigationMenu(&$nodes) {
428 array_walk_recursive($nodes, function($item, $key) use (&$maxNavID) {
429 if ($key === 'navID') {
430 $maxNavID = max($maxNavID, $item);
433 _ewaysingle_civix_fixNavigationMenuItems($nodes, $maxNavID, NULL);
436 function _ewaysingle_civix_fixNavigationMenuItems(&$nodes, &$maxNavID, $parentID) {
437 $origKeys = array_keys($nodes);
438 foreach ($origKeys as $origKey) {
439 if (!isset($nodes[$origKey]['attributes']['parentID']) && $parentID !== NULL) {
440 $nodes[$origKey]['attributes']['parentID'] = $parentID;
442 // If no navID, then assign navID and fix key.
443 if (!isset($nodes[$origKey]['attributes']['navID'])) {
444 $newKey = ++
$maxNavID;
445 $nodes[$origKey]['attributes']['navID'] = $newKey;
446 $nodes[$newKey] = $nodes[$origKey];
447 unset($nodes[$origKey]);
450 if (isset($nodes[$origKey]['child']) && is_array($nodes[$origKey]['child'])) {
451 _ewaysingle_civix_fixNavigationMenuItems($nodes[$origKey]['child'], $maxNavID, $nodes[$origKey]['attributes']['navID']);
457 * (Delegated) Implements hook_civicrm_alterSettingsFolders().
459 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_alterSettingsFolders
461 function _ewaysingle_civix_civicrm_alterSettingsFolders(&$metaDataFolders = NULL) {
462 $settingsDir = __DIR__
. DIRECTORY_SEPARATOR
. 'settings';
463 if (!in_array($settingsDir, $metaDataFolders) && is_dir($settingsDir)) {
464 $metaDataFolders[] = $settingsDir;
469 * (Delegated) Implements hook_civicrm_entityTypes().
471 * Find any *.entityType.php files, merge their content, and return.
473 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_entityTypes
475 function _ewaysingle_civix_civicrm_entityTypes(&$entityTypes) {
476 $entityTypes = array_merge($entityTypes, []);