Files
redline.com.pl/modules/extratabspro/models/extratabstemplates.php
2024-11-11 18:46:54 +01:00

38 lines
1.0 KiB
PHP

<?php
/**
* PrestaShop module created by VEKIA, a guy from official PrestaShop community ;-)
*
* @author VEKIA https://www.prestashop.com/forums/user/132608-vekia/
* @copyright 2010-2020 VEKIA
* @license This program is not free software and you can't resell and redistribute it
*
* CONTACT WITH DEVELOPER
* support@mypresta.eu
*/
class extratabstemplates extends ObjectModel
{
public $id_tab_template;
public $body;
public $name;
public static $definition = array(
'table' => 'extratabspro_temp',
'primary' => 'id_tab_template',
'multilang' => true,
'fields' => array(
'id_tab_template' => array('type' => ObjectModel :: TYPE_INT),
'body' => array(
'type' => ObjectModel :: TYPE_HTML,
'lang' => true,
'size' => 3999999999999
),
'name' => array(
'type' => ObjectModel :: TYPE_STRING,
'lang' => true,
'size' => 254
),
),
);
}