mass update of comment blocks
[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
77b97be7
EM
66 *
67 * @throws CRM_Extension_Exception_ParseException
6a488035
TO
68 * @return CRM_Extension_Info
69 */
70 public static function loadFromString($string) {
71 list ($xml, $error) = CRM_Utils_XML::parseString($string);
72 if ($xml === FALSE) {
73 throw new CRM_Extension_Exception_ParseException("Failed to parse info XML: $string");
74 }
75
76 $instance = new CRM_Extension_Info();
77 $instance->parse($xml);
78 return $instance;
79 }
80
81 function __construct($key = NULL, $type = NULL, $name = NULL, $label = NULL, $file = NULL) {
82 $this->key = $key;
83 $this->type = $type;
84 $this->name = $name;
85 $this->label = $label;
86 $this->file = $file;
87 }
88
89 /**
90 * Copy attributes from an XML document to $this
91 *
92 * @param SimpleXMLElement $info
93 * @return void
94 */
95 public function parse($info) {
96 $this->key = (string) $info->attributes()->key;
97 $this->type = (string) $info->attributes()->type;
98 $this->file = (string) $info->file;
99 $this->label = (string) $info->name;
100
101 // Convert first level variables to CRM_Core_Extension properties
102 // and deeper into arrays. An exception for URLS section, since
103 // we want them in special format.
104 foreach ($info as $attr => $val) {
105 if (count($val->children()) == 0) {
106 $this->$attr = (string) $val;
107 }
108 elseif ($attr === 'urls') {
109 $this->urls = array();
110 foreach ($val->url as $url) {
111 $urlAttr = (string) $url->attributes()->desc;
112 $this->urls[$urlAttr] = (string) $url;
113 }
114 ksort($this->urls);
115 }
116 else {
117 $this->$attr = CRM_Utils_XML::xmlObjToArray($val);
118 }
119 }
120 }
121
122}