PHP Classes

File: src/Prime/Console/stubs/config/view.php

Recommend this page to a friend!
  Classes of Tom Sailor   Prime PHP Framework   src/Prime/Console/stubs/config/view.php   Download  
File: src/Prime/Console/stubs/config/view.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Prime PHP Framework
Implement Web applications using MVC
Author: By
Last change:
Date: 6 years ago
Size: 629 bytes
 

Contents

Class file image Download
<?php

$cacheDirectory
= dirname(__DIR__) . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'cache';

/*
  |-------------------------------------------------------------------------
  | Configuração para uso do Twig Template
  |-------------------------------------------------------------------------
  |
  | Define as configurações padrão para o uso no TWIG
  |
 */
return [
   
'debug' => true,
   
'charset' => 'utf-8',
   
'base_template_class' => 'Twig_Template',
   
'cache' => $cacheDirectory,
   
'auto_reload' => true,
   
'strict_variables' => false,
   
'autoescape' => 'html',
   
'optimizations' => -1
];