Etiquetas: Configuración, Symfony
Symfony 2 tiene tres entornos predeterminados los cuales son Desarrollo, Producción y Test; aparte de estos entornos, es posible crear mas entornos si es necesario.
Para crear el nuevo entorno se debe seguir los siguientes pasos:
- Crear archivo de configuración.
- Crear controlador frontal.
- Acceder a "htp://localhost/app_nuevoEntorno.php"
- Crear el Archivo de Configuración
YML
# app/config/config_nuevoEntorno.yml
imports:
- { resource: config_prod.yml }
framework:
profiler: { only_exceptions: false }
XML
<!-- app/config/config_nuevoEntorno.xml -->
<imports>
<import resource="config_prod.xml" />
</imports>
<framework:config>
<framework:profiler only-exceptions="false" />
</framework:config>
PHP
// app/config/config_nuevoEntorno.php
$cargador->import(’config_prod.php’)
$contenedor->loadFromExtension(’framework’,
array(
’profiler’ => array(’only-exceptions’ => false),
)
);
- Crear Controlador Frontal
<?php
require_once __DIR__.’/../app/bootstrap.php’;
require_once __DIR__.’/../app/AppKernel.php’;
use SymfonyComponentHttpFoundationRequest;
$kernel = new AppKernel(’nuevoEntorno’, false);
$kernel->handle(Request::createFromGlobals())->send();
?>
<?php
require_once __DIR__.’/../app/bootstrap.php’;
require_once __DIR__.’/../app/AppKernel.php’;
use SymfonyComponentHttpFoundationRequest;
$kernel = new AppKernel(’nuevoEntorno’, false);
$kernel->handle(Request::createFromGlobals())->send();
?>
Hender Orlando Puello Rincón
No hay comentarios:
Publicar un comentario
Gracias Por comentar