blob: 49b91ef523f2bc451c75d0a9ad6319295c04f1f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
<?php
/**
* Plugin manifest.xml parser for Elgg 1.7 and lower.
*
* @package Elgg.Core
* @subpackage Plugins
*/
class ElggPluginManifestParser17 extends ElggPluginManifestParser {
/**
* The valid top level attributes and defaults for a 1.7 manifest
*/
protected $validAttributes = array(
'author' => null,
'version' => null,
'description' => null,
'website' => null,
'copyright' => null,
'license' => 'GNU Public License version 2',
'elgg_version' => null,
// were never really used and not enforced in code.
'requires' => null,
'recommends' => null,
'conflicts' => null
);
/**
* Parse a manifest object from 1.7 or earlier.
*
* @return void
*/
public function parse() {
foreach ($this->manifestObject->children as $element) {
$key = $element->attributes['key'];
$value = $element->attributes['value'];
// create arrays if multiple fields are set
if (array_key_exists($key, $elements)) {
if (!is_array($elements[$key])) {
$orig = $elements[$key];
$elements[$key] = array($orig);
}
$elements[$key][] = $value;
} else {
$elements[$key] = $value;
}
}
$this->manifest = $elements;
return true;
}
}
|