Merge pull request #14103 from jitendrapurohit/core-889
[civicrm-core.git] / CRM / Extension / Container / Default.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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 * @package CRM
30 * @copyright CiviCRM LLC (c) 2004-2019
31 */
32
33 /**
34 * The default container is just a basic container which can be configured via
35 * the web UI.
36 */
37 class CRM_Extension_Container_Default extends CRM_Extension_Container_Basic {
38
39 /**
40 * @inheritDoc
41 *
42 * @return array
43 */
44 public function checkRequirements() {
45 $errors = array();
46
47 // In current configuration, we don't construct the default container
48 // unless baseDir is set, so this error condition is more theoretical.
49 if (empty($this->baseDir) || !is_dir($this->baseDir)) {
50 $civicrmDestination = urlencode(CRM_Utils_System::url('civicrm/admin/extensions', 'reset=1'));
51 $url = CRM_Utils_System::url('civicrm/admin/setting/path', "reset=1&civicrmDestination=${civicrmDestination}");
52 $errors[] = array(
53 'title' => ts('Invalid Base Directory'),
54 'message' => ts('The extensions directory is not properly set. Please go to the <a href="%1">path setting page</a> and correct it.<br/>',
55 array(
56 1 => $url,
57 )
58 ),
59 );
60 }
61 if (empty($this->baseUrl)) {
62 $civicrmDestination = urlencode(CRM_Utils_System::url('civicrm/admin/extensions', 'reset=1'));
63 $url = CRM_Utils_System::url('civicrm/admin/setting/url', "reset=1&civicrmDestination=${civicrmDestination}");
64 $errors[] = array(
65 'title' => ts('Invalid Base URL'),
66 'message' => ts('The extensions URL is not properly set. Please go to the <a href="%1">URL setting page</a> and correct it.<br/>',
67 array(
68 1 => $url,
69 )
70 ),
71 );
72 }
73
74 return $errors;
75 }
76
77 }