Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.116.42.143
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
myadmin /
libraries /
classes /
Gis /
Delete
Unzip
Name
Size
Permission
Date
Action
GisFactory.php
1.44
KB
-rw-r--r--
2021-02-05 18:26
GisGeometry.php
12.68
KB
-rw-r--r--
2021-02-05 18:26
GisGeometryCollection.php
12.51
KB
-rw-r--r--
2021-02-05 18:26
GisLineString.php
10.84
KB
-rw-r--r--
2021-02-05 18:26
GisMultiLineString.php
13.79
KB
-rw-r--r--
2021-02-05 18:26
GisMultiPoint.php
12.57
KB
-rw-r--r--
2021-02-05 18:26
GisMultiPolygon.php
19.89
KB
-rw-r--r--
2021-02-05 18:26
GisPoint.php
10.57
KB
-rw-r--r--
2021-02-05 18:26
GisPolygon.php
18.89
KB
-rw-r--r--
2021-02-05 18:26
GisVisualization.php
20.91
KB
-rw-r--r--
2021-02-05 18:26
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 */ declare(strict_types=1); namespace PhpMyAdmin\Gis; /** * 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 GisMultiPolygon|GisPolygon|GisMultiPoint|GisPoint|GisMultiLineString|GisLineString|GisGeometryCollection|false 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; } } }