App Class
The App class is responsible for resource location and path management.
Finding Classes
This method is used to resolve class names throughout CakePHP. It resolvesthe short form names CakePHP uses and returns the fully resolved class name:
- // Resolve a short class name with the namespace + suffix.
- App::className('Auth', 'Controller/Component', 'Component');
- // Returns Cake\Controller\Component\AuthComponent
- // Resolve a plugin name.
- App::className('DebugKit.Toolbar', 'Controller/Component', 'Component');
- // Returns DebugKit\Controller\Component\ToolbarComponent
- // Names with \ in them will be returned unaltered.
- App::className('App\Cache\ComboCache');
- // Returns App\Cache\ComboCache
When resolving classes, the App
namespace will be tried, and if theclass does not exist the Cake
namespace will be attempted. If bothclass names do not exist, false
will be returned.
Finding Paths to Resources
The method returns paths set using App.paths
app config:
- // Get the templates path set using ``App.paths.templates`` app config.
- App::path('templates');
The same way you can retrieve paths for locales
, plugins
.
Finding Paths to Namespaces
Used to get locations for paths based on conventions:
- // Get the path to Controller/ in your application
- App::path('Controller');
This can be done for all namespaces that are part of your application.
App::classPath()
will only return the default path, and will not be able toprovide any information about additional paths the autoloader is configuredfor.
Used for finding the path to a package inside CakePHP:
- // Get the path to Cache engines.
- App::core('Cache/Engine');
Locating Plugins
- static
Cake\Core\App::
path
(string $plugin)
Plugins can be located with Plugin. Using Plugin::path('DebugKit');
for example, will give you the full path to the DebugKit plugin:
- $path = Plugin::path('DebugKit');
Locating Themes
Since themes are plugins, you can use the methods above to get the path toa theme.
Loading Vendor Files
Ideally vendor files should be autoloaded with Composer
, if you have vendorfiles that cannot be autoloaded or installed with Composer you will need to userequire
to load them.
If you cannot install a library with Composer, it is best to install each library ina directory following Composer’s convention of vendor/$author/$package
.If you had a library called AcmeLib, you could install it intovendor/Acme/AcmeLib
. Assuming it did not use PSR-0 compatible classnamesyou could autoload the classes within it using classmap
in yourapplication’s composer.json
:
- "autoload": {
- "psr-4": {
- "App\\": "src/",
- "App\\Test\\": "tests/"
- },
- "classmap": [
- "vendor/Acme/AcmeLib"
- ]
- }
If your vendor library does not use classes, and instead provides functions, youcan configure Composer to load these files at the beginning of each requestusing the files
autoloading strategy:
- "autoload": {
- "psr-4": {
- "App\\": "src/",
- "App\\Test\\": "tests/"
- },
- "files": [
- "vendor/Acme/AcmeLib/functions.php"
- ]
- }
After configuring the vendor libraries you will need to regenerate yourapplication’s autoloader using:
- $ php composer.phar dump-autoload
If you happen to not be using Composer in your application, you will need tomanually load all vendor libraries yourself.