3 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
4 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
6 * Licensed under The MIT License
7 * Redistributions of files must retain the above copyright notice.
9 * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
10 * @link http://cakephp.org CakePHP(tm) Project
12 * @license http://www.opensource.org/licenses/mit-license.php MIT License
21 * Your application’s default view class
23 * @link http://book.cakephp.org/3.0/en/views.html#the-app-view
25 class AppView extends View
29 * Initialization hook method.
31 * Use this method to add common initialization code like loading helpers.
33 * e.g. `$this->loadHelper('Html');`
37 public function initialize()
39 // code added to load mapping view helper.
42 'className' => 'Avmaps.ClusteringMap'
44 $this->loadHelper('Geo.GoogleMap', $config);
46 $this->loadHelper('Avmaps.MapDisplay');