- Timestamp:
- Oct 26, 2003, 9:00:25 PM (21 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/admin.php
r202 r216 24 24 $handle = $vtp->Open( '../template/'.$user['template'].'/admin/admin.vtp' ); 25 25 // language 26 $tpl = array( ' menu_title','title_default','charset','install_warning' );26 $tpl = array( 'title_default','charset','install_warning' ); 27 27 templatize_array( $tpl, 'lang', $handle ); 28 $vtp->setGlobalVar( $handle, 'user_template', $user['template'] );29 28 //-------------------------------------------------- install.php still exists ? 30 29 if ( is_file( './install.php' ) ) … … 156 155 // users 157 156 $vtp->addSession( $handle, 'summary' ); 158 $vtp->setVar( $handle, 'summary.indent', ' ' );157 $vtp->setVar( $handle, 'summary.indent', '| ' ); 159 158 $vtp->setVar( $handle, 'summary.link', 160 159 add_session_id( $link_start.'user_list' ) ); … … 163 162 // groups 164 163 $vtp->addSession( $handle, 'summary' ); 165 $vtp->setVar( $handle, 'summary.indent', ' ' );164 $vtp->setVar( $handle, 'summary.indent', '| ' ); 166 165 $vtp->setVar( $handle, 'summary.link', 167 166 add_session_id( $link_start.'group_list' ) ); … … 170 169 // categories 171 170 $vtp->addSession( $handle, 'summary' ); 172 $vtp->setVar( $handle, 'summary.indent', ' ' );171 $vtp->setVar( $handle, 'summary.indent', '| ' ); 173 172 $vtp->setVar( $handle, 'summary.link',add_session_id( $link_start.'cat_list')); 174 173 $vtp->setVar( $handle, 'summary.name', $lang['menu_categories'] ); … … 176 175 // waiting 177 176 $vtp->addSession( $handle, 'summary' ); 178 $vtp->setVar( $handle, 'summary.indent', ' ' );177 $vtp->setVar( $handle, 'summary.indent', '| ' ); 179 178 $vtp->setVar( $handle, 'summary.link', 180 179 add_session_id( $link_start.'waiting' ) ); … … 193 192 // comments 194 193 $vtp->addSession( $handle, 'summary' ); 195 $vtp->setVar( $handle, 'summary.indent', ' ' );194 $vtp->setVar( $handle, 'summary.indent', '| ' ); 196 195 $vtp->setVar( $handle, 'summary.link', 197 196 add_session_id( $link_start.'comments' ) ); … … 210 209 // update 211 210 $vtp->addSession( $handle, 'summary' ); 212 $vtp->setVar( $handle, 'summary.indent', ' ' );211 $vtp->setVar( $handle, 'summary.indent', '| ' ); 213 212 $vtp->setVar( $handle, 'summary.link', 214 213 add_session_id( $link_start.'update' ) ); … … 217 216 // thumbnails 218 217 $vtp->addSession( $handle, 'summary' ); 219 $vtp->setVar( $handle, 'summary.indent', ' ' );218 $vtp->setVar( $handle, 'summary.indent', '| ' ); 220 219 $vtp->setVar( $handle, 'summary.link', 221 220 add_session_id( $link_start.'thumbnail' ) ); … … 224 223 // history 225 224 $vtp->addSession( $handle, 'summary' ); 226 $vtp->setVar( $handle, 'summary.indent', ' ' );225 $vtp->setVar( $handle, 'summary.indent', '| ' ); 227 226 $vtp->setVar( $handle, 'summary.link', 228 227 add_session_id( $link_start.'stats' ) ); … … 231 230 // instructions 232 231 $vtp->addSession( $handle, 'summary' ); 233 $vtp->setVar( $handle, 'summary.indent', ' ' );232 $vtp->setVar( $handle, 'summary.indent', '| ' ); 234 233 $vtp->setVar( $handle, 'summary.link', 235 234 add_session_id( $link_start.'help' ) ); … … 238 237 // back to thumbnails page 239 238 $vtp->addSession( $handle, 'summary' ); 240 $vtp->setVar( $handle, 'summary.indent', ' ' );239 $vtp->setVar( $handle, 'summary.indent', '| ' ); 241 240 $vtp->setVar( $handle, 'summary.link', add_session_id( '../category.php' ) ); 242 241 $vtp->setVar( $handle, 'summary.name', $lang['menu_back'] ); -
trunk/template/default/admin/admin.vtp
r199 r216 69 69 background-color:#cccccc; 70 70 } 71 .cat_plan { 71 .summary { 72 text-align:center; 72 73 font-weight:bold; 73 74 } … … 193 194 <body> 194 195 <!--VTP_install_warning--><div class="install_warning">{#install_warning}</div><!--/VTP_install_warning--> 195 <table >196 <table width="100%"> 196 197 <tr> 197 <td width="1%" valign="top"> 198 <table class="table1"> 199 <tr> 200 <td class="titretable1">{#menu_title}</td> 201 </tr> 202 <tr> 203 <td class="contenucellule"> 204 <div class="plan"> 205 <!--VTP_summary--> 206 {#indent}<img src="../template/{#user_template}/admin/images/puce.gif" alt="> "><a href="{#link}" class="cat_plan">{#name}</a><br /> 207 <!--/VTP_summary--> 208 </div> 209 </td> 210 </tr> 211 </table> 198 <td class="summary"> 199 <!--VTP_summary--> 200 {#indent}<a href="{#link}">{#name}</a> 201 <!--/VTP_summary--> 212 202 </td> 203 </tr> 204 <tr> 213 205 <td align="center" valign="top"> 214 206 <div class="grostitre">{#title}</div>
Note: See TracChangeset
for help on using the changeset viewer.