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'm just wondering how I can use/define my own function using the $this->set() method in CakePHP. I want to do something like this...

AppController.php

<?php
    function checkSetup() {
        if ($this->Auth->user('setup') == 'notcomplete') { return true; }
    }

    $this->set('isSetup', checkSetup());
?>

An then i will be able to access and call it in my view file:

<?php if ($isSetup): ?>
You haven't setup your profile yet!
<?php endif; ?>

I've tried that, but It clearly doesn't work as I get a massive fatal error. Any ideas/suggestions on how I can do this?

Cheers,

Adam.

share|improve this question

1 Answer

up vote 1 down vote accepted
$this->set('isSetup', checkSetup());

That line needs to be inside some function in order to be called. Presumably you want it in the beforFilter of your app controller - something like this:

<?php

App::uses('Controller', 'Controller');

class AppController extends Controller {

    function beforeFilter() {
        $this->set('isSetup', checkSetup());
    }

    function checkSetup() {
        if ($this->Auth->user('setup') == 'notcomplete') { return true; }
    }

}

?>
share|improve this answer
Thanks for your help, I didn't realize it had to be in a function. Cheers mate ;) – Adam McArthur Dec 9 '12 at 7:05

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.