ItemLang.php
462 Bytes
<?php
namespace backend\modules\map\models;
/**
* Class ItemLang
* @package backend\modules\map\models
* @author Alla Kuzmenko
* @copyright (c), Thread
*/
class ItemLang extends \common\modules\map\models\ItemLang
{
/**
* @param bool $insert
* @return bool
*/
public function beforeSave($insert)
{
$this->licenses = implode(",", $_POST['ItemLang']['licenses'] ?? '');
return parent::beforeSave($insert);
}
}