. if (!defined('EG')) die('Direct access not allowed!'); class DeletionModel extends Model_Tree { public function __construct() { $this->_tables = 'deletion'; $this->_idFields = 'id_del'; // $this->_where=array( // 'id_hard' => 'talk' // ); // $this->_popupItemNames = array( 'object' => 'object', ); $this->_popupLabels = array( 'object' => 'OBJECT', ); // $this->orderBy = 'deletion.id_del desc'; $this->strongConditions['insert'] = array( "checkIsStrings|duplication,other" => 'object', "+checkLength|500" => 'message' ); parent::__construct(); } }