phpgw->egw

This commit is contained in:
Miles Lott 2005-11-25 00:20:34 +00:00
parent 98bb88f545
commit bcb682ed9d
3 changed files with 125 additions and 127 deletions

View File

@ -4,7 +4,7 @@
* Written by Ralf Becker <RalfBecker@outdoor-training.de> * * Written by Ralf Becker <RalfBecker@outdoor-training.de> *
* Class for creating select boxes for addresse, projects, array items, ... * * Class for creating select boxes for addresse, projects, array items, ... *
* Copyright (C) 2000, 2001 Dan Kuykendall * * Copyright (C) 2000, 2001 Dan Kuykendall *
* -------------------------------------------------------------------------* * ------------------------------------------------------------------------ *
* This library is part of the eGroupWare API * * This library is part of the eGroupWare API *
* http://www.egroupware.org/api * * http://www.egroupware.org/api *
* ------------------------------------------------------------------------ * * ------------------------------------------------------------------------ *
@ -23,10 +23,10 @@
/* $Id$ */ /* $Id$ */
if(!isset($GLOBALS['phpgw_info']['flags']['included_classes']['sbox'])) if(!isset($GLOBALS['egw_info']['flags']['included_classes']['sbox']))
{ {
include(PHPGW_API_INC . '/class.sbox.inc.php'); include(EGW_API_INC . '/class.sbox.inc.php');
$GLOBALS['phpgw_info']['flags']['included_classes']['sbox'] = True; $GLOBALS['egw_info']['flags']['included_classes']['sbox'] = True;
} }
class sbox2 extends sbox class sbox2 extends sbox
@ -102,7 +102,7 @@
} }
while (list($id,$text) = each($content)) while (list($id,$text) = each($content))
{ {
$ret[$name] .= "<option value=\"$id\">" . $GLOBALS['phpgw']->strip_html($text) . "\n"; $ret[$name] .= "<option value=\"$id\">" . $GLOBALS['egw']->strip_html($text) . "\n";
} }
$ret[$name] .= '<option value="0">'.lang('none')."\n"; $ret[$name] .= '<option value="0">'.lang('none')."\n";
$ret[$name] .= '</select>'; $ret[$name] .= '</select>';
@ -143,11 +143,11 @@
{ {
return 'not an event !!!'; return 'not an event !!!';
} }
$name = $GLOBALS['phpgw']->common->show_date($this->bocal->maketime($event['start']) - $this->bocal->datetime->tz_offset); $name = $GLOBALS['egw']->common->show_date($this->bocal->maketime($event['start']) - $this->bocal->datetime->tz_offset);
$name .= ' -- ' . $GLOBALS['phpgw']->common->show_date($this->bocal->maketime($event['end']) - $this->bocal->datetime->tz_offset); $name .= ' -- ' . $GLOBALS['egw']->common->show_date($this->bocal->maketime($event['end']) - $this->bocal->datetime->tz_offset);
$name .= ': ' . $event['title']; $name .= ': ' . $event['title'];
return $GLOBALS['phpgw']->strip_html($name); return $GLOBALS['egw']->strip_html($name);
} }
/* /*
@ -167,7 +167,7 @@
// echo "<p>getEvent('$name',$id_name,'$query_name','$title')</p>"; // echo "<p>getEvent('$name',$id_name,'$query_name','$title')</p>";
// fallback if calendar is not installed or not enabled for user // fallback if calendar is not installed or not enabled for user
if (!file_exists(PHPGW_SERVER_ROOT.'/calendar') || !$GLOBALS['phpgw_info']['user']['apps']['calendar']['enabled']) if (!file_exists(EGW_SERVER_ROOT.'/calendar') || !$GLOBALS['egw_info']['user']['apps']['calendar']['enabled'])
{ {
return array( return array(
$name => "<input type=\"hidden\" name=\"id_$name\" value=\"$id_name\">\n", $name => "<input type=\"hidden\" name=\"id_$name\" value=\"$id_name\">\n",
@ -224,7 +224,7 @@
{ {
$name = $addr['org_name'].': '.$name; $name = $addr['org_name'].': '.$name;
} }
return $GLOBALS['phpgw']->strip_html($name); return $GLOBALS['egw']->strip_html($name);
} }
/* /*
@ -357,7 +357,7 @@
// echo "<p>getProject('$name',$id_name,'$query_name','$title')</p>"; // echo "<p>getProject('$name',$id_name,'$query_name','$title')</p>";
// fallback if projects is not installed or not enabled for user // fallback if projects is not installed or not enabled for user
if (!file_exists(PHPGW_SERVER_ROOT.'/projects') || !$GLOBALS['phpgw_info']['user']['apps']['projects']['enabled']) if (!file_exists(EGW_SERVER_ROOT.'/projects') || !$GLOBALS['egw_info']['user']['apps']['projects']['enabled'])
{ {
return array( return array(
$name => "<input type=\"hidden\" name=\"id_$name\" value=\"$id_name\">\n", $name => "<input type=\"hidden\" name=\"id_$name\" value=\"$id_name\">\n",
@ -500,7 +500,7 @@
if (!is_array($account_data)) if (!is_array($account_data))
{ {
$accounts = createobject('phpgwapi.accounts',$id); $accounts = createobject('phpgwapi.accounts',$id);
$accounts->db = $GLOBALS['phpgw']->db; $accounts->db = $GLOBALS['egw']->db;
$accounts->read_repository(); $accounts->read_repository();
$account_data = $accounts->data; $account_data = $accounts->data;
} }
@ -523,7 +523,7 @@
*/ */
function getAccount($name,$id,$longnames=-1,$type='accounts',$multiple=0,$options='') function getAccount($name,$id,$longnames=-1,$type='accounts',$multiple=0,$options='')
{ {
$accs = $GLOBALS['phpgw']->accounts->get_list($type); $accs = $GLOBALS['egw']->accounts->get_list($type);
if ($multiple < 0) if ($multiple < 0)
{ {
@ -532,7 +532,7 @@
while ($a = current($accs)) while ($a = current($accs))
{ {
$aarr[$a['account_id']] = $longnames == -1 ? $aarr[$a['account_id']] = $longnames == -1 ?
$GLOBALS['phpgw']->common->display_fullname($a['account_lid'],$a['account_firstname'],$a['account_lastname']) : $GLOBALS['egw']->common->display_fullname($a['account_lid'],$a['account_firstname'],$a['account_lastname']) :
$this->accountInfo($a['account_id'],$a,$longnames,$type=='both'); $this->accountInfo($a['account_id'],$a,$longnames,$type=='both');
next($accs); next($accs);
@ -556,7 +556,7 @@
$month = date('m',$date); $month = date('m',$date);
$year = date('Y',$date); $year = date('Y',$date);
} }
return $GLOBALS['phpgw']->common->dateformatorder( return $GLOBALS['egw']->common->dateformatorder(
$this->getYears($n_year,$year), $this->getYears($n_year,$year),
$this->getMonthText($n_month,$month), $this->getMonthText($n_month,$month),
$this->getDays($n_day,$day) $this->getDays($n_day,$day)

View File

@ -3,7 +3,7 @@
* eGroupWare API - Validator * * eGroupWare API - Validator *
* This file written by Dave Hall <skwashd@phpgroupware.org> * * This file written by Dave Hall <skwashd@phpgroupware.org> *
* Copyright (C) 2003 Free Software Foundation * * Copyright (C) 2003 Free Software Foundation *
* -------------------------------------------------------------------------* * ------------------------------------------------------------------------ *
* This library is part of the eGroupWare API * * This library is part of the eGroupWare API *
* http://www.egroupware.org/api * * http://www.egroupware.org/api *
* ------------------------------------------------------------------------ * * ------------------------------------------------------------------------ *
@ -127,7 +127,7 @@
$uris = array( $uris = array(
'ftp' => True, 'ftp' => True,
'https' => True, 'https' => True,
'http' => True, 'http' => True
); );
$url_elements = parse_url($url); $url_elements = parse_url($url);
@ -160,7 +160,6 @@
//echo ' is invalid<br>'; //echo ' is invalid<br>';
return $false; return $false;
} }
} }
//the url may be valid, but this method can't test all types //the url may be valid, but this method can't test all types
@ -227,7 +226,6 @@
{ {
return false; return false;
} }
} }
function is_ipaddress($ip='') function is_ipaddress($ip='')
@ -296,11 +294,11 @@
echo '<a href="http://sourceforge.net/projects/egroupwaregroup">'; echo '<a href="http://sourceforge.net/projects/egroupwaregroup">';
echo 'our project page at sourceforge.net</a>. Please copy and paste '; echo 'our project page at sourceforge.net</a>. Please copy and paste ';
echo 'the following information into the bug report:<br>'; echo 'the following information into the bug report:<br>';
echo '<b>Summary<b>: ' . $GLOBALS['phpgw_info']['flags']['currentapp']; echo '<b>Summary<b>: ' . $GLOBALS['egw_info']['flags']['currentapp'];
echo 'calls class.validator.inc.php'; echo 'calls class.validator.inc.php';
echo 'Information:<br> The call was found when calling: ' . $_SERVER['QUERY_STRING']; echo 'Information:<br> The call was found when calling: ' . $_SERVER['QUERY_STRING'];
echo '<br><br>This application will now halt!<br><br>'; echo '<br><br>This application will now halt!<br><br>';
echo '<a href="'. $GLOBALS['phpgw']->link('/home.php') .'">Return to Home Screen</a>'; echo '<a href="'. $GLOBALS['egw']->link('/home.php') .'">Return to Home Screen</a>';
exit; exit;
} }
} }

View File

@ -13,7 +13,7 @@
/* $Id$ */ /* $Id$ */
$GLOBALS['phpgw_info']['flags'] = Array( $GLOBALS['egw_info']['flags'] = Array(
'currentapp' => 'home', // can't be phpgwapi, nor htmlarea (no own directory) 'currentapp' => 'home', // can't be phpgwapi, nor htmlarea (no own directory)
'noheader' => True, 'noheader' => True,
'nonavbar' => True, 'nonavbar' => True,
@ -24,8 +24,8 @@ $GLOBALS['phpgw_info']['flags'] = Array(
); );
include('../../header.inc.php'); include('../../header.inc.php');
header('Content-type: text/javascript; charset='.$GLOBALS['phpgw']->translation->charset()); header('Content-type: text/javascript; charset='.$GLOBALS['egw']->translation->charset());
$GLOBALS['phpgw']->translation->add_app('htmlarea'); $GLOBALS['egw']->translation->add_app('htmlarea');
// I18N constants // I18N constants
@ -45,7 +45,7 @@ HTMLArea.I18N = {
// the following should be the filename without .js extension // the following should be the filename without .js extension
// it will be used for automatically load plugin language. // it will be used for automatically load plugin language.
lang: "<?php echo $GLOBALS['phpgw_info']['user']['preferences']['common']['lang']; ?>", lang: "<?php echo $GLOBALS['egw_info']['user']['preferences']['common']['lang']; ?>",
tooltips: { tooltips: {
bold: "<?php echo lang('Bold'); ?>", bold: "<?php echo lang('Bold'); ?>",