AgeDeO
AgeDeO

Reputation: 3157

CakePHP Having a variable in every file

I would like to have a variable $bURL available on every view/controller/element/layout of my CakePHP installation.

What is the best location to set such a variable?

Upvotes: 0

Views: 35

Answers (1)

JJJ
JJJ

Reputation: 33163

bootstrap.php

This file is ideal for a number of common bootstrapping tasks:

  • Defining convenience functions.
  • Registering global constants.
  • ...

Upvotes: 1

Related Questions