home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / dotproject / style / default / header.php < prev    next >
PHP Script  |  2004-01-11  |  4KB  |  108 lines

  1. <?php /* STYLE/DEFAULT $Id: header.php,v 1.27 2004/01/11 04:53:35 ajdonnison Exp $ */
  2. $dialog = dPgetParam( $_GET, 'dialog', 0 );
  3. ?>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  5.        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  6. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  7. <head>
  8.     <meta name="Description" content="dotProject Default Style" />
  9.     <meta name="Version" content="<?php echo @$AppUI->getVersion();?>" />
  10.     <meta http-equiv="Content-Type" content="text/html;charset=<?php echo isset( $locale_char_set ) ? $locale_char_set : 'UTF-8';?>" />
  11.     <title><?php echo @$AppUI->getConfig( 'page_title' );?></title>
  12.     <link rel="stylesheet" type="text/css" href="./style/<?php echo $uistyle;?>/main.css" media="all" />
  13.     <style type="text/css" media="all">@import "./style/<?php echo $uistyle;?>/main.css";</style>
  14.     <link rel="shortcut icon" href="./style/<?php echo $uistyle;?>/images/favicon.ico" type="image/ico" />
  15. </head>
  16.  
  17. <body onload="this.focus();">
  18. <table width="100%" cellpadding="0" cellspacing="0" border="0">
  19. <tr>
  20.     <td><table width='100%' cellpadding=3 cellspacing=0 border=0><tr>
  21.     <th background="style/<?php echo $uistyle;?>/images/titlegrad.jpg" class="banner" align="left"><strong><?php echo $AppUI->cfg['page_title'];
  22.     echo " ";
  23.     echo $AppUI->getVersion();?></strong></th>
  24.     <th align="right" width='50'><a href='http://www.dotproject.net/'><img src="style/<?php echo $uistyle;?>/images/dp_icon.gif" border=0></a></th>
  25.     </tr></table></td>
  26. </tr>
  27. <?php if (!$dialog) {
  28.     // top navigation menu
  29.     $nav = $AppUI->getMenuModules();
  30. ?>
  31. <tr>
  32.     <td class="nav" align="left">
  33.     <table width="100%" cellpadding="3" cellspacing="0" width="100%">
  34.     <tr>
  35.         <td>
  36.         <?php
  37.         $links = array();
  38.         foreach ($nav as $module) {
  39.             if (!getDenyRead( $module['mod_directory'])) {
  40.                 $links[] = '<a href="?m='.$module['mod_directory'].'">'.$AppUI->_($module['mod_ui_name']).'</a>';
  41.             }
  42.         }
  43.         echo implode( ' | ', $links );
  44.         echo "\n";
  45.         ?>
  46.         </td>
  47.         <form name="frm_new" method=GET action="./index.php">
  48. <?php
  49.     echo '        <td nowrap="nowrap" align="right">';
  50.     $newItem = array( ""=>'- New Item -' );
  51.     $newItem["companies"] = "Company";
  52.     $newItem["contacts"] = "Contact";
  53.     $newItem["calendar"] = "Event";
  54.     $newItem["files"] = "File";
  55.     $newItem["projects"] = "Project";
  56.  
  57.     echo arraySelect( $newItem, 'm', 'style="font-size:10px" onChange="f=document.frm_new;mod=f.m.options[f.m.selectedIndex].value;if(mod) f.submit();"', '', true);
  58.  
  59.     echo "</td>\n";
  60.     echo "        <input type=\"hidden\" name=\"a\" value=\"addedit\" />\n";
  61.  
  62. //build URI string
  63.     if (isset( $company_id )) {
  64.         echo '<input type="hidden" name="company_id" value="'.$company_id.'" />';
  65.     }
  66.     if (isset( $task_id )) {
  67.         echo '<input type="hidden" name="task_parent" value="'.$task_id.'" />';
  68.     }
  69.     if (isset( $file_id )) {
  70.         echo '<input type="hidden" name="file_id" value="'.$file_id.'" />';
  71.     }
  72. ?>
  73.         </form>
  74.         </td>
  75.     </tr>
  76.     </table>
  77.     </td>
  78. </tr>
  79. <tr>
  80.     <td>
  81.         <table cellspacing="0" cellpadding="3" border="0" width="100%">
  82.         <tr>
  83.             <td width="100%"><?php echo $AppUI->_('Welcome')." $AppUI->user_first_name $AppUI->user_last_name"; ?></td>
  84.             <td nowrap="nowrap">
  85.                 <?php echo dPcontextHelp( 'Help' );?> |
  86.                 <a href="./index.php?m=admin&a=viewuser&user_id=<?php echo $AppUI->user_id;?>"><?php echo $AppUI->_('My Info');?></a> |
  87. <?php
  88.     if (!getDenyRead( 'calendar' )) {
  89.         $now = new CDate();
  90. ?>
  91.                 <a href="./index.php?m=calendar&a=day_view&date=<?php echo $now->format( FMT_TIMESTAMP_DATE );?>"><?php echo $AppUI->_('Today');?></a> |
  92. <?php } ?>
  93.                 <a href="./index.php?logout=-1"><?php echo $AppUI->_('Logout');?></a>
  94.             </td>
  95.         </tr>
  96.         </table>
  97.     </td>
  98. </tr>
  99. <?php } // END showMenu ?>
  100. </table>
  101.  
  102. <table width="100%" cellspacing="0" cellpadding="4" border="0">
  103. <tr>
  104. <td valign="top" align="left" width="98%">
  105. <?php
  106.     echo $AppUI->getMsg();
  107. ?>
  108.