new tabs
This commit is contained in:
parent
42362cc461
commit
6b975a68c5
|
@ -1500,26 +1500,25 @@ class accountContainer {
|
||||||
*/
|
*/
|
||||||
private function printModuleTabs() {
|
private function printModuleTabs() {
|
||||||
// $x is used to count up tabindex
|
// $x is used to count up tabindex
|
||||||
$x=0;
|
$x=1;
|
||||||
echo "<table width=\"100%\" border=0 style=\"border-collapse: collapse;\">";
|
echo '<div id="headerTabs" class="ui-tabs">';
|
||||||
echo "<tr>\n";
|
echo '<ul class="ui-tabs-nav ui-helper-reset ui-helper-clearfix">';
|
||||||
// Loop for module
|
// Loop for each module
|
||||||
for ($i=0; $i<count($this->order); $i++ ) {
|
for ($i=0; $i<count($this->order); $i++ ) {
|
||||||
$buttonStatus = $this->module[$this->order[$i]]->getButtonStatus();
|
$buttonStatus = $this->module[$this->order[$i]]->getButtonStatus();
|
||||||
// skip hidden buttons
|
// skip hidden buttons
|
||||||
if ($buttonStatus == 'hidden') continue;
|
if ($buttonStatus == 'hidden') continue;
|
||||||
$class = $this->type . "list-head";
|
|
||||||
if ($this->order[$this->current_page] == $this->order[$i]) $class = $this->type . "list-edit";
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table width=\"100%\" style=\"border-collapse: collapse;\">\n";
|
|
||||||
echo "<tr class=\"" . $class . "\"><td onclick=\"document.getElementsByName('form_main_".$this->order[$i]."')[0].click();\"";
|
|
||||||
echo " align=\"center\" style=\"border: 1px solid;border-bottom: 0px solid;padding:5px;\">\n";
|
|
||||||
// print normal button
|
|
||||||
$buttonImage = $this->module[$this->order[$i]]->getIcon();
|
$buttonImage = $this->module[$this->order[$i]]->getIcon();
|
||||||
|
$activatedClass = '';
|
||||||
|
if ($this->order[$this->current_page] == $this->order[$i]) {
|
||||||
|
$activatedClass = ' ui-tabs-selected ui-state-active';
|
||||||
|
}
|
||||||
|
// print button
|
||||||
|
echo '<li class="ui-state-default ui-corner-top' . $activatedClass . '">';
|
||||||
$buttonImageStyle = '';
|
$buttonImageStyle = '';
|
||||||
$buttonSpace = '';
|
$buttonSpace = '';
|
||||||
if ($buttonImage != null) {
|
if ($buttonImage != null) {
|
||||||
$buttonImageStyle = 'background-image: url(../../graphics/' . $buttonImage . ');background-position: 2px center;background-repeat: no-repeat;height:32px;';
|
$buttonImageStyle = 'background-image: url(../../graphics/' . $buttonImage . ');background-position: 2px center;background-repeat: no-repeat;height:32px;margin: 5px;';
|
||||||
$buttonSpace = ' ';
|
$buttonSpace = ' ';
|
||||||
}
|
}
|
||||||
$buttonStyle = $buttonImageStyle . 'background-color:transparent;;border:0px solid;';
|
$buttonStyle = $buttonImageStyle . 'background-color:transparent;;border:0px solid;';
|
||||||
|
@ -1528,11 +1527,10 @@ class accountContainer {
|
||||||
echo "\" tabindex=$x";
|
echo "\" tabindex=$x";
|
||||||
if ($buttonStatus == 'disabled') echo " disabled";
|
if ($buttonStatus == 'disabled') echo " disabled";
|
||||||
echo ">\n";
|
echo ">\n";
|
||||||
echo "</td></tr></table>\n";
|
echo "</li>\n";
|
||||||
echo '</td>';
|
|
||||||
$x++;
|
$x++;
|
||||||
}
|
}
|
||||||
echo "<td width=\"100%\"> </td></tr></table>\n";
|
echo '</ul></div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue