Advertisement
Guest User

Untitled

a guest
Mar 25th, 2012
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <?php $this->accordionContainer()->captureStart('menu'); ?>
  2.  
  3. <?php echo $this->accordionPane('menu1', 'texte2',
  4. array(
  5. 'title' => 'Pane 1'
  6. ),
  7. array(
  8. 'style' => 'background-color: lightgray;'
  9. )
  10. ); ?>
  11.  
  12. <?php echo $this->accordionPane('menu2', 'texte3',
  13. array(
  14. 'title' => 'Pane 2',
  15. 'selected' => 'true'
  16. ),
  17. array(
  18. 'style' => 'background-color: lightgray;'
  19. )
  20. ); ?>
  21.  
  22. <?php echo $this->accordionContainer()->captureEnd('menu'); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement