Guest User

Untitled

a guest
May 23rd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. 1. Controller
  2. class IndexController extends Zend_Controller_Action{
  3. public function actionAction(){
  4. echo 'test';
  5. }
  6.  
  7. 2. View/Layout
  8. <?php echo $this->action('action', 'index', null, array('count' => 10)); ?>
  9.  
  10. Output: test
Add Comment
Please, Sign In to add comment