Zend Framework/Zend Config/Ini
Introducción
editarEn este ejemplo la parte importante es #/html/index.php aquí tenemos que prestar especial atención al fragmento
$config = new Zend_Config_Ini( ROOT_DIR_CONFIG.'/appconfig.ini', 'staging'); echo '<br>'.$config->database->host; // prints "dev.example.com" echo '<br>'.$config->database->name; // prints "dbname"
El archivo de configuración es #/config/appconfig.ini
; Production site configuration data [production] webhost = www.example.com database.type = pdo_mysql database.host = db.example.com database.username = dbuser database.password = secret database.name = dbname ; Staging site configuration data inherits from production and ; overrides values as necessary [staging : production] database.host = dev.example.com database.username = devuser database.password = devsecret
Aquí definimos el formato que se utilizara para desplegar la salida.
Podemos ver el resultado #/log/zfw.log
Estructura de archivos
editarLa estructura de los archivos será al siguiente
/.htaccess
editarBreve descripción del archivo
RewriteEngine on RewriteRule !\.(js|ico|gif|jpg|png|css)$ html
/application/controllers/IndexController.php
editarBreve descripción del archivo
<?php /** * Zend Framework Tutorial * * Este tutorial tiene un enfoque pragmatico, lo cual indica una amplia cantidad * de ejemplos. Este material forma parte del Wikibook en español para ZF. * * @author Mario Garcia * @copyright Copyright (c) 2006-2008 Oh!Studio Media Solutions (http://www.ohstudio.com.ar) * @license http://www.php.net/license/3_0.txt */ class IndexController extends Zend_Controller_Action { function init() { $response = $this->getResponse(); $response->insert('sidebarLeft', $this->view->render('sidebarLeft.phtml')); $response->insert('sidebarRight', $this->view->render('sidebarRight.phtml')); $response->insert('header', $this->view->render('header.phtml')); $response->insert('footer', $this->view->render('footer.phtml')); } public function indexAction() { } }
/application/views/layouts/layout.phtml
editarBreve descripción del archivo
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>ZFTutorial :: Enfoque pragmatico</title> <link rel="stylesheet" type="text/css" href="<?php echo $this->baseUrl();?>/css/grid.css" /> </head> <body> <div id="bcss-header"> <!-- bcss-header --> <?php echo $this->layout()->header ?> <!-- /bcss-header --> </div> <div id="bcss-sidebar-1"> <!-- bcss-sidebar-1 --> <?php echo $this->layout()->sidebarLeft ?> <!-- /bcss-sidebar-1 --> </div> <div id="bcss-content"> <!-- bcss-content --> <?php echo $this->layout()->content ?> <!-- /bcss-content --> </div> <div id="bcss-sidebar-2"> <!-- bcss-sidebar-2 --> <?php echo $this->layout()->sidebarRight ?> <!-- /bcss-sidebar-2 --> </div> <div id="bcss-footer"> <!-- bcss-footer --> <?php echo $this->layout()->footer ?> <!-- /bcss-footer --> </div> </body> </html>
/application/views/helpers/BaseUrl.php
editarBreve descripción del archivo
<?php /** * Zend Framework Tutorial * * Este tutorial tiene un enfoque pragmatico, lo cual indica una amplia cantidad * de ejemplos. Este material forma parte del Wikibook en español para ZF. * * @author Mario Garcia * @copyright Copyright (c) 2006-2008 Oh!Studio Media Solutions (http://www.ohstudio.com.ar) * @license http://www.php.net/license/3_0.txt */ class Zend_View_Helper_BaseUrl { function baseUrl() { $fc = Zend_Controller_Front::getInstance(); $request = $fc->getRequest(); return $request->getBaseUrl(); } }
/application/views/scripts/sidebarLeft.phtml
editarBreve descripción del archivo
<ul> <li><a href="<?php echo $this->baseUrl();?>/index/index">home</a></li> <li><a href="http://www.google.com">google</a></li> </ul>
/application/views/scripts/header.phtml
editarBreve descripción del archivo
<h1>Header</h1>
/application/views/scripts/footer.phtml
editarBreve descripción del archivo
<h1>Footer</h1>
/application/views/scripts/sidebarRight.phtml
editarBreve descripción del archivo
<h1>Sidebar Right</h1>
/application/views/scripts/index/index.phtml
editarBreve descripción del archivo
<h1>Hello World !!!</h1>
/config/appconfig.ini
editarBreve descripción del archivo
; Production site configuration data [production] webhost = www.example.com database.type = pdo_mysql database.host = db.example.com database.username = dbuser database.password = secret database.name = dbname ; Staging site configuration data inherits from production and ; overrides values as necessary [staging : production] database.host = dev.example.com database.username = devuser database.password = devsecret
/html/index.php
editarBreve descripción del archivo
<?php /** * Zend Framework Tutorial * * Este tutorial tiene un enfoque pragmatico, lo cual indica una amplia cantidad * de ejemplos. Este material forma parte del Wikibook en español para ZF. * * @author Mario Garcia * @copyright Copyright (c) 2006-2008 Oh!Studio Media Solutions (http://www.ohstudio.com.ar) * @license http://www.php.net/license/3_0.txt */ /*poner comentario*/ define('ROOT_DIR', dirname(dirname(__FILE__))); define('ROOT_DIR_CONFIG', ROOT_DIR.DIRECTORY_SEPARATOR.'config'); // Setup path to the Zend Framework files set_include_path('.' . PATH_SEPARATOR . ROOT_DIR.'/lib/' . PATH_SEPARATOR . get_include_path() ); require_once 'Zend/Loader.php'; Zend_Loader::registerAutoload(); $config = new Zend_Config_Ini( ROOT_DIR_CONFIG.'/appconfig.ini', 'staging'); echo '<br>'.$config->database->host; // prints "dev.example.com" echo '<br>'.$config->database->name; // prints "dbname" // Inicializar el MVC Zend_Layout::startMvc(array('layoutPath' => ROOT_DIR.'/application/views/layouts')); // Run! $frontController = Zend_Controller_Front::getInstance(); $frontController->addControllerDirectory(ROOT_DIR.'/application/controllers'); $frontController->throwExceptions(true); try { $frontController->dispatch(); } catch(Exception $e) { echo nl2br($e->__toString()); }
/html/.htaccess
editarBreve descripción del archivo
RewriteEngine on RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php
/html/css/grid.css
editarBreve descripción del archivo
/* Site Grid by BoxedCSS.com */ #bcss-header { width:100%; background:#FFFFE5; /* you can delete this, it's just a visual aid */ clear:both; } #bcss-sidebar-1 { width:27%; float:left; background:#FFE5FF; /* you can delete this, it's just a visual aid */ } #bcss-sidebar-2 { width:13%; float:left; background:#F7FBEA; /* you can delete this, it's just a visual aid */ } #bcss-content { width:60%; min-height: 400px; float:left; background:#E5F2FF; /* you can delete this, it's just a visual aid */ } #bcss-footer { width:100%; clear:both; background:#FFF2E5; /* you can delete this, it's just a visual aid */ }