ea-Geiercode
[ class tree: ea-Geier ] [ index: ea-Geier ] [ all elements ]

Source for file main.inc.php

Documentation is available at main.inc.php

  1. <?php 
  2. /**
  3.  * php functions for main screen
  4.  *
  5.  * LICENSE:
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the
  13.  * GNU General Public License for more details.
  14.  * You should have received a copy of the GNU General Public License along
  15.  * with this program; if not, write to the Free Software Foundation, Inc.,
  16.  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  17.  *
  18.  * @package       ea-Geier
  19.  * @subpackage code
  20.  * @author       m2mtech <tech@m2m.at>
  21.  * @copyright  2007 m2m server software gmbh
  22.  * @license       http://www.gnu.org/licenses/gpl.html GNU General Public License Version 2
  23.  * @version       $Id: main.inc.php 148 2007-09-07 16:02:29Z m2mtech $
  24.  * @link       http://www.ea-geier.at/
  25.  */
  26.  
  27. /**
  28.  * html functions for main screen
  29.  */
  30. require_once('code/main.html.php');
  31.  
  32. /**
  33.  * generate data for html output of travel expenses
  34.  *
  35.  * @param    eaDB    database
  36.  * @param    eaInput input data
  37.  */
  38. function genOptMain(&$db&$in{
  39.     $conf =$db->conf;
  40.     $user =$db->user;
  41.  
  42.     if (!isset($in->options)) return false;
  43.     $opt =$in->options;
  44.     if (!isset($opt['clients'])) return false;
  45.  
  46.     $oldPrefix $db->_prefix;
  47.     $oldDebug $db->_db->debug;
  48.     foreach ($opt['clients'as $id => $name{
  49.         require_once('code/cashbook.db.php');
  50.         if (!$opt[$id]['cashbook'dbCountCashBookItems($db$id))
  51.             $opt[$id]['cashbook']['count'0;        
  52.         require_once('code/assets.db.php');
  53.         if (!$opt[$id]['assets'dbCountAssetsItems($db$id))
  54.             $opt[$id]['assets']['count'0;        
  55.         require_once('code/purchasebook.db.php');
  56.         if (!$opt[$id]['purchasebook'dbCountPurchaseBookItems($db$id))
  57.             $opt[$id]['purchasebook']['count'0;        
  58.         require_once('code/travel.db.php');
  59.         if (!$opt[$id]['travel'dbCountTravelItems($db$id))
  60.             $opt[$id]['travel']['count'0;        
  61.         $db->_prefix $oldPrefix;
  62.         $db->_db ADONewConnection($conf['dsn']);        
  63.         $db->_db->SetFetchMode(ADODB_FETCH_ASSOC);
  64.         $db->_db->debug $oldDebug;
  65.         dbChangeToClientDB($dbfalsefalsetrue);
  66.     }
  67.  
  68.     return true;    
  69. }
  70.  
  71. ?>

Documentation generated on Sun, 09 Sep 2007 17:09:09 +0200 by phpDocumentor 1.3.1