Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
lib /
php /
XML /
SVG /
[ HOME SHELL ]
Name
Size
Permission
Action
Animate.php
1.31
KB
-rw-r--r--
Circle.php
950
B
-rw-r--r--
Defs.php
568
B
-rw-r--r--
Desc.php
585
B
-rw-r--r--
Document.php
897
B
-rw-r--r--
Element.php
2.99
KB
-rw-r--r--
Ellipse.php
1018
B
-rw-r--r--
FilterMergeNode.php
532
B
-rw-r--r--
Filter.php
847
B
-rw-r--r--
FilterPrimitive.php
2.48
KB
-rw-r--r--
Fragment.php
943
B
-rw-r--r--
Group.php
580
B
-rw-r--r--
Image.php
1.14
KB
-rw-r--r--
Line.php
992
B
-rw-r--r--
Marker.php
1.28
KB
-rw-r--r--
Path.php
845
B
-rw-r--r--
Polygon.php
885
B
-rw-r--r--
Polyline.php
887
B
-rw-r--r--
RadialGradient.php
614
B
-rw-r--r--
Rect.php
1.06
KB
-rw-r--r--
Stop.php
594
B
-rw-r--r--
Textpath.php
1.14
KB
-rw-r--r--
Text.php
581
B
-rw-r--r--
Title.php
613
B
-rw-r--r--
Tref.php
793
B
-rw-r--r--
Tspan.php
995
B
-rw-r--r--
Use.php
632
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Element.php
<?php /** * Package for building SVG graphics. * * Copyright 2002-2007 The Horde Project (http://www.horde.org/) * * @author Chuck Hagenbuch <chuck@horde.org> * @package XML_SVG * @license http://www.fsf.org/copyleft/lgpl.html */ /** * XML_SVG_Element * * This is the base class for the different SVG Element * Objects. Extend this class to create a new SVG Element. * * @package XML_SVG */ class XML_SVG_Element { var $_elements = null; var $_style = null; var $_transform = null; var $_id = null; function XML_SVG_Element($params = array()) { foreach ($params as $p => $v) { $param = '_' . $p; $this->$param = $v; } } /** * Most SVG elements can contain child elements. This method calls * the printElement method of any child element added to this * object by use of the addChild method. */ function printElement() { // Loop and call. if (is_array($this->_elements)) { foreach ($this->_elements as $child) { $child->printElement(); } } } /** * This method adds an object reference (or value, if $copy is * true) to the _elements array. */ function addChild(&$element, $copy = false) { if ($copy) { $this->_elements[] = &$element->copy(); } else { $this->_elements[] = &$element; } } /** * This method sends a message to the passed element requesting to * be added as a child. */ function addParent(&$parent) { if (is_subclass_of($parent, 'XML_SVG_Element')) { $parent->addChild($this); } } function copy() { if (version_compare(zend_version(), '2', '>')) { return clone($this); } else { $xml_svg = $this; return $xml_svg; } } /** * Print each of the passed parameters, if they are set. */ function printParams() { foreach (func_get_args() as $param) { $_param = '_' . $param; if (isset($this->$_param)) { switch ($param) { case 'filter': echo ' filter="url(#' . $this->$_param . ')"'; break; default: echo ' ' . str_replace('_', '-', $param) . '="' . $this->$_param . '"'; break; } } } } // Set any named attribute of an element to a value. function setParam($param, $value) { $attr = '_' . $param; $this->$attr = $value; } // Get any named attribute of an element. function getParam($param) { $attr = '_' . $param; if (isset($this->$attr)) { return $this->$attr; } else { return null; } } // Print out the object for debugging. function debug() { echo '<pre>'; var_dump($this); echo '</pre>'; } }
Close