I have a working zend mvc application that is using a layout, and this layout uses external stylesheets and scripts. Each page in the site has it's own controller, and the page-specific content for each page is in its index.phtml file. The layout works, and all the scripts/stylesheets are properly applied for each controller's index.phtml.
For example, the home page is "mvcProject/" which calls the index controller's index action which uses the index.phtml file respective to the index controller. Futhermore, the about us page is "mvcProject/about" which calls the about controller and displays views/about/index.phtml. Subjectively I felt that this structure was inefficient. The content of this site is only html, and I can't see why each page needs its own controller.
Therefore I tried to use only one controller to achieve the same end, that is to have the same architecture, by giving each page its own action within the single index controller. So now the "about us" page was "mvcProject/index/about" so that the index controller would call the about action which would use the views/index/about.phtml file.
This approach broke all of the links to external scripts/stylesheets in the layout. The layout still worked, but none of the links' paths would work. Obviously, this is a path-related issue, but I'm still relatively new to zend so I wasn't sure how to fix this. Therefore I went back and gave each page it's own controller again.
So my question is two fold: do I need concern myself with avoiding the bloat of giving each page its own controller, and if I do need to slim this structure down, what do I need to adjust to correct the links' paths? Thanks for your consideration.
Ignoring the discussion about the framework/number of controllers is overkill for now. The reason your scripts/css are failing is indeed a path issue. If you are using the layout helper then you should make use of the headLink and headScript objects inside the view.
This is my preferred way of setting up the scripts and css files I need whilst developing.
Bootstrap.php
protected function _initView()
{
// Initalise the view
$view = new Zend_View();
$view->doctype('HTML5');
// Get config options for the UI
$ui = $this->getApplication()->getOption('ui');
$view->headTitle($ui['title']);
foreach ($ui['stylesheet'] as $stylesheet) {
$view->headLink()->appendStylesheet($stylesheet);
}
foreach ($ui['script'] as $script) {
$view->headScript()->appendFile($script);
}
$viewRenderer = Zend_Controller_Action_HelperBroker::getStaticHelper(
'ViewRenderer'
);
$viewRenderer->setView($view);
return $view;
}
configs/application.ini
ui.title = "My Awesome Web App"
ui.stylesheet[] = "/extjs/resources/css/ext-all.css"
ui.stylesheet[] = "/resources/css/hod.css"
ui.stylesheet[] = "/resources/css/icons.css"
ui.stylesheet[] = "/resources/bootstrap/css/bootstrap.css"
ui.script[] = "extjs/ext-debug.js"
ui.script[] = "app.js"
layouts/default.phtml
<?php echo $this->doctype(); ?>
<html>
<head>
<?php
echo $this->headTitle();
echo $this->headMeta();
echo $this->headStyle();
echo $this->headScript();
echo $this->headLink();
?>
</head>
<body>
<?php echo $this->layout()->content; ?>
</body>
</html>
This allows you to setup all the scripts you need in development mode, and set the minified scripts in production all in the config without having to write any extra code.
Going back to the overkill question. I think even if you don't have connections to the database and all the bells and whistles in your app, using a framework is still the best approach from a maintenance point of view (once you're up to speed with the framework that is) if you are going to have more than 5 or 6 pages. Unless your website is going to see huge volumes of traffic and every byte or ms counts, then I don't see the point in reducing maintainability for the small overhead a framework adds.
The same logic applies for me with controllers. I don't see why you want to reduce the number of them when they help clearly split up the functions of work. Plus unless you change the router site.com/index/about looks uglier than site.com/about :)
I'm not sure how your path and url are created in your views, but do you use the baseUrl helper ? $this->baseUrl( [file] )