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

166 lines
4.9 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';
$content['nm']['filter_help'] = 'Select a category'; // is this used???
$content['nm']['options-filter']= array('0'=>'all categories')+(array)$this->bo->acl->get_cats(PHPGW_ACL_READ);
2005-02-03 17:42:20 +01:00
$content['nm']['no_filter2'] = True;
$content['nm']['no_cat'] = True;
// 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
@abstract invokes add or edit dialog for resources
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 mixed $content int for resource_id to edit ( 0 for new ). array if callback from dialog.
@param string $msg message to display on top of dialog
*/
function edit($content='',$msg='')
{
2005-02-17 12:17:19 +01:00
$sel_options = array(
'cat_id' => $this->bo->acl->get_cats(PHPGW_ACL_ADD),
'gen_src_list' => $this->bo->get_genpicturelist()
);
2005-02-12 09:25:26 +01:00
$no_button = array();
2005-02-03 17:42:20 +01:00
if (is_array($content))
{
if(isset($content['delete']))
{
return $this->delete($content['id']);
}
if(isset($content['save']))
{
2005-02-12 09:25:26 +01:00
if(!$content['cat_id'] || !$content['name'])
{
$content['msg'] = 'You need to choose at least a name and a category!';
$this->tmpl->read('resources.edit');
$this->tmpl->exec('resources.ui_resources.edit',$content,$sel_options,$no_button);
return;
}
$content['msg'] = $this->bo->save($content);
if($content['msg'])
2005-02-03 17:42:20 +01:00
{
2005-02-12 09:25:26 +01:00
$this->tmpl->read('resources.edit');
$this->tmpl->exec('resources.ui_resources.edit',$content,$sel_options,$no_button);
2005-02-03 17:42:20 +01:00
}
}
return $this->index();
}
if ($content > 0)
{
2005-02-12 09:25:26 +01:00
$preserv = array('id' => $content);
2005-02-03 17:42:20 +01:00
$content = $this->bo->read($content);
2005-02-17 12:17:19 +01:00
$content['gen_src_list'] = strstr($content['picture_src'],'.') ? $content['picture_src'] : false;
$content['picture_src'] = strstr($content['picture_src'],'.') ? 'gen_src' : $content['picture_src'];
2005-02-03 17:42:20 +01:00
}
2005-02-09 15:41:43 +01:00
else
{
$content = array();
}
$content['resource_picture'] = $this->bo->get_picture($content['id'],$content['picture_src'],$size=true);
$content['msg'] = $msg;
$preserv = (array)$preserv + $content; // debug for eTemplate tabs don't know if really needed atm.
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
}
}