Merge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-04-07-15-32-51
[civicrm-core.git] / CRM / Extension / Info.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
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 * Metadata for an extension (e.g. the extension's "info.xml" file)
30 */
31class CRM_Extension_Info {
32
33 /**
34 * Extension info file name
35 */
36 const FILENAME = 'info.xml';
37
38 public $key = NULL;
39 public $type = NULL;
40 public $name = NULL;
41 public $label = NULL;
42 public $file = NULL;
43
44 /**
45 * Load extension info an XML file
46 *
47 * @param string $string XML content
48 * @return CRM_Extension_Info
49 * @throws CRM_Extension_Exception
50 */
51 public static function loadFromFile($file) {
52 list ($xml, $error) = CRM_Utils_XML::parseFile($file);
53 if ($xml === FALSE) {
54 throw new CRM_Extension_Exception_ParseException("Failed to parse info XML: $error");
55 }
56
57 $instance = new CRM_Extension_Info();
58 $instance->parse($xml);
59 return $instance;
60 }
61
62 /**
63 * Load extension info a string
64 *
65 * @param string $string XML content
66 * @return CRM_Extension_Info
67 */
68 public static function loadFromString($string) {
69 list ($xml, $error) = CRM_Utils_XML::parseString($string);
70 if ($xml === FALSE) {
71 throw new CRM_Extension_Exception_ParseException("Failed to parse info XML: $string");
72 }
73
74 $instance = new CRM_Extension_Info();
75 $instance->parse($xml);
76 return $instance;
77 }
78
79 function __construct($key = NULL, $type = NULL, $name = NULL, $label = NULL, $file = NULL) {
80 $this->key = $key;
81 $this->type = $type;
82 $this->name = $name;
83 $this->label = $label;
84 $this->file = $file;
85 }
86
87 /**
88 * Copy attributes from an XML document to $this
89 *
90 * @param SimpleXMLElement $info
91 * @return void
92 */
93 public function parse($info) {
94 $this->key = (string) $info->attributes()->key;
95 $this->type = (string) $info->attributes()->type;
96 $this->file = (string) $info->file;
97 $this->label = (string) $info->name;
98
99 // Convert first level variables to CRM_Core_Extension properties
100 // and deeper into arrays. An exception for URLS section, since
101 // we want them in special format.
102 foreach ($info as $attr => $val) {
103 if (count($val->children()) == 0) {
104 $this->$attr = (string) $val;
105 }
106 elseif ($attr === 'urls') {
107 $this->urls = array();
108 foreach ($val->url as $url) {
109 $urlAttr = (string) $url->attributes()->desc;
110 $this->urls[$urlAttr] = (string) $url;
111 }
112 ksort($this->urls);
113 }
114 else {
115 $this->$attr = CRM_Utils_XML::xmlObjToArray($val);
116 }
117 }
118 }
119
120}