File: plugin.php

package info (click to toggle)
phamm 0.6.2-1.2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,180 kB
  • ctags: 828
  • sloc: php: 2,963; xml: 893; perl: 541; sh: 468; makefile: 62; python: 57
file content (122 lines) | stat: -rw-r--r-- 3,168 bytes parent folder | download | duplicates (2)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?php
/**
* Plugin class
*
* @package Phamm
**/

/*
* Phamm - http://www.phamm.org - <team@phamm.org>
* Copyright (C) 2004,2014 Alessandro De Zorzi and Mirko Grava
*
* This file is part of Phamm.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/


class PhammPlugin
{
    /**
    * Load plugins info from XML files into array
    *
    * @package Phamm
    * @author Alessandro De Zorzi <adezorzi@rhx.it>
    *
    * @return array $p_values
    **/
    public function plugins_load()
    {
        global $plugins;

        $pv = array();

        foreach ($plugins as $plugin)
        {
            $file = '../plugins/'.$plugin.'.xml';

            if (file_exists($file))
            {
                $xml2array = $this->xml2array($file);
                $pv = array_merge($pv, $xml2array);
            }
        }

        return $pv;
    }


    /**
    * Return PHP array from XML file
    *
    * original code from
    * mmustafa at vsnl dot com http://php.net/xml_parser_create
    *
    * @param mixed $file
    * @return array $params
    **/

    private function xml2array ($file)
    {
        $xml_parser = xml_parser_create();

        if (!($fp = fopen($file, "r"))) {
            die("could not open XML input");
        }

        $data = fread($fp, filesize($file));
        fclose($fp);

        xml_parse_into_struct($xml_parser, $data, $vals, $index);
        xml_parser_free($xml_parser);

        $params = array();
        $xml_elem = array();
        $level = array();

        foreach ($vals as $xml_elem) {
            if ($xml_elem['type'] == 'open') {
                if (array_key_exists('attributes',$xml_elem))
                {
                    $extra = array_values($xml_elem['attributes']);
                    $level[$xml_elem['level']] = $extra[0];
                }
                else
                {
                    $level[$xml_elem['level']] = $xml_elem['tag'];
                }
            }
            if ($xml_elem['type'] == 'complete')
            {
                $start_level = 1;
                $php_stmt = '$params';

                while($start_level < $xml_elem['level'])
                {
                    $php_stmt .= '[$level['.$start_level.']]';
                    $start_level++;
                }

                $php_stmt .= '[$xml_elem[\'tag\']] = isset($xml_elem[\'value\']) ?
                             $xml_elem[\'value\'] : "";';
                eval($php_stmt);
            }
        }

        return $params;

    }
//
}