Archived
1
0
Fork 0

Moving about page to a PageController for static pages.

This commit is contained in:
Henrik Hautakoski 2015-02-21 14:53:23 +01:00
parent b873ab29c8
commit 9a68a04790
6 changed files with 24 additions and 19 deletions

View file

@ -0,0 +1,11 @@
<?php
class PageController extends Zend_Controller_Action
{
public function indexAction()
{
$page = $this->_getParam('page', 'index');
$this->render($page);
}
}