Merge pull request #13959 from mlutfy/setMessageError
[civicrm-core.git] / CRM / Extension / Container / Default.php
CommitLineData
70d331a6 1<?php
4faa436b
SB
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
4faa436b 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
4faa436b
SB
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
6b83d5bd 30 * @copyright CiviCRM LLC (c) 2004-2019
4faa436b 31 */
70d331a6
TO
32
33/**
78612209
TO
34 * The default container is just a basic container which can be configured via
35 * the web UI.
70d331a6
TO
36 */
37class CRM_Extension_Container_Default extends CRM_Extension_Container_Basic {
38
39 /**
e7c15cb6 40 * @inheritDoc
4faa436b
SB
41 *
42 * @return array
70d331a6
TO
43 */
44 public function checkRequirements() {
45 $errors = array();
46
78612209
TO
47 // In current configuration, we don't construct the default container
48 // unless baseDir is set, so this error condition is more theoretical.
70d331a6
TO
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 )
78612209 58 ),
70d331a6
TO
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 )
78612209 70 ),
70d331a6
TO
71 );
72 }
73
74 return $errors;
75 }
96025800 76
78612209 77}