Guest User

Untitled

a guest
Jun 20th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2. // application/controllers/DownloadController.php
  3. class DownloadController extends Zend_Controller_Action {
  4. public function indexAction() {
  5. $form = new Default_Form_Download();
  6. $form->setView()->render();
  7. $this->view->form = $form;
  8. }
  9. }
Add Comment
Please, Sign In to add comment