11 lines
199 B
PHP
11 lines
199 B
PHP
<?php
|
|
|
|
class PageController extends Zend_Controller_Action
|
|
{
|
|
public function indexAction()
|
|
{
|
|
$page = $this->_getParam('page', 'index');
|
|
|
|
$this->render($page);
|
|
}
|
|
}
|