-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfunding.php
99 lines (87 loc) · 3.03 KB
/
funding.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php
declare(strict_types = 1);
// phpcs:disable PSR1.Files.SideEffects
require_once 'funding.civix.php';
// phpcs:enable
use Civi\Funding\Api4\Permissions;
use Civi\RemoteTools\Api4\Api4Interface;
use CRM_Funding_ExtensionUtil as E;
use Symfony\Component\Config\Resource\FileResource;
use Symfony\Component\Config\Resource\GlobResource;
use Symfony\Component\DependencyInjection\ContainerBuilder;
function _funding_composer_autoload(): void {
if (file_exists(__DIR__ . '/vendor/autoload.php')) {
require_once __DIR__ . '/vendor/autoload.php';
}
}
/**
* Implements hook_civicrm_config().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_config/
*/
function funding_civicrm_config(\CRM_Core_Config &$config): void {
_funding_composer_autoload();
_funding_civix_civicrm_config($config);
}
function funding_civicrm_container(ContainerBuilder $container): void {
_funding_composer_autoload();
if (!interface_exists(Api4Interface::class)) {
// Extension de.systopia.remotetools is not loaded, yet.
return;
}
$globResource = new GlobResource(__DIR__ . '/services', '/*.php', FALSE);
// Container will be rebuilt if a *.php file is added to services
$container->addResource($globResource);
foreach ($globResource->getIterator() as $path => $info) {
// Container will be rebuilt if file changes
$container->addResource(new FileResource($path));
require $path;
}
if (function_exists('_funding_test_civicrm_container')) {
// Allow to use different services in tests.
_funding_test_civicrm_container($container);
}
}
/**
* Implements hook_civicrm_pageRun().
*/
function funding_civicrm_pageRun(\CRM_Core_Page $page): void {
if ($page instanceof \Civi\Angular\Page\Main) {
\Civi::resources()->addModuleFile(E::LONG_NAME, 'js/json-ptr.js');
}
}
/**
* Implements hook_civicrm_permission().
*
* @phpstan-param array<string, string|array{string, string}> $permissions
*/
function funding_civicrm_permission(array &$permissions): void {
$permissions[Permissions::ACCESS_FUNDING] = [
'label' => E::ts('CiviCRM: access Funding Program Manager'),
'description' => E::ts('Access non-administrative API of the Funding Program Manager'),
];
$permissions[Permissions::ACCESS_REMOTE_FUNDING] = [
'label' => E::ts('CiviCRM: remote access to Funding Program Manager'),
'description' => E::ts('Access remote API of the Funding Program Manager'),
];
$permissions[Permissions::ADMINISTER_FUNDING] = [
'label' => E::ts('CiviCRM: administer Funding Program Manager'),
'description' => E::ts('Access administrative and non-administrative API of the Funding Program Manager'),
];
}
/**
* Implements hook_civicrm_install().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_install
*/
function funding_civicrm_install(): void {
_funding_civix_civicrm_install();
}
/**
* Implements hook_civicrm_enable().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_enable
*/
function funding_civicrm_enable(): void {
_funding_civix_civicrm_enable();
}