* @copyright 2007-2017 PrestaShop SA * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @version Release: $Revision$ * International Registered Trademark & Property of PrestaShop SA */ if (!defined('_PS_VERSION_')) exit; class MM_Column extends MM_Obj { public $id_column; public $id_menu; public $column_size; public $sort_order; public $is_breaker; public static $definition = array( 'table' => 'ets_mm_column', 'primary' => 'id_column', 'multilang' => false, 'fields' => array( 'id_menu' => array('type' => self::TYPE_INT), 'column_size' => array('type' => self::TYPE_STRING), 'sort_order' => array('type' => self::TYPE_INT), 'is_breaker' => array('type' => self::TYPE_INT), ) ); public function __construct($id_item = null, $id_lang = null, $id_shop = null, Context $context = null) { parent::__construct($id_item, $id_lang, $id_shop); $languages = Language::getLanguages(false); foreach($languages as $lang) { foreach(self::$definition['fields'] as $field => $params) { $temp = $this->$field; if(isset($params['lang']) && $params['lang'] && !isset($temp[$lang['id_lang']])) { $temp[$lang['id_lang']] = ''; } $this->$field = $temp; } } unset($context); $this->setFields(Ets_megamenu::$columns); } }