11 lines
204 B
PHP
11 lines
204 B
PHP
<?php
|
|
class GiantController extends Zend_Controller_Action
|
|
{
|
|
|
|
public function indexAction(){}
|
|
|
|
public function searchAction(){
|
|
$this->view->assign('params', $this->getRequest()->getParams());
|
|
}
|
|
|
|
} |