Updating to ralf's latest version

This commit is contained in:
Miles Lott 2002-02-24 21:21:53 +00:00
parent 1cd5737c51
commit 038cc6d0e2

View File

@ -23,7 +23,11 @@
/* $Id$ */ /* $Id$ */
if(!isset($GLOBALS['phpgw_info']['flags']['included_classes']['sbox']))
{
include(PHPGW_API_INC . '/class.sbox.inc.php'); include(PHPGW_API_INC . '/class.sbox.inc.php');
$GLOBALS['phpgw_info']['flags']['included_classes']['sbox'] = True;
}
class sbox2 extends sbox class sbox2 extends sbox
{ {
@ -73,9 +77,11 @@
"</noscript>"; "</noscript>";
if (is_array($content)) if (is_array($content))
{ // result from search {
// result from search
if (!count($content)) if (!count($content))
{ // search was unsuccsessful {
// search was unsuccsessful
$ret[$name] = lang('no entries found, try again ...'); $ret[$name] = lang('no entries found, try again ...');
} }
else else
@ -111,7 +117,7 @@
$ret[$name.'_nojs'] = $ret[$name.'_nojs'] =
"<noscript>\n". "<noscript>\n".
" <input name=\"query_$name\" value=\"\" size=10> &nbsp; <input type=\"submit\" value=\"?\">\n". " <input name=\"query_$name\" value=\"\" size=10> &nbsp;<input type=\"submit\" value=\"?\">\n".
"</noscript>"; "</noscript>";
// print_r($ret); // print_r($ret);
@ -151,7 +157,6 @@
* *
* Note As query's for an address are submitted, you have to check $query_XXX if it is a search or a regular submit (!$query_string) * Note As query's for an address are submitted, you have to check $query_XXX if it is a search or a regular submit (!$query_string)
*/ */
function getAddress( $name,$id_name,$query_name,$title='',$multiple=False) function getAddress( $name,$id_name,$query_name,$title='',$multiple=False)
{ {
// echo "<p>getAddress('$name',$id_name,'$query_name','$title')</p>"; // echo "<p>getAddress('$name',$id_name,'$query_name','$title')</p>";
@ -270,10 +275,14 @@
// echo "<p>getProject('$name',$id_name,'$query_name','$title')</p>"; // echo "<p>getProject('$name',$id_name,'$query_name','$title')</p>";
if ($id_name || $query_name) if ($id_name || $query_name)
{ {
$projects = createobject('projects.projects'); $projects = createobject('projects.boprojects');
if (!is_object($projects))
{
return '';
}
if ($query_name) if ($query_name)
{ {
$projs = $projects->read_projects( 0,0,$query_name,'','','','',0 ); $projs = $projects->list_projects( 0,0,$query_name,'','','','',0,'mains','' );
$content = array(); $content = array();
while ($projs && list( $key,$proj ) = each( $projs )) while ($projs && list( $key,$proj ) = each( $projs ))
{ {
@ -301,33 +310,96 @@
/* /*
* Function: Allows to show and select one item from an array * Function: Allows to show and select one item from an array
* Parameters: $name string with name of the submitted var which holds the key of the selected item form array * Parameters: $name string with name of the submitted var which holds the key of the selected item form array
* $key key of already selected item from $arr * $key key(s) of already selected item(s) from $arr, eg. '1' or '1,2' or array with keys
* $arr array with items to select, eg. $arr = array ( 'y' => 'yes','n' => 'no','m' => 'maybe'); * $arr array with items to select, eg. $arr = array ( 'y' => 'yes','n' => 'no','m' => 'maybe');
* $no_lang if !$no_lang send items through lang() * $no_lang if !$no_lang send items through lang()
* $options additional options (e.g. 'multiple')
* On submit $XXX is the key of the selected item (XXX is the content of $name) * On submit $XXX is the key of the selected item (XXX is the content of $name)
* Returns: string to set for a template or to echo into html page * Returns: string to set for a template or to echo into html page
*/ */
function getArrayItem($name, $key, $arr=0,$no_lang=0) function getArrayItem($name, $key, $arr=0,$no_lang=0,$options='',$multiple=0)
{ // should be in class common.sbox {
// should be in class common.sbox
if (!is_array($arr)) if (!is_array($arr))
{ {
$arr = array('no','yes'); $arr = array('no','yes');
} }
if (0+$multiple > 0)
{
$options .= ' MULTIPLE SIZE='.(0+$multiple);
if (substr($name,-2) != '[]')
{
$name .= '[]';
}
}
$out = "<select name=\"$name\" $options>\n";
$out = "<select name=\"$name\">\n"; if (is_array($key))
{
$key = implode(',',$key);
}
while (list($k,$text) = each($arr)) while (list($k,$text) = each($arr))
{ {
$out .= '<option value="'.$k.'"'; $out .= '<option value="'.$k.'"';
if($k == $key) $out .= " SELECTED"; if($k == $key || strstr(",$key,",",$k,"))
$out .= ">" . ($no_lang ? $text : lang($text)) . "</option>\n"; {
$out .= " SELECTED";
}
$out .= ">" . ($no_lang || $text == '' ? $text : lang($text)) . "</option>\n";
} }
$out .= "</select>\n"; $out .= "</select>\n";
return $out; return $out;
} }
function accountInfo($id,$account_data=0,$longname=0) function getPercentage($name, $selected=0,$options='')
{
// reimplemented using getArrayItem
for ($i=0; $i <= 100; $i+=10)
{
$arr[$i] = "$i%";
}
return $this->getArrayItem($name,$selected,$arr,1,$options);
}
function getPriority($name, $selected=2,$options='')
{
// reimplemented using getArrayItem
$arr = array('','low','normal','high');
return $this->getArrayItem($name,$selected,$arr,0,$options);
}
function getAccessList($name,$selected='private',$options='')
{
// reimplemented using getArrayItem
$arr = array(
'private' => 'Private',
'public' => 'Global public',
'group' => 'Group public'
);
if (strstr($selected,','))
{
$selected = "group";
}
return $this->getArrayItem($name,$selected,$arr,0,$options);
}
function getCountry($name='country',$selected=' ',$options='')
{
// reimplemented using getArrayItem
return $this->getArrayItem($name,$selected,$this->country_array,0,$options);
}
function form_select($name='country',$selected=' ',$options='')
{
// reimplemented using getArrayItem (stupid name!!!)
return getCountry($name,$selected,$options);
}
function accountInfo($id,$account_data=0,$longnames=0,$show_type=0)
{ {
if (!$id) if (!$id)
{ {
@ -341,39 +413,48 @@
$accounts->read_repository(); $accounts->read_repository();
$account_data = $accounts->data; $account_data = $accounts->data;
} }
if ($longnames) $info = $show_type ? '('.$account_data['account_type'].') ' : '';
{
return $account_data['firstname'].' '.$account_data['lastname'];
}
return $account_data['account_lid']; switch ($longnames)
{
case 2: $info .= '&lt;'.$account_data['account_lid'].'&gt; '; // fall-through
case 1: $info .= $account_data['account_firstname'].' '.$account_data['account_lastname']; break;
default: $info .= $account_data['account_lid']; break;
}
return $info;
} }
/* /*
* Function: Allows to select one accountname * Function: Allows to select one accountname
* Parameters: $name string with name of the submitted var, which holds the account_id or 0 after submit * Parameters: $name string with name of the submitted var, which holds the account_id or 0 after submit
* $id account_id of already selected account * $id account_id of already selected account
* $id2text($id,$acct_data) fkt that translates account_id $id in text to show * $longnames 0=account_lid 1=firstname lastname
*/ */
function getAccount($name,$id,$longnames=0,$type='accounts',$multiple=0,$options='')
function getAccount($name,$id,$longnames=0)
{ {
$accounts = createobject('phpgwapi.accounts'); $accounts = createobject('phpgwapi.accounts');
$accounts->db = $GLOBALS['phpgw']->db; $accounts->db = $GLOBALS['phpgw']->db;
$accs = $accounts->get_list('accounts'); $accs = $accounts->get_list($type);
$aarr = Array(lang('not assigned')); if ($multiple < 0)
{
$aarr[] = lang('not assigned');
}
while ($a = current($accs)) while ($a = current($accs))
{ {
$aarr[$a['account_id']] = $this->accountInfo($a['account_id'],$a,$longnames); $aarr[$a['account_id']] = $this->accountInfo($a['account_id'],$a,$longnames,$type=='both');
next($accs); next($accs);
} }
return $this->getArrayItem($name,$id,$aarr,1); return $this->getArrayItem($name,$id,$aarr,1,$options,$multiple);
} }
function getDate($n_year,$n_month,$n_day,$date) function getDate($n_year,$n_month,$n_day,$date,$options='')
{ {
if (!$date) if (is_array($date))
{
list($year,$month,$day) = $date;
}
elseif (!$date)
{ {
$day = $month = $year = 0; $day = $month = $year = 0;
} }
@ -383,10 +464,48 @@
$month = date('m',$date); $month = date('m',$date);
$year = date('Y',$date); $year = date('Y',$date);
} }
return $GLOBALS['phpgw']->common->dateformatorder($this->getYears($n_year,$year), return $GLOBALS['phpgw']->common->dateformatorder(
$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)
} );
} }
?> function getCategory($name,$cat_id='',$notall=False,$jscript=True,$multiple=0,$options='')
{
if (!is_object($this->cat))
{
$this->cat = CreateObject('phpgwapi.categories');
}
if ($jscript)
{
$options .= ' onChange="this.form.submit();"';
}
if (0+$multiple > 0)
{
$options .= ' MULTIPLE SIZE='.(0+$multiple);
if (substr($name,-2) != '[]')
{
$name .= '[]';
}
}
/* Setup all and none first */
$cats_link = "\n<SELECT NAME=\"$name\" $options>\n";
if (!$notall)
{
$cats_link .= '<option value=""';
if ($cat_id=='all')
{
$cats_link .= ' selected';
}
$cats_link .= '>'.lang("all")."</option>\n";
}
/* Get global and app-specific category listings */
$cats_link .= $this->cat->formated_list('select','all',$cat_id,True);
$cats_link .= '</select>'."\n";
return $cats_link;
}
}