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