horizontal_toolbar.inc
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:2k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. <?php 
  2. $url_util = new UrlObject();
  3. reset( $app_server->apps );
  4. while( list( $app, $obj_ref ) = each($app_server->apps) ) {
  5.    if ( $app == 'MANAGER' ) {
  6.       if ( $user_admin_privileges_obj->add_users == 0 &&
  7.            $user_admin_privileges_obj->edit_users == 0 &&
  8.            $user_admin_privileges_obj->delete_users == 0 ) {
  9.       } else {
  10.       $app_selected     = 0;
  11.       $c_application    = $app;
  12.       $app_title        = $obj_ref->app_description;
  13.       $new_mode         = $app;
  14.       if ( $current_application == $app ) { 
  15.          $app_selected = 1; 
  16.       }
  17.       $template_obj->Register( 'app_url', 
  18.            $url_util->PostUrl(
  19.                $default->base_url,
  20.                   Array(
  21.                   'session_id'            => $session_id,
  22.                   'form_mode'             => $new_mode,
  23.                   'current_application'   => $c_application
  24.                   )
  25.            )
  26.       );
  27.       $template_obj->Register( 'app_title', $app_title );
  28.       if ( $app_selected == 1 ) {
  29.          $template_obj->ParseTemplate(
  30.             './templates/horizontal_toolbar/item_selected.inc' 
  31.          );
  32.       } else {
  33.          $template_obj->ParseTemplate(
  34.             './templates/horizontal_toolbar/item_not_selected.inc' 
  35.          );
  36.       }
  37.       }
  38.    } else {
  39.    if ( is_object( $obj_ref ) && $obj_ref->app_description != '' ) {
  40.       $app_selected     = 0;
  41.       $c_application    = $app;
  42.       $app_title        = $obj_ref->app_description;
  43.       $new_mode         = $app;
  44.       $template_obj->Register( 'app_url', 
  45.            $url_util->PostUrl(
  46.                $default->base_url,
  47.                   Array(
  48.                   'session_id'            => $session_id,
  49.                   'form_mode'             => $new_mode,
  50.                   'current_application'   => $c_application
  51.                   )
  52.            )
  53.       );
  54.       $template_obj->Register( 'app_title', $app_title );
  55.       if ( $current_application == $app ) { 
  56.          $app_selected = 1; 
  57.       }
  58.       if ( $app_selected == 1 ) {
  59.          $template_obj->ParseTemplate(
  60.             './templates/horizontal_toolbar/item_selected.inc' 
  61.          );
  62.       } else {
  63.          $template_obj->ParseTemplate(
  64.             './templates/horizontal_toolbar/item_not_selected.inc' 
  65.          );
  66.       }
  67.    }
  68.    }
  69. }
  70. ?>