003 File Manager
Current Path:
/usr/local/www/sites/shared/phpmyadmin/libraries/classes/Plugins/Import
usr
/
local
/
www
/
sites
/
shared
/
phpmyadmin
/
libraries
/
classes
/
Plugins
/
Import
/
📁
..
📄
AbstractImportCsv.php
(2.93 KB)
📄
ImportCsv.php
(26.25 KB)
📄
ImportLdi.php
(5.06 KB)
📄
ImportMediawiki.php
(21.08 KB)
📄
ImportOds.php
(13.52 KB)
📄
ImportShp.php
(9.94 KB)
📄
ImportSql.php
(6.02 KB)
📄
ImportXml.php
(10.58 KB)
📄
README
(4.43 KB)
📄
ShapeFileImport.php
(805 B)
📁
Upload
Editing: ShapeFileImport.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * This class extends ShapeFile class to cater the following phpMyAdmin * specific requirements. * * @package PhpMyAdmin-Import * @subpackage ESRI_Shape */ namespace PhpMyAdmin\Plugins\Import; use PhpMyAdmin\ShapeFile\ShapeFile; /** * ShapeFileImport class * * @package PhpMyAdmin */ class ShapeFileImport extends ShapeFile { /** * Reads given number of bytes from SHP file * * @param int $bytes number of bytes * * @return string|false */ public function readSHP($bytes) { return ImportShp::readFromBuffer($bytes); } /** * Checks whether file is at EOF * * @return bool */ public function eofSHP() { global $eof; return $eof; } }
Upload File
Create Folder