Advertisement
Guest User

Untitled

a guest
Aug 19th, 2014
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.74 KB | None | 0 0
  1.     'view_manager' => array(
  2.         'display_not_found_reason' => true,
  3.         'display_exceptions'       => true,
  4.         'doctype'                  => 'HTML5',
  5.         'not_found_template'       => 'error/404',
  6.         'exception_template'       => 'error/index',
  7.         'template_map' => array(
  8.             'layout/layout'           => __DIR__ . '/../view/layout/layout.phtml',
  9.             'application/index/index' => __DIR__ . '/../view/application/index/index.phtml',
  10.             'error/404'               => __DIR__ . '/../view/error/404.phtml',
  11.             'error/index'             => __DIR__ . '/../view/error/index.phtml',
  12.         ),
  13.         'template_path_stack' => array(
  14.             __DIR__ . '/../view',
  15.         ),
  16.     ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement