Minor comment fixes for CRM/Extensions directory.
[civicrm-core.git] / CRM / Extension / Manager / Module.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 * This class stores logic for managing CiviCRM extensions.
30 *
31 * @package CRM
e7112fa7 32 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
33 */
34class CRM_Extension_Manager_Module extends CRM_Extension_Manager_Base {
35
e0ef6999
EM
36 /**
37 * @param CRM_Extension_Mapper $mapper
38 */
6a488035
TO
39 public function __construct(CRM_Extension_Mapper $mapper) {
40 parent::__construct(FALSE);
41 $this->mapper = $mapper;
42 }
43
e0ef6999
EM
44 /**
45 * @param CRM_Extension_Info $info
46 */
6a488035
TO
47 public function onPreInstall(CRM_Extension_Info $info) {
48 $this->callHook($info, 'install');
49 $this->callHook($info, 'enable');
50 }
51
e0ef6999
EM
52 /**
53 * @param CRM_Extension_Info $info
54 */
3d0e24ec 55 public function onPostPostInstall(CRM_Extension_Info $info) {
56 $this->callHook($info, 'postInstall');
57 }
58
e0ef6999
EM
59 /**
60 * @param CRM_Extension_Info $info
100fef9d 61 * @param string $hookName
e0ef6999 62 */
6a488035
TO
63 private function callHook(CRM_Extension_Info $info, $hookName) {
64 try {
65 $file = $this->mapper->keyToPath($info->key);
0db6c3e1
TO
66 }
67 catch (CRM_Extension_Exception $e) {
6a488035
TO
68 return;
69 }
70 if (!file_exists($file)) {
71 return;
72 }
73 include_once $file;
74 $fnName = "{$info->file}_civicrm_{$hookName}";
75 if (function_exists($fnName)) {
76 $fnName();
77 }
78 }
79
e0ef6999
EM
80 /**
81 * @param CRM_Extension_Info $info
82 *
83 * @return bool
84 */
6a488035
TO
85 public function onPreUninstall(CRM_Extension_Info $info) {
86 $this->callHook($info, 'uninstall');
87 return TRUE;
88 }
89
e0ef6999
EM
90 /**
91 * @param CRM_Extension_Info $info
92 */
6a488035 93 public function onPostUninstall(CRM_Extension_Info $info) {
6a488035
TO
94 }
95
e0ef6999
EM
96 /**
97 * @param CRM_Extension_Info $info
98 */
6a488035
TO
99 public function onPreDisable(CRM_Extension_Info $info) {
100 $this->callHook($info, 'disable');
101 }
102
e0ef6999
EM
103 /**
104 * @param CRM_Extension_Info $info
105 */
6a488035
TO
106 public function onPreEnable(CRM_Extension_Info $info) {
107 $this->callHook($info, 'enable');
108 }
96025800 109
6a488035 110}