js: Use better method for using civi's jquery.
[org.fsf.memberdashboard.git] / memberdashboard.php
1 <?php
2
3 require_once 'memberdashboard.civix.php';
4
5 define('MEMBERDASHBOARD_SETTINGS_GROUP', 'Member Dashboard Preferences');
6 define('MEMBERDASHBOARD_MAX_EMAIL_ALIASES', 5);
7
8 /**
9 * Implementation of hook_civicrm_config
10 *
11 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_config
12 */
13 function memberdashboard_civicrm_config(&$config) {
14 _memberdashboard_civix_civicrm_config($config);
15 }
16
17 /**
18 * Implementation of hook_civicrm_xmlMenu
19 *
20 * @param $files array(string)
21 *
22 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_xmlMenu
23 */
24 function memberdashboard_civicrm_xmlMenu(&$files) {
25 _memberdashboard_civix_civicrm_xmlMenu($files);
26 }
27
28 /**
29 * Implementation of hook_civicrm_install
30 *
31 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_install
32 */
33 function memberdashboard_civicrm_install() {
34 _memberdashboard_civix_civicrm_install();
35 }
36
37 /**
38 * Implementation of hook_civicrm_uninstall
39 *
40 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_uninstall
41 */
42 function memberdashboard_civicrm_uninstall() {
43 _memberdashboard_civix_civicrm_uninstall();
44 }
45
46 /**
47 * Implementation of hook_civicrm_enable
48 *
49 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_enable
50 */
51 function memberdashboard_civicrm_enable() {
52 _memberdashboard_civix_civicrm_enable();
53 }
54
55 /**
56 * Implementation of hook_civicrm_disable
57 *
58 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_disable
59 */
60 function memberdashboard_civicrm_disable() {
61 _memberdashboard_civix_civicrm_disable();
62 }
63
64 /**
65 * Implementation of hook_civicrm_upgrade
66 *
67 * @param $op string, the type of operation being performed; 'check' or 'enqueue'
68 * @param $queue CRM_Queue_Queue, (for 'enqueue') the modifiable list of pending up upgrade tasks
69 *
70 * @return mixed based on op. for 'check', returns array(boolean) (TRUE if upgrades are pending)
71 * for 'enqueue', returns void
72 *
73 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_upgrade
74 */
75 function memberdashboard_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) {
76 return _memberdashboard_civix_civicrm_upgrade($op, $queue);
77 }
78
79 /**
80 * Implementation of hook_civicrm_managed
81 *
82 * Generate a list of entities to create/deactivate/delete when this module
83 * is installed, disabled, uninstalled.
84 *
85 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_managed
86 */
87 function memberdashboard_civicrm_managed(&$entities) {
88 _memberdashboard_civix_civicrm_managed($entities);
89 }
90
91 /**
92 * Implementation of hook_civicrm_caseTypes
93 *
94 * Generate a list of case-types
95 *
96 * Note: This hook only runs in CiviCRM 4.4+.
97 *
98 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_caseTypes
99 */
100 function memberdashboard_civicrm_caseTypes(&$caseTypes) {
101 _memberdashboard_civix_civicrm_caseTypes($caseTypes);
102 }
103
104 /**
105 * Implementation of hook_civicrm_alterSettingsFolders
106 *
107 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_alterSettingsFolders
108 */
109 function memberdashboard_civicrm_alterSettingsFolders(&$metaDataFolders = NULL) {
110 _memberdashboard_civix_civicrm_alterSettingsFolders($metaDataFolders);
111 }