. if (!defined('EG')) die('Direct access not allowed!'); class IssuesModel extends BaseModel { public function __construct() { $this->_tables = 'issues'; $this->_idFields = 'id_issue'; $this->_onDelete = 'nocheck'; $this->_where = array( 'priority' => 'issues', 'status' => 'issues', 'topic' => 'issues', ); $this->_popupItemNames = array( 'priority' => 'priority', 'status' => 'status', 'topic' => 'topic', 'deleted' => 'deleted', ); $this->_popupLabels = array( 'priority' => 'PRIORITY', 'status' => 'STATUS', 'topic' => 'TOPIC', 'deleted' => 'DELETED?', ); $this->orderBy = 'issues.id_issue desc'; $this->strongConditions['insert'] = array( "checkLength|99" => 'title', "+checkLength|34" => 'topic', "++checkLength|15" => 'priority', "+++checkLength|5000" => 'message', "checkisStrings|low,medium,high" => 'priority', "+checkisStrings|maybe-a-bug,new-categories-of-hardware,add-a-vendor-name,other" => 'topic', ); $this->formStruct = array( 'entries' => array( 'title' => array('labelString' => gtext("TITLE").':'), 'topic' => array( 'type'=>'Select', 'options'=>array( 'Add a vendor name' => 'add-a-vendor-name', 'Maybe a bug' => 'maybe-a-bug', 'Add new categories of hardware' => 'new-categories-of-hardware', 'Other' => 'other' ), 'labelString' => gtext("TOPIC").':', ), 'deleted'=> array( 'type' => 'Select', 'options' => 'no,yes', ), 'priority' => array( 'type'=>'Select', 'options'=>'low,medium,high', 'labelString' => gtext("PRIORITY").':', ), 'message' => array('type'=>'Textarea','idName'=>'bb_code','labelString' => gtext("MESSAGE").':',), 'status' => array( 'type' => 'Select', 'options' => 'opened,closed' ), 'notice' => array( 'type' => 'Textarea', 'idName' => 'bb_code_notice', ), 'id_issue' => array( 'type' => 'Hidden' ) ), ); parent::__construct(); } public function pUpdate($id) { return parent::update($id); } public function insert() { if (parent::insert()) { //update the history $this->updateHistory('issue_ins'); } } }