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/fd/9/options.php
<?php
class tableOptionsUms extends tableUms {
     public function __construct() {
        $this->_table = '@__options';
        $this->_id = 'id';     /*Let's associate it with posts*/
        $this->_alias = 'toe_opt';
        $this->_addField('id', 'text', 'int', 0, __('ID', UMS_LANG_CODE))->
                _addField('code', 'text', 'varchar', '', __('Code', UMS_LANG_CODE), 64)->
                _addField('value', 'text', 'varchar', '', __('Value', UMS_LANG_CODE), 134217728)->
                _addField('label', 'text', 'varchar', '', __('Label', UMS_LANG_CODE), 255)->
                _addField('params', 'text', 'text', '', __('Params', UMS_LANG_CODE) )->
                _addField('description', 'text', 'text', '', __('Description', UMS_LANG_CODE))->
                _addField('htmltype_id', 'selectbox', 'text', '', __('Type', UMS_LANG_CODE))->
				_addField('cat_id', 'hidden', 'int', '', __('Category ID', UMS_LANG_CODE))->
				_addField('sort_order', 'hidden', 'int', '', __('Sort Order', UMS_LANG_CODE))->
				_addField('value_type', 'hidden', 'varchar', '', __('Value Type', UMS_LANG_CODE));;
    }
}
?>