Coder Social home page Coder Social logo

Comments (2)

paulcanning avatar paulcanning commented on June 14, 2024

OK, it seems like before_get is the wrong observer to use in my case.

I want to get the data, then append it. It seems whatever I do in before_get is getting overwritten.

So what use is before_get if data is going to be overwritten?

Looks like after_get works for me, for now.

from codeigniter-base-model.

robertmain avatar robertmain commented on June 14, 2024

I'm finding that the before_create observer isn't firing to hash the password on user create. I fire the users into the database like so:

$this->user_model->insert(array(
    'forename' => 'Jim',
    'surname' => 'Testing',
    'username' => 'j.testing1234',
    'password' => 'awesomepassword'
));

Then in my user_model.php I have the following:

user_model.php

class User_model extends MY_Model{

    protected $before_create = array('hash_password');
    protected $before_update = array('hash_password');
    protected $soft_delete = true;

    public function __construct(){
        parent::__construct();
        $this->soft_delete = true;
    }

    /**
     * Hash Password
     *
     * Creates a cryptographically secure password hash for users
     * 
     * @param  array $user The database row representing the user
     * @return array      The database row representing the user
     */
    protected function hash_password($user){
        if(array_key_exists('password', $user)){
            $user['password'] = password_hash($user['password'], PASSWORD_BCRYPT);
        }
        return $user;
    }

}

from codeigniter-base-model.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.