up vote 1 down vote favorite
1
share [g+] share [fb]

Is there any standard method of accessing the database in the bootstrap.php file with CakePHP?

Specifically I want to set "putenv()" to a time zone that's stored in the database. Is there another way of achieving the same thing that I should be using instead?

Thanks.

link|improve this question
i would think that database.php would be alot more useful for this. maybe not in an option built in, but for organization's sake. – helloandre Jul 27 '09 at 4:04
feedback

1 Answer

up vote 1 down vote accepted

I don't think it's a good idea to access database in bootstrap. You cannot use models because they haven't yet been initialized. I think that you could extract the connection data and initialize connection and run queries using PHP's mysql_* but that's an ugly thing.

However if you need to run certain action everytime your app is accessed I would suggest placing it in AppController constructor (__construct function).

class AppController extends Controller {
    public function __construct() {
        // do your magic here

        // call parent constructor
        parent :: __constructor();
    }
}

class YourSpecificController extends AppController {
    public function __construct() {
         // call parent contructor (this) will cause your magic happen
         parent :: __constructor();

         // extra controller initialization instructions
    }
}

If you don't declare constructor in extending class you won't even have to change anything since PHP will automatically call parent (AppController) constructor.

link|improve this answer
Thank you for your answer. Works great. – Antigony Sep 26 '09 at 5:55
feedback

Your Answer

 
or
required, but never shown