further modification to replace typical phpgw style

<TD BGCOLOR="{ROW_ON}">
with egroupware style
<td class="row_on">
for more flexibility. most of these files are years old.
(pim proofread)
This commit is contained in:
zhangweiwu 2005-07-06 02:26:44 +00:00
parent fc09bb2ab3
commit d2444ac288
7 changed files with 14 additions and 20 deletions

View File

@ -143,7 +143,6 @@
$total = $GLOBALS['phpgw']->accounts->total; $total = $GLOBALS['phpgw']->accounts->total;
$var = Array( $var = Array(
'th_bg' => $GLOBALS['phpgw_info']['theme']['th_bg'],
'left_next_matchs' => $this->nextmatchs->left('/index.php',$start,$total,'menuaction=admin.uiaccounts.list_groups'), 'left_next_matchs' => $this->nextmatchs->left('/index.php',$start,$total,'menuaction=admin.uiaccounts.list_groups'),
'right_next_matchs' => $this->nextmatchs->right('/index.php',$start,$total,'menuaction=admin.uiaccounts.list_groups'), 'right_next_matchs' => $this->nextmatchs->right('/index.php',$start,$total,'menuaction=admin.uiaccounts.list_groups'),
'lang_groups' => lang('%1 - %2 of %3 user groups',$start+1,$start+count($account_info),$total), 'lang_groups' => lang('%1 - %2 of %3 user groups',$start+1,$start+count($account_info),$total),
@ -177,9 +176,8 @@
foreach($account_info as $account) foreach($account_info as $account)
{ {
$tr_color = $this->nextmatchs->alternate_row_color($tr_color);
$var = Array( $var = Array(
'tr_color' => $tr_color, 'class' => $this->nextmatchs->alternate_row_color('', True),
'group_name' => (!$account['account_lid']?'&nbsp;':$account['account_lid']), 'group_name' => (!$account['account_lid']?'&nbsp;':$account['account_lid']),
'delete_link' => $this->row_action('delete','group',$account['account_id']) 'delete_link' => $this->row_action('delete','group',$account['account_id'])
); );
@ -744,7 +742,6 @@
$t->set_block('account','link_row'); $t->set_block('account','link_row');
$var = Array( $var = Array(
'th_bg' => $GLOBALS['phpgw_info']['theme']['th_bg'],
'tr_color1' => $GLOBALS['phpgw_info']['theme']['row_on'], 'tr_color1' => $GLOBALS['phpgw_info']['theme']['row_on'],
'tr_color2' => $GLOBALS['phpgw_info']['theme']['row_off'], 'tr_color2' => $GLOBALS['phpgw_info']['theme']['row_off'],
'lang_action' => lang('View user account'), 'lang_action' => lang('View user account'),
@ -999,8 +996,8 @@
$app = $perm_display[$i][0]; $app = $perm_display[$i][0];
if(!($i & 1)) if(!($i & 1))
{ {
$tr_color = $this->nextmatchs->alternate_row_color(); $tr_class = $this->nextmatchs->alternate_row_color('',True);
$perm_html .= '<tr bgcolor="'.$tr_color.'">'; $perm_html .= '<tr class="'.$tr_class.'">';
} }
$perm_html .= '<td>' . $perm_display[$i][1] . '</td>' $perm_html .= '<td>' . $perm_display[$i][1] . '</td>'
. '<td><input type="checkbox" name="account_apps[' . '<td><input type="checkbox" name="account_apps['

View File

@ -28,11 +28,11 @@
$this->rowColor[1] = $GLOBALS['phpgw_info']['theme']['row_off']; $this->rowColor[1] = $GLOBALS['phpgw_info']['theme']['row_off'];
} }
function section_item($pref_link='',$pref_text='', $bgcolor) function section_item($pref_link='',$pref_text='', $class)
{ {
$this->t->set_var('row_link',$pref_link); $this->t->set_var('row_link',$pref_link);
$this->t->set_var('row_text',$pref_text); $this->t->set_var('row_text',$pref_text);
$this->t->set_var('tr_color',$bgcolor); $this->t->set_var('class',$class);
$this->t->parse('all_rows','link_row',True); $this->t->parse('all_rows','link_row',True);
} }
@ -58,12 +58,10 @@
{ {
$link = $GLOBALS['phpgw']->link($value['url'],'account_id=' . get_var('account_id',array('GET','POST'))); $link = $GLOBALS['phpgw']->link($value['url'],'account_id=' . get_var('account_id',array('GET','POST')));
} }
$this->section_item($link,lang($value['description']),$this->rowColor[($i % 2)]); $this->section_item($link,lang($value['description']),($i%2) ? "row_on": "row_off");
$i++; $i++;
} }
$this->t->set_var('th_bg',$GLOBALS['phpgw_info']['theme']['th_bg']);
if(strpos($_menuData[0]['extradata'],'user')) if(strpos($_menuData[0]['extradata'],'user'))
{ {
$destination = 'users'; $destination = 'users';

View File

@ -36,7 +36,6 @@
// This func called by the includes to dump a row header // This func called by the includes to dump a row header
function section_start($appname='',$icon='') function section_start($appname='',$icon='')
{ {
$GLOBALS['admin_tpl']->set_var('icon_backcolor',$GLOBALS['phpgw_info']['theme']['row_off']);
$GLOBALS['admin_tpl']->set_var('link_backcolor',$GLOBALS['phpgw_info']['theme']['row_off']); $GLOBALS['admin_tpl']->set_var('link_backcolor',$GLOBALS['phpgw_info']['theme']['row_off']);
$GLOBALS['admin_tpl']->set_var('app_name',$GLOBALS['phpgw_info']['apps'][$appname]['title']); $GLOBALS['admin_tpl']->set_var('app_name',$GLOBALS['phpgw_info']['apps'][$appname]['title']);
$GLOBALS['admin_tpl']->set_var('a_name',$appname); $GLOBALS['admin_tpl']->set_var('a_name',$appname);

View File

@ -9,7 +9,7 @@
</table> </table>
<table border="0" width="45%" align="center"> <table border="0" width="45%" align="center">
<tr bgcolor="{th_bg}"> <tr class="th">
<td>{sort_name}</td> <td>{sort_name}</td>
<td>{header_edit}</td> <td>{header_edit}</td>
<td>{header_delete}</td> <td>{header_delete}</td>
@ -36,7 +36,7 @@
<!-- END list --> <!-- END list -->
<!-- BEGIN row --> <!-- BEGIN row -->
<tr bgcolor="{tr_color}"> <tr class="{class}">
<td>{group_name}</td> <td>{group_name}</td>
<td class="narrow_column">{edit_link}</td> <td class="narrow_column">{edit_link}</td>
<td class="narrow_column">{delete_link}</td> <td class="narrow_column">{delete_link}</td>

View File

@ -6,14 +6,14 @@
<!-- END list --> <!-- END list -->
<!-- BEGIN app_row --> <!-- BEGIN app_row -->
<tr bgcolor="{icon_backcolor}"> <tr class="row_off">
<td class="narrow_column" valign="middle"><img src="{app_icon}" alt="[ {app_name} ]"> <a name="{a_name}"></a></td> <td class="narrow_column" valign="middle"><img src="{app_icon}" alt="[ {app_name} ]"> <a name="{a_name}"></a></td>
<td width="95%" valign="middle"><strong>&nbsp;&nbsp;{app_name}</strong></td> <td width="95%" valign="middle"><strong>&nbsp;&nbsp;{app_name}</strong></td>
</tr> </tr>
<!-- END app_row --> <!-- END app_row -->
<!-- BEGIN app_row_noicon --> <!-- BEGIN app_row_noicon -->
<tr bgcolor="{icon_backcolor}"> <tr class="row_off">
<td colspan="2" width="95%" valign="middle"><strong>&nbsp;&nbsp;{app_name}</strong> <a name="{a_name}"></a></td> <td colspan="2" width="95%" valign="middle"><strong>&nbsp;&nbsp;{app_name}</strong> <a name="{a_name}"></a></td>
</tr> </tr>
<!-- END app_row_noicon --> <!-- END app_row_noicon -->

View File

@ -1,6 +1,6 @@
<!-- BEGIN menu_links --> <!-- BEGIN menu_links -->
<table border="0" width="100%"> <table border="0" width="100%">
<tr bgcolor="{th_bg}"> <tr class="th">
<td>&nbsp;</td> <td>&nbsp;</td>
</tr> </tr>
{all_rows} {all_rows}
@ -13,7 +13,7 @@
</table> </table>
<!-- END menu_links --> <!-- END menu_links -->
<!-- BEGIN link_row --> <!-- BEGIN link_row -->
<tr bgcolor="{tr_color}"> <tr class="{class}">
<td>&nbsp;&nbsp;<a href="{row_link}">{row_text}</a></td> <td>&nbsp;&nbsp;<a href="{row_link}">{row_text}</a></td>
</tr> </tr>
<!-- END link_row --> <!-- END link_row -->

View File

@ -26,14 +26,14 @@
<!-- END list --> <!-- END list -->
<!-- BEGIN app_row --> <!-- BEGIN app_row -->
<tr height="60" bgcolor="{icon_backcolor}"> <tr height="60" class="row_off">
<td width="5%" align="center" valign="middle"><img src="{app_icon}" alt="[ {app_name} ]"> <a name="{a_name}"></a></td> <td width="5%" align="center" valign="middle"><img src="{app_icon}" alt="[ {app_name} ]"> <a name="{a_name}"></a></td>
<td width="95%" valign="middle"><strong>&nbsp;&nbsp;{app_name}</strong></td> <td width="95%" valign="middle"><strong>&nbsp;&nbsp;{app_name}</strong></td>
</tr> </tr>
<!-- END app_row --> <!-- END app_row -->
<!-- BEGIN app_row_noicon --> <!-- BEGIN app_row_noicon -->
<tr bgcolor="{icon_backcolor}"> <tr class="row_off">
<td colspan="2" width="95%" valign="middle"><strong>&nbsp;&nbsp;{app_name}</strong> <a name="{a_name}"></a></td> <td colspan="2" width="95%" valign="middle"><strong>&nbsp;&nbsp;{app_name}</strong> <a name="{a_name}"></a></td>
</tr> </tr>
<!-- END app_row_noicon --> <!-- END app_row_noicon -->