Merge pull request #4979 from xurizaemon/codingstandards-12
[civicrm-core.git] / CRM / Extension / Manager / Module.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27
28/**
29 * This class stores logic for managing CiviCRM extensions.
30 *
31 * @package CRM
06b69b18 32 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
33 * $Id$
34 *
35 */
36class CRM_Extension_Manager_Module extends CRM_Extension_Manager_Base {
37
e0ef6999
EM
38 /**
39 * @param CRM_Extension_Mapper $mapper
40 */
6a488035
TO
41 public function __construct(CRM_Extension_Mapper $mapper) {
42 parent::__construct(FALSE);
43 $this->mapper = $mapper;
44 }
45
e0ef6999
EM
46 /**
47 * @param CRM_Extension_Info $info
48 */
6a488035
TO
49 public function onPreInstall(CRM_Extension_Info $info) {
50 $this->callHook($info, 'install');
51 $this->callHook($info, 'enable');
52 }
53
e0ef6999
EM
54 /**
55 * @param CRM_Extension_Info $info
56 */
3d0e24ec 57 public function onPostPostInstall(CRM_Extension_Info $info) {
58 $this->callHook($info, 'postInstall');
59 }
60
e0ef6999
EM
61 /**
62 * @param CRM_Extension_Info $info
100fef9d 63 * @param string $hookName
e0ef6999 64 */
6a488035
TO
65 private function callHook(CRM_Extension_Info $info, $hookName) {
66 try {
67 $file = $this->mapper->keyToPath($info->key);
0db6c3e1
TO
68 }
69 catch (CRM_Extension_Exception $e) {
6a488035
TO
70 return;
71 }
72 if (!file_exists($file)) {
73 return;
74 }
75 include_once $file;
76 $fnName = "{$info->file}_civicrm_{$hookName}";
77 if (function_exists($fnName)) {
78 $fnName();
79 }
80 }
81
e0ef6999
EM
82 /**
83 * @param CRM_Extension_Info $info
84 *
85 * @return bool
86 */
6a488035
TO
87 public function onPreUninstall(CRM_Extension_Info $info) {
88 $this->callHook($info, 'uninstall');
89 return TRUE;
90 }
91
e0ef6999
EM
92 /**
93 * @param CRM_Extension_Info $info
94 */
6a488035 95 public function onPostUninstall(CRM_Extension_Info $info) {
6a488035
TO
96 }
97
e0ef6999
EM
98 /**
99 * @param CRM_Extension_Info $info
100 */
6a488035
TO
101 public function onPreDisable(CRM_Extension_Info $info) {
102 $this->callHook($info, 'disable');
103 }
104
e0ef6999
EM
105 /**
106 * @param CRM_Extension_Info $info
107 */
6a488035
TO
108 public function onPreEnable(CRM_Extension_Info $info) {
109 $this->callHook($info, 'enable');
110 }
111}