HEX
Server: LiteSpeed
System: Linux 112.webhostingindonesia.co.id 5.14.0-570.62.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 10:10:59 EST 2025 x86_64
User: iyfwylsv (10313)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/ultimate-maps-by-supsystic/classes/tables/shapes.php
<?php
class tableShapeUms extends tableUms{
    public function __construct() {
        $this->_table = '@__shapes';
        $this->_id = 'id';
        $this->_alias = 'toe_shp';
        $this->_addField('id', 'int', 'int', '11', __('Shape ID', UMS_LANG_CODE))
                ->_addField('title', 'varchar', 'varchar', '255', __('Shape name', UMS_LANG_CODE))
                ->_addField('description', 'text', 'text', '', __('Description of Shape', UMS_LANG_CODE))
                ->_addField('coords', 'text', 'text', '', __('Shape coordinates list', UMS_LANG_CODE))
                ->_addField('type', 'varchar', 'varchar', '30', __('Shape type', UMS_LANG_CODE))
                ->_addField('map_id', 'int', 'int', '11', __('Map Id', UMS_LANG_CODE))
				->_addField('create_date','text','text','',  __('Creation date', UMS_LANG_CODE))
				->_addField('animation','int','int','0', __('Animation', UMS_LANG_CODE))
                ->_addField('params','text','text','', __('Params', UMS_LANG_CODE))
				->_addField('sort_order','int','int','0', __('Sort Order', UMS_LANG_CODE));
    }
}