Esempio n. 1
0
 public function insert($data = array())
 {
     $data['l_s_id'] = $this->_s_id;
     return parent::insert($data);
 }
Esempio n. 2
0
 /**
  * Add a role to the database
  *
  * @param array $data       Array of data for the role
  * @return bool
  */
 function insert($data = array())
 {
     // Get weight for new role
     $data['r_weight'] = $this->get_weight('max') + 1;
     return parent::insert($data);
 }