egroupware_official/resources/inc/class.ui_resources.inc.php

175 lines
5.2 KiB
PHP
Raw Normal View History

2005-02-03 17:42:20 +01:00
<?php
/**************************************************************************\
* eGroupWare - resources - Resource Management System *
* http://www.egroupware.org *
2005-02-17 18:29:07 +01:00
* Written by Lukas Weiss [ichLukas@gmx.de] and *
2005-02-03 17:42:20 +01:00
* Cornelius Weiss [nelius@gmx.net] *
* ----------------------------------------------- *
* 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. *
\**************************************************************************/
2005-02-09 15:41:43 +01:00
/* $Id$ */
2005-02-03 17:42:20 +01:00
class ui_resources
{
var $public_functions = array(
'index' => True,
'edit' => True,
'writeLangFile' => True
);
/*!
@function ui_resources
@abstract constructor of class ui_resources
*/
function ui_resources()
{
2005-02-17 09:04:55 +01:00
// print_r($GLOBALS['phpgw_info']); die();
2005-02-03 17:42:20 +01:00
$this->tmpl = CreateObject('etemplate.etemplate','resources.show');
$this->bo = CreateObject('resources.bo_resources');
if(!@is_object($GLOBALS['phpgw']->js))
{
$GLOBALS['phpgw']->js = CreateObject('phpgwapi.javascript');
}
}
/*!
@function index
@abstract main resources list.
2005-02-17 10:53:46 +01:00
@autor Cornelius Wei<EFBFBD> <egw@von-und-zu-weiss.de>
2005-02-03 17:42:20 +01:00
@param array $content content from eTemplate callback
FIXME don't translate cats in nextmach
*/
function index($content='')
{
if (is_array($content))
{
if (isset($content['nm']['rows']))
{
if (isset($content['nm']['rows']['edit']))
{
list($id) = each($content['nm']['rows']['edit']);
return $this->edit($id);
}
elseif (isset($content['nm']['rows']['delete']))
{
list($id) = each($content['nm']['rows']['delete']);
return $this->delete($id);
}
}
if (isset($content['add']))
{
return $this->edit(0);
}
}
$content['nm']['get_rows'] = 'resources.bo_resources.get_rows';
$content['nm']['no_filter'] = False;
2005-02-15 17:26:21 +01:00
$content['nm']['filter_label'] = 'Category';
2005-02-21 16:56:21 +01:00
$content['nm']['filter_help'] = lang('Select a category'); // is this used???
$content['nm']['options-filter']= array('0'=>lang('all categories'))+(array)$this->bo->acl->get_cats(PHPGW_ACL_READ);
$content['nm']['no_filter2'] = true;
$content['nm']['filter_no_lang'] = true;
$content['nm']['no_cat'] = true;
2005-02-03 17:42:20 +01:00
// check if user is permitted to add resources
if(!$this->bo->acl->get_cats(PHPGW_ACL_ADD))
{
$no_button['add'] = true;
}
$this->tmpl->read('resources.show');
$this->tmpl->exec('resources.ui_resources.index',$content,$sel_options,$no_button,$preserv);
}
/*!
@function edit
2005-02-24 19:24:26 +01:00
@syntax edit($content=0)
@author Cornelius Wei<EFBFBD> <egw@von-und-zu-weiss.de>
2005-02-03 17:42:20 +01:00
@abstract invokes add or edit dialog for resources
2005-02-24 19:24:26 +01:00
@param $content Content from the eTemplate Exec call or id on inital call
2005-02-03 17:42:20 +01:00
*/
2005-02-24 19:24:26 +01:00
function edit($content=0)
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']);
if($content['id'] != 0)
{
// links are already saved by eTemplate
unset($resource['link_to']['to_id']);
}
$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->delete($content['id']);
2005-02-03 17:42:20 +01:00
}
2005-02-24 19:24:26 +01:00
return $content['msg'] ? $this->edit($content) : $this->index();
}
elseif($content['cancel'])
{
return $this->index();
2005-02-03 17:42:20 +01:00
}
}
2005-02-09 15:41:43 +01:00
else
{
2005-02-24 19:24:26 +01:00
$resource_id = $content;
$content = array('resource_id' => $resource_id);
2005-02-25 12:15:27 +01:00
// some presetes
$content['quantity'] = $content['useable'] = 1;
$content['accessory_of'] = -1;
2005-02-24 19:24:26 +01:00
if ($resource_id > 0)
{
$content = $this->bo->read($resource_id);
$content['gen_src_list'] = strstr($content['picture_src'],'.') ? $content['picture_src'] : false;
$content['picture_src'] = strstr($content['picture_src'],'.') ? 'gen_src' : $content['picture_src'];
$content['link_to'] = array(
'to_id' => $resource_id,
'to_app' => 'resources'
);
// $sel_options += array('acc_list' => $this->bo->get_acc_list($resource_id));
}
$content['resource_picture'] = $this->bo->get_picture($resource_id,$content['picture_src'],$size=true);
2005-02-25 12:15:27 +01:00
}
$sel_options['cat_id'] = $this->bo->acl->get_cats(PHPGW_ACL_ADD);
$sel_options['cat_id'] = count($sel_options['cat_id']) == 1 ? $sel_options['cat_id'] : array('' => lang('select one')) + $sel_options['cat_id'];
$sel_options['gen_src_list'] = $this->bo->get_genpicturelist();
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');
$this->tmpl->exec('resources.ui_resources.edit',$content,$sel_options,$no_button,$preserv);
}
/*!
@function show
@abstract showes a single resource
@param int $id resource id
*/
function show($id)
{
}
function delete($id)
{
// Wollen sie Dieses bla bla wirklich l<>schen --> ja (Wie bekommt man mit eTemplate ein Javascript Dialog???)
$this->bo->delete($id);
2005-02-17 18:29:07 +01:00
return $this->index();
2005-02-03 17:42:20 +01:00
}
}