Exemplo n.º 1
0
 public function store($updateNulls = false)
 {
     //we don't want these to be stored - generates an sql error
     unset($this->db_table_name);
     unset($this->connection_id);
     return parent::store($updateNulls);
 }
Exemplo n.º 2
0
 function store()
 {
     unset($this->join_id);
     return parent::store();
 }
Exemplo n.º 3
0
 function store($updateNulls = false)
 {
     unset($this->join_id);
     return parent::store($updateNulls);
 }
Exemplo n.º 4
0
 /**
  * Method to store a row in the database from the JTable instance properties.
  * If a primary key value is set the row with that primary key value will be
  * updated with the instance property values.  If no primary key value is set
  * a new row will be inserted into the database with the properties from the
  * JTable instance.
  *
  * @param   boolean  $updateNulls  True to update fields even if they are null.
  *
  * @return  boolean  True on success.
  *
  * @link    http://docs.joomla.org/JTable/store
  * @since   11.1
  */
 public function store($updateNulls = false)
 {
     unset($this->table_join_alias);
     parent::store($updateNulls);
 }