Esempio n. 1
0
//configure ribbon (breadcrumbs) array("name"=>"url"), leave url empty if no url
//$breadcrumbs["New Crumb"] => "http://url.com"
$breadcrumbs["Misc"] = "";
include "inc/ribbon.php";
?>

	<!-- MAIN CONTENT -->
	<div id="content">
		<section id="widget-grid" class="">
			
			<?php 
$ui = new SmartUI();
$ui->start_track();
// smartui code
$tabs = array('tab1' => 'My Tab', 'tab2' => 'My Tab 2', 'tab3' => 'My Tab 3');
$tab = $ui->create_tab($tabs);
$tab->content('tab1', function () {
    return 'test content';
})->content('tab2', 'Ths is Tab2 content')->content('tab3', 'this is Tab3 content');
$dropdown_items = array('<a href="javascript:void(0);">Some action</a>', '<a href="javascript:void(0);">Some other action</a>', '-', array('content' => '<a tabindex="-1" href="javascript:void(0);">Hover me for more options</a>', 'submenu' => array('<a tabindex="-1" href="javascript:void(0);">Second level</a>', array('content' => '<a href="javascript:void(0);">Even More..</a>', 'submenu' => array('<a href="javascript:void(0);">3rd level</a>', '<a href="javascript:void(0);">3rd level</a>')), '<a href="javascript:void(0);">Second level</a>', '<a href="javascript:void(0);">Second level</a>')));
$tab->dropdown('tab2', $dropdown_items);
$tab->options('bordered', true);
$tab->active('tab3', true);
$tab->title('tab3', 'New Tab 3 Title <span class="badge bg-color-pinkDark txt-color-white">99</span>');
$tab_html = $tab->print_html(true);
// tab in widget
$tab_widget = $ui->create_tab(array('My New Tab', 'This is a tab'));
$tab_widget->content(0, 'This is a tab content #0');
$tab_widget->content(1, 'THis is a tab content #1');
$tab_widget->options('widget', true)->options('pull', 'right');
$tab_widget_html = $tab_widget->print_html(true);