Combining Panels and YUI TabView
eschmidt99 - December 27, 2008 - 07:26
I can get the YUI TabView to work and I also use MiniPanels to add widgets and such to my front page. However I'm completely stumped as to how to place all the code in my MiniPanel INTO the TabView.
The TabView code is:
<?php
$nodes[] = (object)array('nav' => 'Tab One Label', 'content' => 'stuff');
$nodes[] = (object)array('nav' => 'Tab Two Label', 'content' => 'Tab Two Content');
$nodes[] = (object)array('nav' => 'Tab Three Label', 'content' => 'Tab Three Content');
$output = build_tabview("test",$nodes);
return $output;
?>I'm trying to get my MiniPanel code into where it says "stuff".
I'm not sure what information would help the most but if anybody has any ideas please let me know.
Thanks a ton,
Eric
