Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 31st, 2012  |  syntax: None  |  size: 0.68 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Social Engine and Zend framework default.tpl customization
  2. </head>
  3. <body id="global_page_<?php echo $request->getModuleName() . '-' . $request->getControllerName() . '-' . $request->getActionName() ?>">
  4. <div id="global_header">
  5. <?php echo $this->content('header') ?>
  6. </div>
  7. <div id='global_wrapper'>
  8. <div id='global_content'>
  9. <?php //echo $this->content('global-user', 'before') ?>
  10. <?php echo $this->layout()->content ?>
  11. <?php //echo $this->content('global-user', 'after') ?>
  12. </div>
  13. </div>
  14. <div id="global_footer">
  15. <?php echo $this->content('footer') ?>
  16. </div>
  17. </body>
  18. </html>
  19.        
  20. $this->view->addScriptPath('/partials'); // Put your custom files here
  21.        
  22. $this->render('customview.phtml')