// // Version: 1.0 Release date: 14 March 2003 // // THIS FILE IS DEPRICATED USE class tabtable from classes/controls.class.inc INSTEAD // ////////////////////////////////////////////////////////////////////////////////*/ $table_tabindex = isset($table_tabindex) ? $table_tabindex : 0; $table_tabs = isset($table_tabs) ? $table_tabs : array(); $table_arguments = isset($table_arguments) ? $table_arguments : ''; //draw head of table echo ''; echo ''; echo '
'; echo ''; echo ''; $tab_count = count($table_tabs); $remaining_width= $table_width - ($tab_count * 100); if ($tab_count > 0) { echo ''; //draw tabs and select the active doc for ($i=0;$i<$tab_count;$i++) { if ($i == $table_tabindex) { echo ''; }else { echo ''; } } echo ''; echo ''; } echo '
'.$table_title.'
'.$table_tabs[$i].''.$table_tabs[$i].' 
'; require($table_docs[$table_tabindex]); echo '
'; ?>