info: Fix link to profile.
[org.fsf.memberdashboard.git] / memberdashboard.php
CommitLineData
33b56ebf
DT
1<?php
2
3require_once 'memberdashboard.civix.php';
4
79dea0b5 5define('MEMBERDASHBOARD_SETTINGS_GROUP', 'Member Dashboard Preferences');
73f5f860 6define('MEMBERDASHBOARD_MAX_EMAIL_ALIASES', 5);
79dea0b5 7
33b56ebf
DT
8/**
9 * Implementation of hook_civicrm_config
10 *
11 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_config
12 */
13function 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 */
24function 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 */
33function 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 */
42function 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 */
51function 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 */
60function 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 */
75function 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 */
87function 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 */
100function 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 */
109function memberdashboard_civicrm_alterSettingsFolders(&$metaDataFolders = NULL) {
110 _memberdashboard_civix_civicrm_alterSettingsFolders($metaDataFolders);
111}