Subversion Repositories ALCASAR

Rev

Rev 3037 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 3037 Rev 3287
Line 40... Line 40...
40
     */
40
     */
41
    public function run()
41
    public function run()
42
    {
42
    {
43
        CommonFunctions::checkForExtensions(array('xsl'));
43
        CommonFunctions::checkForExtensions(array('xsl'));
44
        $xmlfile = $this->getXMLString();
44
        $xmlfile = $this->getXMLString();
45
        $xslfile = "phpsysinfo.xslt";
45
        $xslfile = "templates/index_static.xslt";
46
        $domxml = new DOMDocument();
46
        $domxml = new DOMDocument();
47
        $domxml->loadXML($xmlfile);
47
        $domxml->loadXML($xmlfile);
48
        $domxsl = new DOMDocument();
48
        $domxsl = new DOMDocument();
49
        $domxsl->load($xslfile);
49
        $domxsl->load($xslfile);
50
        $xsltproc = new XSLTProcessor;
50
        $xsltproc = new XSLTProcessor;