egroupware/resources/inc/class.ui_resources.inc.php

533 lines
17 KiB
PHP
Raw Normal View History

2005-02-03 17:42:20 +01:00
<?php
/**
2005-11-11 00:35:55 +01:00
* eGroupWare - resources
*
2005-11-11 00:35:55 +01:00
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package resources
2005-11-11 00:35:55 +01:00
* @link http://www.egroupware.org
* @author Cornelius Weiss <egw@von-und-zu-weiss.de>
* @author Lukas Weiss <wnz_gh05t@users.sourceforge.net>
2005-11-11 00:35:55 +01:00
* @version $Id$
*/
/**
* General userinterface object for resources
*
* @package resources
*/
2005-02-03 17:42:20 +01:00
class ui_resources
{
var $public_functions = array(
'index' => True,
'edit' => True,
2005-03-01 11:20:03 +01:00
'show' => True,
2005-06-11 16:58:07 +02:00
'select' => True,
2005-02-03 17:42:20 +01:00
'writeLangFile' => True
);
/**
* constructor of class ui_resources
*
*/
2005-02-03 17:42:20 +01:00
function ui_resources()
{
// print_r($GLOBALS['egw_info']); die();
$this->tmpl = new etemplate('resources.show');
$this->bo =& CreateObject('resources.bo_resources');
// $this->calui = CreateObject('resources.ui_calviews');
2008-04-20 21:37:12 +02:00
2005-02-03 17:42:20 +01:00
}
/**
* main resources list.
*
* Cornelius Weiss <egw@von-und-zu-weiss.de>
* @param array $content content from eTemplate callback
2008-04-20 21:37:12 +02:00
*
* FIXME don't translate cats in nextmach
*/
2005-02-03 17:42:20 +01:00
function index($content='')
{
if (is_array($content))
{
2005-03-02 09:35:10 +01:00
$sessiondata = $content['nm'];
2005-10-09 12:13:10 +02:00
unset($sessiondata['rows']);
$GLOBALS['egw']->session->appsession('session_data','resources_index_nm',$sessiondata);
2008-04-20 21:37:12 +02:00
if (isset($content['back']))
{
unset($sessiondata['view_accs_of']);
$GLOBALS['egw']->session->appsession('session_data','resources_index_nm',$sessiondata);
return $this->index();
}
if (isset($content['btn_delete_selected']))
2005-10-09 12:13:10 +02:00
{
foreach($content['nm']['rows'] as $row)
{
2005-10-09 12:13:10 +02:00
if($res_id = $row['checkbox'][0])
{
$msg .= '<p>'. $this->bo->delete($res_id). '</p><br>';
}
}
return $this->index($msg);
}
2008-04-20 21:37:12 +02:00
2005-10-09 12:13:10 +02:00
foreach($content['nm']['rows'] as $row)
2005-02-03 17:42:20 +01:00
{
2005-10-09 12:13:10 +02:00
if(isset($row['delete']))
{
$res_id = array_search('pressed',$row['delete']);
return $this->index($this->bo->delete($res_id));
}
if(isset($row['view_acc']))
2005-02-03 17:42:20 +01:00
{
2005-10-09 12:13:10 +02:00
$sessiondata['view_accs_of'] = array_search('pressed',$row['view_acc']);
$GLOBALS['egw']->session->appsession('session_data','resources_index_nm',$sessiondata);
return $this->index();
2005-02-03 17:42:20 +01:00
}
}
2005-03-02 09:35:10 +01:00
}
$msg = $content;
$content = array();
$content['msg'] = $msg;
2008-04-20 21:37:12 +02:00
2005-06-11 18:00:26 +02:00
$content['nm']['header_left'] = 'resources.resource_select.header';
2005-02-03 17:42:20 +01:00
$content['nm']['get_rows'] = 'resources.bo_resources.get_rows';
$content['nm']['no_filter'] = False;
2007-02-25 20:42:15 +01:00
$content['nm']['filter_label'] = lang('Category');
2005-02-21 16:56:21 +01:00
$content['nm']['filter_help'] = lang('Select a category'); // is this used???
$content['nm']['no_filter2'] = true;
$content['nm']['filter_no_lang'] = true;
$content['nm']['no_cat'] = true;
$content['nm']['bottom_too'] = true;
$content['nm']['order'] = 'name';
$content['nm']['sort'] = 'ASC';
2008-04-20 21:37:12 +02:00
2005-06-13 17:14:46 +02:00
$nm_session_data = $GLOBALS['egw']->session->appsession('session_data','resources_index_nm');
if($nm_session_data)
{
$content['nm'] = $nm_session_data;
}
$content['nm']['options-filter']= array(''=>lang('all categories'))+(array)$this->bo->acl->get_cats(EGW_ACL_READ);
2008-04-20 21:37:12 +02:00
2005-02-03 17:42:20 +01:00
// check if user is permitted to add resources
if(!$this->bo->acl->get_cats(EGW_ACL_ADD))
2005-02-03 17:42:20 +01:00
{
$no_button['add'] = true;
}
2005-02-28 16:19:31 +01:00
$no_button['back'] = true;
2005-03-02 09:35:10 +01:00
$no_button['add_sub'] = true;
$GLOBALS['egw_info']['flags']['app_header'] = lang('resources');
2008-04-20 21:37:12 +02:00
$GLOBALS['egw_info']['flags']['java_script'] .= "<script LANGUAGE=\"JavaScript\">
function js_btn_book_selected(form)
{
resources = '';
2008-04-20 21:37:12 +02:00
2005-10-18 23:20:33 +02:00
el = form.getElementsByTagName(\"input\");
for (var i = 0; i < el.length; i++)
{
2005-10-18 23:20:33 +02:00
if(el[i].name.substr(el[i].name.length-12,el[i].name.length) == '[checkbox][]' && el[i].checked)
{
if(resources.length > 0)
{
resources += ',';
}
2005-10-18 23:20:33 +02:00
resources += 'r' + el[i].value;
}
}
if(resources.length == 0)
{
alert('". lang('No resources selected'). "');
return false;
}
return resources;
}
</script>";
2005-06-12 16:36:15 +02:00
2005-03-02 09:35:10 +01:00
if($content['nm']['view_accs_of'])
2005-02-28 16:19:31 +01:00
{
$master = $this->bo->so->read(array('res_id' => $content['nm']['view_accs_of']));
2005-03-02 09:35:10 +01:00
$content['view_accs_of'] = $content['nm']['view_accs_of'];
2005-02-28 16:19:31 +01:00
$content['nm']['get_rows'] = 'resources.bo_resources.get_rows';
$content['nm']['no_filter'] = true;
$content['nm']['no_filter2'] = true;
$no_button['back'] = false;
2005-03-02 09:35:10 +01:00
$no_button['add'] = true;
$no_button['add_sub'] = false;
$GLOBALS['egw_info']['flags']['app_header'] = lang('resources') . ' - ' . lang('accessories of '). ' '. $master['name'] .
2005-03-02 09:35:10 +01:00
($master['short_description'] ? ' [' . $master['short_description'] . ']' : '');
2005-02-28 16:19:31 +01:00
}
2005-03-01 11:20:03 +01:00
$preserv = $content;
$GLOBALS['egw']->session->appsession('session_data','resources_index_nm',$content['nm']);
2005-03-01 11:58:04 +01:00
$this->tmpl->read('resources.show');
return $this->tmpl->exec('resources.ui_resources.index',$content,$sel_options,$no_button,$preserv);
2005-02-03 17:42:20 +01:00
}
/**
* @author Cornelius Weiss <egw@von-und-zu-weiss.de>
* invokes add or edit dialog for resources
*
* @param $content Content from the eTemplate Exec call or id on inital call
*/
2005-03-02 09:35:10 +01:00
function edit($content=0,$accessory_of = -1)
2008-04-20 21:37:12 +02:00
{
2005-02-03 17:42:20 +01:00
if (is_array($content))
{
2005-02-24 19:24:26 +01:00
if(isset($content['save']) || isset($content['delete']))
2005-02-03 17:42:20 +01:00
{
2005-02-24 19:24:26 +01:00
if(isset($content['save']))
2005-02-12 09:25:26 +01:00
{
2005-02-24 19:24:26 +01:00
unset($content['save']);
2005-06-11 21:54:04 +02:00
// if($content['id'] != 0)
// {
// // links are already saved by eTemplate
// unset($resource['link_to']['to_id']);
// }
2005-02-24 19:24:26 +01:00
$content['msg'] = $this->bo->save($content);
2005-02-12 09:25:26 +01:00
}
2005-02-24 19:24:26 +01:00
if(isset($content['delete']))
2005-02-03 17:42:20 +01:00
{
2005-02-24 19:24:26 +01:00
unset($content['delete']);
$content['msg'] = $this->bo->delete($content['res_id']);
2005-02-03 17:42:20 +01:00
}
2008-04-20 21:37:12 +02:00
2005-03-02 09:35:10 +01:00
if($content['msg'])
{
return $this->edit($content);
}
$js = "opener.location.href='".$GLOBALS['egw']->link('/index.php',
2005-03-02 09:35:10 +01:00
array('menuaction' => 'resources.ui_resources.index'))."';";
$js .= 'window.close();';
echo "<html><body><script>$js</script></body></html>\n";
$GLOBALS['egw']->common->egw_exit();
2005-02-24 19:24:26 +01:00
}
2005-02-03 17:42:20 +01:00
}
2005-02-09 15:41:43 +01:00
else
{
$res_id = $content;
if (isset($_GET['res_id'])) $res_id = $_GET['res_id'];
2005-03-02 09:35:10 +01:00
if (isset($_GET['accessory_of'])) $accessory_of = $_GET['accessory_of'];
$content = array('res_id' => $res_id);
2008-04-20 21:37:12 +02:00
if ($res_id > 0)
2005-02-24 19:24:26 +01:00
{
$content = $this->bo->read($res_id);
2007-05-09 10:07:06 +02:00
$content['gen_src_list'] = strpos($content['picture_src'],'.') !== false ? $content['picture_src'] : false;
$content['picture_src'] = strpos($content['picture_src'],'.') !== false ? 'gen_src' : $content['picture_src'];
2005-02-24 19:24:26 +01:00
$content['link_to'] = array(
'to_id' => $res_id,
2005-02-24 19:24:26 +01:00
'to_app' => 'resources'
);
}
2008-04-20 21:37:12 +02:00
2005-02-25 12:15:27 +01:00
}
2005-02-28 16:19:31 +01:00
// some presetes
$content['resource_picture'] = $this->bo->get_picture($content['res_id'],$content['picture_src'],$size=true);
2005-02-28 16:19:31 +01:00
$content['quantity'] = $content['quantity'] ? $content['quantity'] : 1;
$content['useable'] = $content['useable'] ? $content['useable'] : 1;
$content['accessory_of'] = $content['accessory_of'] ? $content['accessory_of'] : $accessory_of;
2008-04-20 21:37:12 +02:00
2005-03-02 09:35:10 +01:00
$sel_options['gen_src_list'] = $this->bo->get_genpicturelist();
$sel_options['cat_id'] = $this->bo->acl->get_cats(EGW_ACL_ADD);
2008-04-20 21:37:12 +02:00
$sel_options['cat_id'] = count($sel_options['cat_id']) == 1 ? $sel_options['cat_id'] :
$content['cat_id'] ? $sel_options['cat_id'] : array('' => lang('select one')) + $sel_options['cat_id'];
2005-03-02 09:35:10 +01:00
if($accessory_of > 0 || $content['accessory_of'] > 0)
2005-02-28 16:19:31 +01:00
{
2005-03-02 09:35:10 +01:00
$content['accessory_of'] = $content['accessory_of'] ? $content['accessory_of'] : $accessory_of;
2005-02-28 16:19:31 +01:00
$catofmaster = $this->bo->so->get_value('cat_id',$content['accessory_of']);
$sel_options['cat_id'] = array($catofmaster => $sel_options['cat_id'][$catofmaster]);
}
2008-04-20 21:37:12 +02:00
2005-10-09 12:13:10 +02:00
// $content['general|page|pictures|links'] = 'resources.edit_tabs.page'; //debug
2005-02-24 19:24:26 +01:00
$no_button = array(); // TODO: show delete button only if allowed to delete resource
$preserv = $content;
2005-02-03 17:42:20 +01:00
$this->tmpl->read('resources.edit');
return $this->tmpl->exec('resources.ui_resources.edit',$content,$sel_options,$no_button,$preserv,2);
2008-04-20 21:37:12 +02:00
2005-03-01 11:58:04 +01:00
}
/**
* showes a single resource
*
* @param int $res_id resource id
* @author Lukas Weiss <wnz.gh05t@users.sourceforge.net>
*/
function show($res_id=0)
2005-02-03 17:42:20 +01:00
{
2005-10-09 12:13:10 +02:00
if (is_array($content = $res_id))
{
if(isset($content['btn_delete']))
{
$content['msg'] = $this->bo->delete($content['res_id']);
if($content['msg'])
{
return $this->show($content);
}
$js = "opener.location.href='".$GLOBALS['egw']->link('/index.php',
array('menuaction' => 'resources.ui_resources.index'))."';";
$js .= 'window.close();';
echo "<html><body><script>$js</script></body></html>\n";
$GLOBALS['egw']->common->egw_exit();
}
if(isset($content['btn_edit']))
{
return $this->edit($content['res_id']);
}
2008-04-20 21:37:12 +02:00
2005-10-09 12:13:10 +02:00
}
if (isset($_GET['res_id'])) $res_id = $_GET['res_id'];
2005-03-21 10:52:53 +01:00
$content = array('res_id' => $res_id);
$content = $this->bo->read($res_id);
2007-05-09 10:07:06 +02:00
$content['gen_src_list'] = strpos($content['picture_src'],'.') !== false ? $content['picture_src'] : false;
$content['picture_src'] = strpos($content['picture_src'],'.') !== false ? 'gen_src' : $content['picture_src'];
2005-03-21 10:52:53 +01:00
$content['link_to'] = array(
'to_id' => $res_id,
'to_app' => 'resources'
);
2008-04-20 21:37:12 +02:00
$content['resource_picture'] = $this->bo->get_picture($content['res_id'],$content['picture_src'],$size=true);
2005-03-21 10:52:53 +01:00
$content['quantity'] = $content['quantity'] ? $content['quantity'] : 1;
$content['useable'] = $content['useable'] ? $content['useable'] : 1;
2008-04-20 21:37:12 +02:00
2005-06-12 12:09:12 +02:00
$content['quantity'] = ($content['useable'] == $content['quantity']) ? $content['quantity'] : $content['quantity'].' ('.lang('useable').' '.$content['useable'].')';
2008-04-20 21:37:12 +02:00
//$sel_options['gen_src_list'] = $this->bo->get_genpicturelist();
2008-04-20 21:37:12 +02:00
2005-03-21 10:52:53 +01:00
$content['cat_name'] = $this->bo->acl->get_cat_name($content['cat_id']);
$content['cat_admin'] = $this->bo->acl->get_cat_admin($content['cat_id']);
2008-04-20 21:37:12 +02:00
/* if($content['accessory_of'] > 0)
2005-03-21 10:52:53 +01:00
{
$catofmaster = $this->bo->so->get_value('cat_id',$content['accessory_of']);
$sel_options['cat_id'] = array($catofmaster => $sel_options['cat_id'][$catofmaster]);
2008-04-20 21:37:12 +02:00
}
*/
2005-06-12 12:09:12 +02:00
$content['description'] = chop($content['long_description']) ? $content['long_description'] : (chop($content['short_description']) ? $content['short_description'] : lang("no description available"));
2005-03-21 10:52:53 +01:00
$content['description'] = $content['description'] ? $content['description'] : lang('no description available');
2005-06-12 12:09:12 +02:00
$content['link_to'] = array(
'to_id' => $res_id,
2005-06-12 12:09:12 +02:00
'to_app' => 'resources'
);
2005-03-21 10:52:53 +01:00
$sel_options = array();
2005-06-12 12:09:12 +02:00
$no_button = array(
'btn_buy' => !$content['buyable'],
'btn_book' => !$content['bookable'],
'btn_calendar' => !$content['bookable'],
'btn_edit' => !$this->bo->acl->is_permitted($content['cat_id'],EGW_ACL_EDIT),
'btn_delete' => !$this->bo->acl->is_permitted($content['cat_id'],EGW_ACL_DELETE)
2005-06-12 12:09:12 +02:00
);
2005-03-21 10:52:53 +01:00
$preserv = $content;
$this->tmpl->read('resources.showdetails');
return $this->tmpl->exec('resources.ui_resources.show',$content,$sel_options,$no_button,$preserv,2);
2008-04-20 21:37:12 +02:00
2005-02-03 17:42:20 +01:00
}
2008-04-20 21:37:12 +02:00
2005-06-11 16:58:07 +02:00
/**
* select resources
*
* @author Lukas Weiss <wnz.gh05t@users.sourceforge.net>
*/
2005-06-11 17:41:12 +02:00
function select($content='')
2005-06-11 16:58:07 +02:00
{
2006-05-18 18:14:35 +02:00
if (!is_object($GLOBALS['phpgw']->js))
{
$GLOBALS['phpgw']->js = CreateObject('phpgwapi.javascript');
}
$GLOBALS['phpgw']->js->set_onload("copyOptions('exec[resources][selectbox]');");
2008-04-20 21:37:12 +02:00
2005-06-11 21:46:50 +02:00
$GLOBALS['egw_info']['flags']['java_script'] .= "<script LANGUAGE=\"JavaScript\">
2005-06-11 17:41:12 +02:00
window.focus();
2008-04-20 21:37:12 +02:00
openerid='resources_selectbox';
2005-06-11 21:46:50 +02:00
id='exec[nm][rows][selectbox]';
2008-04-20 21:37:12 +02:00
function addOption(label,value,button_id,useable)
2005-06-11 17:41:12 +02:00
{
quantity = document.getElementById(button_id+'[default_qty]').value;
2005-09-13 23:42:46 +02:00
value = value+':'+quantity;
if(quantity>useable) {
alert('".lang('You chose more resources than available')."');
return false;
}
label = label+'['+quantity+'/'+useable+']';
2005-06-11 21:46:50 +02:00
openerSelectBox = opener.document.getElementById(openerid);
if (openerSelectBox) {
2005-06-11 17:41:12 +02:00
select = '';
for(i=0; i < openerSelectBox.length; i++) {
with (openerSelectBox.options[i]) {
if (selected || openerSelectBox.selectedIndex == i) {
select += (value.slice(0,1)==',' ? '' : ',')+value;
}
}
2005-06-11 16:58:07 +02:00
}
2005-06-11 17:41:12 +02:00
select += (select ? ',' : '')+value;
2005-09-13 23:42:46 +02:00
opener.selectbox_add_option(openerid,label,value,0);
2005-06-11 16:58:07 +02:00
}
2005-06-11 21:46:50 +02:00
selectBox = document.getElementById(id);
2005-06-11 17:41:12 +02:00
if (selectBox) {
2005-09-13 23:42:46 +02:00
var resource_value = value.split(':');
2005-06-11 17:41:12 +02:00
for (i=0; i < selectBox.length; i++) {
2005-09-13 23:42:46 +02:00
var selectvalue = selectBox.options[i].value.split(':');
if (selectvalue[0] == resource_value[0]) {
2008-04-20 21:37:12 +02:00
selectBox.options[i] = null;
selectBox.options[selectBox.length] = new Option(label,value,false,true);
2005-06-11 17:41:12 +02:00
break;
}
}
if (i >= selectBox.length) {
selectBox.options[selectBox.length] = new Option(label,value,false,true);
2005-06-11 16:58:07 +02:00
}
}
}
2008-04-20 21:37:12 +02:00
2005-06-11 21:46:50 +02:00
function removeSelectedOptions()
2005-06-11 17:41:12 +02:00
{
2005-06-11 21:46:50 +02:00
openerSelectBox = opener.document.getElementById(openerid);
2005-06-11 17:41:12 +02:00
if (openerSelectBox == null) window.close();
2005-06-11 21:46:50 +02:00
selectBox = document.getElementById(id);
2005-06-11 17:41:12 +02:00
for (i=0; i < selectBox.length; i++) {
if (selectBox.options[i].selected) {
for (j=0; j < openerSelectBox.length; j++) {
if (openerSelectBox[j].value == selectBox.options[i].value) {
openerSelectBox.removeChild(openerSelectBox[j]);
}
}
selectBox.options[i--] = null;
}
2005-06-11 16:58:07 +02:00
}
}
2008-04-20 21:37:12 +02:00
2005-06-11 21:46:50 +02:00
function copyOptions()
2005-06-11 17:41:12 +02:00
{
2005-06-11 21:46:50 +02:00
openerSelectBox = opener.document.getElementById(openerid);
selectBox = document.getElementById(id);
2005-06-11 16:58:07 +02:00
for (i=0; i < openerSelectBox.length; i++) {
with (openerSelectBox.options[i]) {
2005-06-11 17:41:12 +02:00
if (selected && value.slice(0,1) != ',') {
selectBox.options[selectBox.length] = new Option(text,value);
2005-06-11 16:58:07 +02:00
}
}
2005-06-11 17:41:12 +02:00
}
2005-06-11 16:58:07 +02:00
}
2008-04-20 21:37:12 +02:00
2005-06-11 21:46:50 +02:00
function oneLineSubmit()
2005-06-11 17:41:12 +02:00
{
2005-09-13 23:42:46 +02:00
/*
2005-06-11 21:46:50 +02:00
openerSelectBox = opener.document.getElementById(openerid);
2008-04-20 21:37:12 +02:00
2005-06-11 17:41:12 +02:00
if (openerSelectBox) {
if (openerSelectBox.selectedIndex >= 0) {
selected = openerSelectBox.options[openerSelectBox.selectedIndex].value;
if (selected.slice(0,1) == ',') selected = selected.slice(1);
opener.selectbox_add_option(openerid,'multiple*',selected,1);
2005-06-11 17:41:12 +02:00
}
else {
for (i=0; i < openerSelectBox.length; i++) {
with (openerSelectBox.options[i]) {
if (selected) {
opener.selectbox_add_option(openerid,text,value,1);
2005-06-11 17:41:12 +02:00
break;
}
}
2008-04-20 21:37:12 +02:00
}
2005-06-11 17:41:12 +02:00
}
}
2005-09-13 23:42:46 +02:00
*/
2005-06-11 17:41:12 +02:00
window.close();
}</script>";
2008-04-20 21:37:12 +02:00
2005-06-11 19:33:18 +02:00
$content['nm']['header_left'] = 'resources.resource_select.header';
2005-06-11 17:41:12 +02:00
$content['nm']['show_bookable'] = true;
$content['nm']['get_rows'] = 'resources.bo_resources.get_rows';
$content['nm']['no_filter'] = False;
$content['nm']['filter_label'] = 'Category';
$content['nm']['filter_help'] = lang('Select a category'); // is this used???
2005-06-11 21:46:50 +02:00
$content['nm']['options-filter']= array(''=>lang('all categories'))+(array)$this->bo->acl->get_cats(EGW_ACL_READ);
2005-06-11 17:41:12 +02:00
$content['nm']['no_filter2'] = true;
$content['nm']['filter_no_lang'] = true;
$content['nm']['no_cat'] = true;
2005-06-11 21:46:50 +02:00
$content['nm']['rows']['js_id'] = 1;
2005-06-11 16:58:07 +02:00
$sel_options = array();
$no_button = array();
$this->tmpl->read('resources.resource_select');
return $this->tmpl->exec('resources.ui_resources.select',$content,$sel_options,$no_button,$preserv,2);
2005-02-03 17:42:20 +01:00
}
2008-04-20 21:37:12 +02:00
2005-09-28 01:29:06 +02:00
/**
* get_calendar_sidebox
* get data für calendar sidebox
*
* @author Lukas Weiss <wnz_gh05t@users.sourceforge.net>
* @param array $param with keys menuaction, owner and optional date
2005-09-28 01:29:06 +02:00
* @return array with: label=>link or array with text
*/
function get_calendar_sidebox($param)
2005-09-28 01:29:06 +02:00
{
$cats = $this->bo->acl->get_cats(EGW_ACL_READ);
if (!$cats) return array();
2008-04-20 21:37:12 +02:00
$owners = explode(',',$param['owner']);
unset($param['owner']);
$res_cats = $selected = array();
2005-09-28 01:29:06 +02:00
// this gets the resource-ids of the cats and implodes them to the array-key of the selectbox,
// so it is possible to select all resources of a category
2008-04-20 21:37:12 +02:00
foreach($cats as $cat_id => $cat_name)
2005-09-28 01:29:06 +02:00
{
if ($resources = $this->bo->so->search(array('cat_id' => $cat_id, 'bookable' => '1'),'res_id'))
{
$keys = array();
foreach($resources as $res)
{
$keys[] = 'r'.$res['res_id'];
}
$res_cats[implode(',',$keys)] = $cat_name;
2008-04-20 21:37:12 +02:00
if (count(array_intersect($keys,$owners)) == count($keys))
{
$selected[] = implode(',',$keys);
$owners = array_diff($owners,$keys);
}
}
2005-09-28 01:29:06 +02:00
}
// add already selected single resources to the selectbox, eg. call of the resource-calendar from the resources app
$resources = array('r0' => lang('none'));
$res_ids = array();
foreach($owners as $key => $owner)
{
if ($owner{0} == 'r')
{
$res_ids[] = (int) substr($owner,1);
$selected[] = $owner;
}
}
if (count($res_ids))
{
foreach($this->bo->so->search(array('res_id' => $res_ids),'res_id,name') as $data)
{
$resources['r'.$data['res_id']] = $data['name'];
}
2008-04-20 21:37:12 +02:00
}
$selectbox = html::select(
2005-09-28 01:29:06 +02:00
'owner',
$selected,
array_merge($resources,$res_cats),
2005-09-28 01:29:06 +02:00
$no_lang=true,
$options='style="width: 165px;" onchange="load_cal(\''.
$GLOBALS['egw']->link('/index.php',$param).'\',\'uical_select_resource\');" id="uical_select_resource"',
$multiple=count($selected) ? 4 : 0
2005-09-28 01:29:06 +02:00
);
return array(
array(
'text' => $selectbox,
'no_lang' => True,
'link' => False
)
);
}
2005-02-03 17:42:20 +01:00
}