Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.0
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
phpmyadmin /
libraries /
gis /
Delete
Unzip
Name
Size
Permission
Date
Action
GISFactory.php
1.31
KB
-rw-r--r--
2017-01-23 20:20
GISGeometry.php
12.36
KB
-rw-r--r--
2017-01-23 20:20
GISGeometrycollection.php
12.31
KB
-rw-r--r--
2017-01-23 20:20
GISLinestring.php
10.66
KB
-rw-r--r--
2017-01-23 20:20
GISMultilinestring.php
13.59
KB
-rw-r--r--
2017-01-23 20:20
GISMultipoint.php
12.37
KB
-rw-r--r--
2017-01-23 20:20
GISMultipolygon.php
19.63
KB
-rw-r--r--
2017-01-23 20:20
GISPoint.php
10.39
KB
-rw-r--r--
2017-01-23 20:20
GISPolygon.php
18.88
KB
-rw-r--r--
2017-01-23 20:20
GISVisualization.php
20.09
KB
-rw-r--r--
2017-01-23 20:20
Save
Rename
<?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; } } }