phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] phpgwapi/templates/probusiness head.inc.php, NONE, 1


From: Chris Weiss <address@hidden>
Subject: [Phpgroupware-cvs] phpgwapi/templates/probusiness head.inc.php, NONE, 1.1.2.1 head.tpl, NONE, 1.1.2.1 navbar.inc.php, NONE, 1.1.2.1 navbar.tpl, NONE, 1.1.2.1 navbar_app.tpl, NONE, 1.1.2.1 navbar_app_tablecontent.tpl, NONE, 1.1.2.1 nextmatchs.tpl, NONE, 1.1.2.1
Date: Thu, 23 Oct 2003 02:08:41 +0000

Update of /cvsroot/phpgroupware/phpgwapi/templates/probusiness
In directory subversions:/tmp/cvs-serv22349/phpgwapi/templates/probusiness

Added Files:
      Tag: Version-0_9_16-branch
        head.inc.php head.tpl navbar.inc.php navbar.tpl navbar_app.tpl 
        navbar_app_tablecontent.tpl nextmatchs.tpl 
Log Message:
adding probiz template


--- NEW FILE: navbar.tpl ---
<!-- BEGIN navbar -->
<table class="workframe">
  <tr>
    <td class="APINavBar" align="center">
      <table class="APINavBar">
        <tr>
          <td id="logo">
            <IMG src="{api_root}/images/logo.gif" title="www.phpgroupware.org">
          </td>
        </tr>
        <tr>
          <td>
            {switchlink}
          </td>
        </tr>
        {navbarview}
      </table>
    </td>
    <td valign="top">
      {applications}

<!--
 <tr>
  <td align="left" colspan="2">
   {user_info}
  </td>
  <td align="right">
   {current_users}
  </td>
 </tr>
-->

<!-- BEGIN app_header -->
<b>{current_app_header}</b><hr>
<!-- END app_header -->
{messages}<br>
<!-- END navbar -->

--- NEW FILE: navbar.inc.php ---
<?php
  /**************************************************************************\
  * phpGroupWare                                                             *
  * http://www.phpgroupware.org                                              *
  * Copyright (C) 2003 probusiness AG                                        *
  * --------------------------------------------                             *
  *  This program is free software; you can redistribute it and/or modify it *
  *  under the terms of the GNU General Public License as published by the   *
  *  Free Software Foundation; either version 2 of the License, or (at your  *
  *  option) any later version.                                              *
  \**************************************************************************/

  /* $Id: navbar.inc.php,v 1.1.2.1 2003/10/23 02:08:39 cw Exp $ */

  function parse_navbar($force = False)
   {
    if( !$_REQUEST['popup'] )
     {
      $tpl = createobject('phpgwapi.Template',PHPGW_TEMPLATE_DIR);
      $tpl->set_unknowns('remove');

      $tpl->set_file(array( 'navbar'           => 'navbar.tpl',
                            'navbar_app'       => 'navbar_app.tpl',
                            'navbar_app_table' => 'navbar_app_tablecontent.tpl'
                          ));

      $var['api_root'] = $GLOBALS['phpgw_info']['server']['webserver_url'] . 
'/phpgwapi/templates/probusiness/';

      if($_GET['mode'] == "folders" )
      {
        $GLOBALS['HTTP_SESSION_VARS']['navbar']['mode'] = "folders";
      }

      if($_GET['mode'] == "applications" )
      {
        $GLOBALS['HTTP_SESSION_VARS']['navbar']['mode'] = "applications";
      }

      if ($GLOBALS['phpgw_info']['user']['apps']['folders']['enabled'] == true)
      {
        $mtree = createobject('folders.menutree', '');
        $var['switchlink'] = 
$mtree->get_switchlink($GLOBALS['HTTP_SESSION_VARS']['navbar']['mode']);
      }

      if ( $GLOBALS['HTTP_SESSION_VARS']['navbar']['mode'] == "folders")
      {
        if ($GLOBALS['phpgw_info']['user']['apps']['folders']['enabled'] == 
true)
        {
          $var['navbarview'] = $mtree->get_iframe();
        }
      }
      else
      {
        /* some stuff to parse the application bar */

        if ($GLOBALS['phpgw_info']['flags']['navbar_target'])
        {
          $target = ' target="' . 
$GLOBALS['phpgw_info']['flags']['navbar_target'] . '"';
        }

        $i = 1;
        $tpl->set_block('navbar_app_table','app_row','app_rows');
        foreach($GLOBALS['phpgw_info']['navbar'] as $app => $app_data)
        {
          if 
($GLOBALS['phpgw_info']['user']['preferences']['common']['navbar_format'] == 
'text')
          {
            $tabs[$i]['label'] = $app_data['title'];
            $tabs[$i]['link']  = $app_data['url'];
            if (ereg($GLOBALS['phpgw_info']['navbar'][$app],$PHP_SELF))
            {
                  $selected = $i;
            }
            ++$i;
          }
          else
          {
            $title = '<img src="' . $app_data['icon'] .
                        '" alt="' . $app_data['title'] .
                        '" title="' . $app_data['title'] .
                        '" border="0" />';
            if 
($GLOBALS['phpgw_info']['user']['preferences']['common']['navbar_format'] == 
'icons_and_text')
            {
              $title .= "<br />" . $app_data['title'];
              $var['width'] = '7%';
            }
            else
            {
                  $var['width']  = '3%';
            }

            $var['value'] = '<a href="' . $app_data['url'] . '"' . $target . 
'>' . $title . '</a>';
            $var['align'] = 'center';
            $tpl->set_var($var);
            $tpl->fp('appdiv','navbar_app');
            $tpl->fp('app_rows','app_row',true);
          }
       }

       if 
($GLOBALS['phpgw_info']['user']['preferences']['common']['navbar_format'] == 
'text')
       {
         $var['navbar_color'] = $GLOBALS['phpgw_info']['theme']['bg_color'];
         $var['align'] = 'right';
         $var['value'] = 
$GLOBALS['phpgw']->common->create_tabs($tabs,$selected,-1);
         $tpl->set_var($var);
         $tpl->parse('applications','navbar_app',True);
         $tpl->fp('app_rows','app_row',true);
       }
       $tpl->parse('navbarview','app_rows',false);
     }

     if ($GLOBALS['phpgw_info']['server']['showpoweredbyon'] == 'top')
     {
       $var['powered_by'] = lang('Powered by phpGroupWare version 
%1',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']);
     }
     if (isset($GLOBALS['phpgw_info']['navbar']['admin']) && 
$GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers'])
     {
       $var['current_users'] = '<a href="' .
                                
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uicurrentsessions.list_sessions')
 .
                               '">&nbsp;' .
                               lang('Current users') .
                               ': ' .
                               $GLOBALS['phpgw']->session->total() .
                               '</a>';
      }
      $now = time();
      $var['user_info'] = $GLOBALS['phpgw']->common->display_fullname() . ' - '
                          . 
lang($GLOBALS['phpgw']->common->show_date($now,'l')) . ' '
                          . 
$GLOBALS['phpgw']->common->show_date($now,$GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat']);
//                        . 
lang($GLOBALS['phpgw']->common->show_date($now,'F')) . ' '
//                        . $GLOBALS['phpgw']->common->show_date($now,'d, Y');
      // Maybe we should create a common function in the 
phpgw_accounts_shared.inc.php file
      // to get rid of duplicate code.
      if ($GLOBALS['phpgw_info']['user']['lastpasswd_change'] == 0)
      {
        $api_messages = lang('You are required to change your password during 
your first login')
                        . '<br> Click this image on the navbar: <img src="'
                        . 
$GLOBALS['phpgw']->common->image('preferences','navbar.gif').'">';
      }
      elseif ($GLOBALS['phpgw_info']['user']['lastpasswd_change'] < time() - 
(86400*30))
      {
        $api_messages = lang('it has been more then %1 days since you changed 
your password',30);
      }

      // This is gonna change
      if (isset($cd))
      {
        $var['messages'] = $api_messages . '<br>' . checkcode($cd);
      }

      if (isset($GLOBALS['phpgw_info']['flags']['app_header']))
      {
        $var['current_app_header'] = 
$GLOBALS['phpgw_info']['flags']['app_header'];
        $var['th_bg'] = $GLOBALS['phpgw_info']['theme']['th_bg'];
      }
      else
      {
        $tpl->set_block('navbar','app_header','app_header');
        $var['app_header'] = '';
      }

      $tpl->set_var($var);
      $tpl->pfp('out','navbar');
      // If the application has a header include, we now include it
      if (address@hidden'phpgw_info']['flags']['noappheader'] && 
@isset($_GET['menuaction']))
      {
        list($app,$class,$method) = explode('.',$_GET['menuaction']);
        if (is_array($GLOBALS[$class]->public_functions) && 
$GLOBALS[$class]->public_functions['header'])
        {
          $GLOBALS[$class]->header();
        }
      }
      $GLOBALS['phpgw']->hooks->process('after_navbar');
    }
    return;
   }

   function parse_navbar_end()
    {
    if( !$_REQUEST['popup'] )
     {
       if ($GLOBALS['phpgw_info']['server']['showpoweredbyon'] == 'bottom')
        {
         $tpl = createobject('phpgwapi.Template',PHPGW_TEMPLATE_DIR);
         $tpl->set_unknowns('remove');
         $tpl->set_file(array('footer' => 'footer.tpl'));
         $var = Array('table_bg_color'  => 
$GLOBALS['phpgw_info']['theme']['navbar_bg']);
         $var['powered_by'] = lang('Powered by phpGroupWare version 
%1',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']);
         if (isset($GLOBALS['phpgw_info']['navbar']['admin']) && 
$GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers'])
          {
           $var['current_users'] = '<a href="' . 
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uicurrentsessions.list_sessions')
                                               . '">&nbsp;'
                                               . lang('Current users')
                                               . ': '
                                               . 
$GLOBALS['phpgw']->session->total()
                                               . '</a>';
          }
          $now = time();
          $var['user_info'] = $GLOBALS['phpgw']->common->display_fullname() . ' 
- '
                              . 
lang($GLOBALS['phpgw']->common->show_date($now,'l')) . ' '
                              . 
$GLOBALS['phpgw']->common->show_date($now,$GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat']);
          $tpl->set_var($var);
          $GLOBALS['phpgw']->hooks->process('navbar_end');
          $tpl->pfp('out','footer');
        }
          }
        }
--- NEW FILE: navbar_app_tablecontent.tpl ---
<!-- BEGIN app_row -->
      <tr>
        <td class="modBg">
          {appdiv}
        </td>
      </tr>
<!-- END app_row -->

--- NEW FILE: navbar_app.tpl ---
{value}

--- NEW FILE: head.inc.php ---
<?php
  /**************************************************************************\
  * phpGroupWare                                                             *
  * http://www.phpgroupware.org                                              *
  * Copyright (C) 2003 probusiness AG                                        *
  * --------------------------------------------                             *
  *  This program is free software; you can redistribute it and/or modify it *
  *  under the terms of the GNU General Public License as published by the   *
  *  Free Software Foundation; either version 2 of the License, or (at your  *
  *  option) any later version.                                              *
  \**************************************************************************/

  /* $Id: head.inc.php,v 1.1.2.1 2003/10/23 02:08:39 cw Exp $ */

        $app_css = $java_script = '';
        if(@isset($_GET['menuaction']))
        {
                list($app,$class,$method) = explode('.',$_GET['menuaction']);
                if(is_array($GLOBALS[$class]->public_functions) && 
$GLOBALS[$class]->public_functions['java_script'])
                {
                        $java_script = $GLOBALS[$class]->java_script();
                }
        }
        if (isset($GLOBALS['phpgw_info']['flags']['java_script']))
        {
                $java_script .= $GLOBALS['phpgw_info']['flags']['java_script'];
        }

        $theme_css = $GLOBALS['phpgw_info']['server']['webserver_url'] . 
'/phpgwapi/templates/probusiness/css/'.$GLOBALS['phpgw_info']['user']['preferences']['common']['theme'].'.css';
        if (!file_exists($theme_css))
        {
                $theme_css = $GLOBALS['phpgw_info']['server']['webserver_url'] 
. '/phpgwapi/templates/probusiness/css/styles.css';
        }

        $tpl = CreateObject('phpgwapi.Template',PHPGW_TEMPLATE_DIR);
        $tpl->set_unknowns('remove');


        $tpl->set_file(array('head' => 'head.tpl'));

        $app = $GLOBALS['phpgw_info']['flags']['currentapp'];
        $app = $app ? ' ['.(isset($GLOBALS['phpgw_info']['apps'][$app]) ? 
$GLOBALS['phpgw_info']['apps'][$app]['title'] : lang($app)).']':'';

        $var = Array (
                                'img_icon'      => PHPGW_IMAGES_DIR . 
'/favicon.ico',
                                'img_shortcut'  => PHPGW_IMAGES_DIR . 
'/favicon.ico',
                                'charset'       => lang('charset'),
                                'font_family'   => 
$GLOBALS['phpgw_info']['theme']['font'],
                                'website_title' => 
$GLOBALS['phpgw_info']['server']['site_title'] . $app,
                                'theme_css'     => $theme_css,
                                'css'                   => 
$GLOBALS['phpgw']->common->get_css(),
                                'java_script'   => $java_script,
                                'api_root'      => 
$GLOBALS['phpgw_info']['server']['webserver_url'] . 
'/phpgwapi/templates/probusiness/'
                                );

        $tpl->set_var($var);
        $tpl->pfp('out','head');
        unset($tpl);
?>

--- NEW FILE: head.tpl ---
<!-- BEGIN head -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset={charset}">
<META name="AUTHOR" content="phpGroupWare http://www.phpgroupware.org";>
<META NAME="description" CONTENT="phpGroupWare">
<META NAME="keywords" CONTENT="phpGroupWare">
<meta name="robots" content="none">
<LINK REL="ICON" href="{img_icon}" type="image/x-ico">
<LINK REL="SHORTCUT ICON" href="{img_shortcut}">
<script src="{closePopup}" type="text/javascript"></script>
<script src="{api_root}js/tabs.js" type="text/javascript"></script>
<LINK href="{theme_css}" type="text/css" rel="StyleSheet">
<TITLE>{website_title}</TITLE>
{java_script}
</HEAD>
<BODY>
<!-- END Head -->

--- NEW FILE: nextmatchs.tpl ---
<!-- BEGIN nextmatchs -->
  <table cellspacing="1" cellpadding="1" cols="5">
    <tr>   
     {left}
      <td align="center"" valign="top" 
width="92%">{cats_search_filter_data}</td>   
     {right}
    </tr>
  </table>
<br>
<!-- END nextmatchs -->


<!-- BEGIN filter -->
  <td>
   {select}
    <noscript>
      <input type="submit" value="{lang_filter}">
    </noscript>
  </td>
<!-- END filter -->


<!-- BEGIN form -->
<form method="POST" action="{action}" name="{form_name}">
  <td width="2%" align="{align}" valign="top">
   {hidden}
    <table border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td align="{align}">
          <input type="image" src="{img}" border="{border}" alt="{label}" 
width="12" height="12" name="start" value="{start}">
        </td>
      </tr>
    </table>
  </td>
</form>
<!-- END form -->


<!-- BEGIN icon -->
<td width="2%" align="{align}">&nbsp;{_link}</td>
<!-- END icon -->


<!-- BEGIN link -->
<td width="2%" align="{align}" valign="top">
        <table border="0" cellspacing="0" cellpadding="0">
        <tr>
                <td align="{align}">
                        <img src="{img}" border="{border}" alt="{label}">
                </td>
        </tr>
        </table>
</td>
<!-- END link -->


<!-- BEGIN search -->
        <input type="text" name="query" 
value="{query_value}">&nbsp;{searchby}<input type="submit" name="Search" 
value="{lang_search}">
<!-- END search -->

<!-- BEGIN cats -->
       <td>
        {lang_category}&nbsp;&nbsp;<select name="{cat_field}" 
onChange="this.form.submit();">
         <option value="0">{lang_all}</option>
         {categories}
        </select>
        <noscript><input type="submit" name="cats" 
value="{lang_select}"></noscript>
       </td>
<!-- END cats -->

<!-- BEGIN search_filter -->
    <table border="0" cellspacing="0" cellpadding="0">
     <form method="POST" action="{form_action}" name="filter">
      <input type="hidden" name="filter" value="{filter_value}">
      <input type="hidden" name="qfield" value="{qfield_value}">
      <input type="hidden" name="start" value="{start_value}">
      <input type="hidden" name="order" value="{order_value}">
      <input type="hidden" name="sort" value="{sort_value}">
      <input type="hidden" name="query" value="{query_value}">
      <tr>
                <td>{search}</td>
                <td>&nbsp;</td>
                {filter}
      </tr>
     </form>
    </table>
<!-- END search_filter -->

<!-- BEGIN cats_search_filter -->
    <table border="0" cellspacing="0" cellpadding="0">
     <form method="POST" action="{form_action}" name="filter">
      <input type="hidden" name="filter" value="{filter_value}">
      <input type="hidden" name="qfield" value="{qfield_value}">
      <input type="hidden" name="start" value="0">
      <input type="hidden" name="order" value="{order_value}">
      <input type="hidden" name="sort" value="{sort_value}">
      <input type="hidden" name="query" value="{query_value}">
      <tr>
                {cats}
                <td>&nbsp;</td>
                <td>{search}</td>
                <td>&nbsp;&nbsp;</td>
                {filter}
      </tr>
     </form>
    </table>
<!-- END cats_search_filter -->





reply via email to

[Prev in Thread] Current Thread [Next in Thread]