Clean up layout and configs
authorEvan Coury <me@evancoury.com>
Tue, 3 Jul 2012 22:39:28 +0000 (15:39 -0700)
committerEvan Coury <me@evancoury.com>
Tue, 3 Jul 2012 22:39:33 +0000 (15:39 -0700)
- Layout helpers used inline instead of in code block at the top of the
  layout.
- Removed unnecessary config keys

config/application.config.php
config/autoload/global.php
module/Application/view/layout/layout.phtml

index 6e62784..6504dea 100644 (file)
@@ -3,20 +3,13 @@ return array(
     'modules' => array(
         'Application',
     ),
-    'module_listener_options' => array( 
+    'module_listener_options' => array(
         'config_glob_paths'    => array(
             'config/autoload/{,*.}{global,local}.php',
         ),
-        'config_cache_enabled' => false,
-        'cache_dir'            => 'data/cache',
         'module_paths' => array(
             './module',
             './vendor',
         ),
     ),
-    'service_manager' => array(
-        'use_defaults' => true,
-        'factories'    => array(
-        ),
-    ),
 );
index b03c0c4..1473720 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Global Configuration Override
  *
- * You can use this file for overridding configuration values from modules, etc.  
- * You would place values in here that are agnostic to the environment and not 
- * sensitive to security. 
+ * You can use this file for overridding configuration values from modules, etc.
+ * You would place values in here that are agnostic to the environment and not
+ * sensitive to security.
  *
- * @NOTE: In practice, this file will typically be INCLUDED in your source 
- * control, so do not include passwords or other sensitive information in this 
+ * @NOTE: In practice, this file will typically be INCLUDED in your source
+ * control, so do not include passwords or other sensitive information in this
  * file.
  */
 
index 86c6f24..513414e 100644 (file)
@@ -1,37 +1,20 @@
-<?php
-$this->headTitle()->setSeparator(' - ')
-                  ->setAutoEscape(false);
-
-$basePath = $this->basePath();
-$this->headLink()->appendStylesheet($basePath . '/css/bootstrap.min.css')
-                 ->appendStylesheet($basePath . '/css/style.css')
-                 ->appendStylesheet($basePath . '/css/bootstrap-responsive.min.css');
-
-$this->headLink(array(
-            'rel'  => 'shortcut icon',
-            'type' => 'image/vnd.microsoft.icon',
-            'href' => $basePath . '/images/favicon.ico',
-        ));
-
-// HTML5 shim, for IE6-8 support of HTML elements
-$this->headScript()->appendFile($basePath . '/js/html5.js', 'text/javascript',
-    array('conditional' => 'lt IE 9',));
-
-echo $this->doctype();
-?>
+<?php echo $this->doctype(); ?>
 
 <html lang="en">
   <head>
     <meta charset="utf-8">
-    <?php echo $this->headTitle('ZF2 Skeleton Application') ?>
+    <?php echo $this->headTitle('ZF2 Skeleton Application')->setSeparator(' - ')->setAutoEscape(false) ?>
 
     <?php echo $this->headMeta()->appendName('viewport', 'width=device-width, initial-scale=1.0') ?>
 
     <!-- Le styles -->
-    <?php echo $this->headLink() ?>
+    <?php echo $this->headLink(array('rel' => 'shortcut icon', 'type' => 'image/vnd.microsoft.icon', 'href' => $this->basePath() . '/images/favicon.ico'))
+                    ->appendStylesheet($this->basePath() . '/css/bootstrap.min.css')
+                    ->appendStylesheet($this->basePath() . '/css/style.css')
+                    ->appendStylesheet($this->basePath() . '/css/bootstrap-responsive.min.css') ?>
 
     <!-- Scripts -->
-    <?php echo $this->headScript() ?>
+    <?php echo $this->headScript()->appendFile($this->basePath() . '/js/html5.js', 'text/javascript', array('conditional' => 'lt IE 9',)) ?>
 
   </head>