ORM::force_all_dirty PHP 메소드

force_all_dirty() 공개 메소드

Force the ORM to flag all the fields in the $data array as "dirty" and therefore update them when save() is called.
public force_all_dirty ( )
    public function force_all_dirty()
    {
        $this->_dirty_fields = $this->_data;
        return $this;
    }
ORM