Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed ->table attribute access
  • Loading branch information
rtorralba committed Apr 28, 2015
1 parent 3ca0742 commit 764e06d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions snippets/codeigniter.snippets
Expand Up @@ -44,7 +44,7 @@ snippet ci_model_crudl

public function create($data)
{
if($this->db->insert($table, $data))
if($this->db->insert($this->table, $data))
return true;
else
return false;
Expand All @@ -57,7 +57,7 @@ snippet ci_model_crudl

public function update($id, $data)
{
if($this->db->update($table, $data, array('id' => $id)))
if($this->db->update($this->table, $data, array('id' => $id)))
return true;
else
return false;
Expand All @@ -69,12 +69,12 @@ snippet ci_model_crudl
{
$this->db->trans_start();
foreach($id as $elem)
$this->db->delete($table, array('id' => $elem));
$this->db->delete($this->table, array('id' => $elem));
$this->db->trans_complete();
}
else
{
if($this->db->delete($table, array('id' => $id)))
if($this->db->delete($this->table, array('id' => $id)))
return true;
else
return false;
Expand All @@ -85,7 +85,7 @@ snippet ci_model_crudl
{
if(!is_null($limit))
$this->db->limit($limit, $offset);
return $this->db->get($table)->result();
return $this->db->get($this->table)->result();
}
}
# Load view
Expand Down

0 comments on commit 764e06d

Please sign in to comment.