Phosphorum\Models\Posts::beforeCreate PHP 메소드

beforeCreate() 공개 메소드

Create a posts-views logging the ipaddress where the post was created This avoids that the same session counts as post view
public beforeCreate ( )
    public function beforeCreate()
    {
        $this->views = new PostsViews(['ipaddress' => $this->getDI()->getShared('request')->getClientAddress()]);
    }