Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a lots of users and I am using pagination but my manager wants me to have an option where all the users could be seen on one page. How can I achieve that. I have this in user index action

public function index() {
                            $this->User->recursive = 0;
                            $this->set('users', $this->paginate());
}

thanks

share|improve this question

1 Answer

up vote 1 down vote accepted

(This question seems too simple... maybe I'm misunderstanding?)

How about a regular find('all') ?

public function index($all = false) {
    $this->User->recursive = 0;

    if($all){
        $this->set('users', $this->User->find('all'));
    } else {
        $this->set('users', $this->paginate());
    }
}

Then just go to /users/all

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.