Entiendo pruebo y comento como me fue, otra consulta GatorV, la inicializacion de db adapter la hago agregando un metodo en la clase bootstrap llamado _initDatabase() o no?
Probé con esto pero no funciona, lo extraje de una de las respuestas, que estoy haciendo mal ahora.
Cree el controlador menu y content y guarde los archivos en las respectivas carpetas del view con la extension phtml.
layout.phtml
Código PHP:
Ver original<?php echo $this->doctype() ?> <!-- This Line will output the doctype we set inside the bootstrap file -->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Sistema Informatico Clinica</title>
<?php echo $this->headLink()->appendStylesheet('/css/global.css') ?>
<?php echo $this->headLink()->appendStylesheet('/css/frame_menu_clinica.css') ?>
</head>
<frameset rows="90,*" framespacing="0" frameborder="0" border="0">
<frame src="
<?php echo $this->url(array('controller' => 'menu')); ?>" name="encabezado" scrolling="NO" noresize target="principal">
<frame src="
<?php echo $this->url(array('controller' => 'content')); ?>" name="principal" target="_self" scrolling="auto">
<noframes>
<body>
</body>
</noframes>
</frameset>
<frameset>
</frameset>
</html>