adding example apps, fixing powerup issues
[feisty_meow.git] / production / example_apps / zippy_maps / src / View / AppView.php
diff --git a/production/example_apps/zippy_maps/src/View/AppView.php b/production/example_apps/zippy_maps/src/View/AppView.php
new file mode 100644 (file)
index 0000000..afbb42e
--- /dev/null
@@ -0,0 +1,48 @@
+<?php
+/**
+ * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
+ * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
+ *
+ * Licensed under The MIT License
+ * Redistributions of files must retain the above copyright notice.
+ *
+ * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
+ * @link      http://cakephp.org CakePHP(tm) Project
+ * @since     3.0.0
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT License
+ */
+namespace App\View;
+
+use Cake\View\View;
+
+/**
+ * Application View
+ *
+ * Your application’s default view class
+ *
+ * @link http://book.cakephp.org/3.0/en/views.html#the-app-view
+ */
+class AppView extends View
+{
+
+    /**
+     * Initialization hook method.
+     *
+     * Use this method to add common initialization code like loading helpers.
+     *
+     * e.g. `$this->loadHelper('Html');`
+     *
+     * @return void
+     */
+    public function initialize()
+    {
+       // code added to load mapping view helper.
+       $config = [
+                       'autoScript' => true,
+                       'className' => 'Avmaps.ClusteringMap'
+       ];
+       $this->loadHelper('Geo.GoogleMap', $config);
+       
+       $this->loadHelper('Avmaps.MapDisplay');
+    }
+}