File "modules.php"

Full Path: /home/vantageo/public_html/cache/cache/.wp-cli/wp-content/plugins/woo-product-filter/classes/tables/modules.php
File size: 821 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
class TableModulesWpf extends TableWpf {
	public function __construct() {
		$this->_table = '@__modules';
		$this->_id = 'id';     /*Let's associate it with posts*/
		$this->_alias = 'sup_m';
		$this->_addField('label', 'text', 'varchar', 0, esc_html__('Label', 'woo-product-filter'), 128)
				->_addField('type_id', 'selectbox', 'smallint', 0, esc_html__('Type', 'woo-product-filter'))
				->_addField('active', 'checkbox', 'tinyint', 0, esc_html__('Active', 'woo-product-filter'))
				->_addField('params', 'textarea', 'text', 0, esc_html__('Params', 'woo-product-filter'))
				->_addField('code', 'hidden', 'varchar', '', esc_html__('Code', 'woo-product-filter'), 64)
				->_addField('ex_plug_dir', 'hidden', 'varchar', '', esc_html__('External plugin directory', 'woo-product-filter'), 255);
	}
}