update documentation to run properly in phpdoumentor

This commit is contained in:
Cornelius Weiß 2005-11-09 21:03:35 +00:00
parent a53e060aa0
commit 4e20826dcf
7 changed files with 522 additions and 480 deletions

View File

@ -1,19 +1,25 @@
<?php
/**************************************************************************\
* eGroupWare - resources *
* http://www.egroupware.org *
* -------------------------------------------- *
* 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. *
* -------------------------------------------- *
\**************************************************************************/
/**************************************************************************\
* eGroupWare - resources *
* http://www.egroupware.org *
* -------------------------------------------- *
* 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. *
* -------------------------------------------- *
\**************************************************************************/
/* $Id$ */
/* $Id$ */
class bo_acl
{
/**
* ACL business object for resources
*
* @package resources
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
*/
class bo_acl
{
/**
* @var $permissions Holds alls permissions for resources of user
*/
@ -155,7 +161,7 @@
}
// privat functions from here on -------------------------------------------------------------------------
// privat functions from here on -------------------------------------------------------------------------
function save_sessiondata()
{
$data = array(
@ -206,4 +212,4 @@
}
}
}
}
}

View File

@ -1,18 +1,26 @@
<?php
/**************************************************************************\
* eGroupWare - resources - Resource Management System *
* http://www.egroupware.org *
* Written by Lukas Weiss <wnz_gh05t@users.sourceforge.net> and *
* Cornelius Weiss <egw@von-und-zu-weiss.de> *
* ----------------------------------------------- *
* 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. *
\**************************************************************************/
/**************************************************************************\
* eGroupWare - resources - Resource Management System *
* http://www.egroupware.org *
* Written by Lukas Weiss <wnz_gh05t@users.sourceforge.net> and *
* Cornelius Weiss <egw@von-und-zu-weiss.de> *
* ----------------------------------------------- *
* 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. *
\**************************************************************************/
/* $Id$ */
/* $Id$ */
/**
* General business object for resources
*
* @package resources
* @author Cornelius Weiss <egw@von-und-zu-weiss.de>
* @author Lukas Weiss <wnz_gh05t@users.sourceforge.net>
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
*/
class bo_resources
{
var $vfs_basedir = '/resources/';

View File

@ -1,19 +1,26 @@
<?php
/**************************************************************************\
* eGroupWare - resources hooks *
* http://www.eGroupWare.org *
* Originally written by Ralf Becker <RalfBecker@outdoor-training.de> *
* Changes for resources by Cornelius Wei<EFBFBD><egw@von-und-zu-weiss.de> *
* *
* ------------------------------------------------------- *
* 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. *
\**************************************************************************/
/**************************************************************************\
* eGroupWare - resources hooks *
* http://www.eGroupWare.org *
* Originally written by Ralf Becker <RalfBecker@outdoor-training.de> *
* Changes for resources by Cornelius Wei<EFBFBD><egw@von-und-zu-weiss.de> *
* *
* ------------------------------------------------------- *
* 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. *
\**************************************************************************/
/* $Id$ */
/* $Id$ */
/**
* General hook object for resources
* It encapsulats all the diffent hook methods
*
* @package resources
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
*/
class resources_hooks
{
function admin_prefs_sidebox($args)

View File

@ -1,26 +1,26 @@
<?php
/**************************************************************************\
* eGroupWare - eTemplate Extension - Resource Select Widgets *
* http://www.egroupware.org *
* Written by Ralf Becker <RalfBecker@outdoor-training.de> *
* -------------------------------------------- *
* 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. *
\**************************************************************************/
/**************************************************************************\
* eGroupWare - eTemplate Extension - Resource Select Widgets *
* http://www.egroupware.org *
* Written by Ralf Becker <RalfBecker@outdoor-training.de> *
* -------------------------------------------- *
* 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. *
\**************************************************************************/
/* $Id$ */
/* $Id$ */
/**
* eTemplate Extension: select a resource
*
* @package resources
* @author RalfBecker-AT-outdoor-training.de
* @license GPL
*/
class resources_select_widget
{
/**
* eTemplate Extension: select a resource
*
* @package resources
* @author RalfBecker-AT-outdoor-training.de
* @license GPL
*/
class resources_select_widget
{
/**
* exported methods of this class
* @var array
@ -107,4 +107,4 @@
return True; // extra Label Ok
}
}
}

View File

@ -1,20 +1,28 @@
<?php
/**************************************************************************\
* eGroupWare - resources - Resource Management System *
* http://www.egroupware.org *
* Written by Cornelius Weiss <egw@von-und-zu-weiss.de> *
* and Lukas Weiss <wnz_gh05t@users.sourceforge.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. *
\**************************************************************************/
/**************************************************************************\
* eGroupWare - resources - Resource Management System *
* http://www.egroupware.org *
* Written by Cornelius Weiss <egw@von-und-zu-weiss.de> *
* and Lukas Weiss <wnz_gh05t@users.sourceforge.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. *
\**************************************************************************/
/* $Id$ */
/* $Id$ */
include_once(EGW_INCLUDE_ROOT.'/etemplate/inc/class.so_sql.inc.php');
/**
* General storage object for resources
*
* @package resources
* @author Cornelius Weiss <egw@von-und-zu-weiss.de>
* @author Lukas Weiss <wnz_gh05t@users.sourceforge.net>
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
*/
class so_resources extends so_sql
{
function so_resources()

View File

@ -1,19 +1,25 @@
<?php
/**************************************************************************\
* eGroupWare - resources *
* http://www.egroupware.org *
* -------------------------------------------- *
* 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. *
* -------------------------------------------- *
\**************************************************************************/
/**************************************************************************\
* eGroupWare - resources *
* http://www.egroupware.org *
* -------------------------------------------- *
* 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. *
* -------------------------------------------- *
\**************************************************************************/
/* $Id$ */
/* $Id$ */
class ui_acl
{
/**
* ACL userinterface object for resources
*
* @package resources
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
*/
class ui_acl
{
var $start = 0;
var $query = '';
var $sort = '';
@ -137,5 +143,4 @@
echo '<p><center><b>'.lang('Access not permitted').'</b></center>';
$GLOBALS['egw']->common->egw_exit(True);
}
}
?>
}

View File

@ -1,18 +1,26 @@
<?php
/**************************************************************************\
* eGroupWare - resources - Resource Management System *
* http://www.egroupware.org *
* Written by Lukas Weiss <wnz_gh05t@users.sourceforge.net> and *
* Cornelius Weiss <egw@von-und-zu-weiss.de> *
* ----------------------------------------------- *
* 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. *
\**************************************************************************/
/**************************************************************************\
* eGroupWare - resources - Resource Management System *
* http://www.egroupware.org *
* Written by Lukas Weiss <wnz_gh05t@users.sourceforge.net> and *
* Cornelius Weiss <egw@von-und-zu-weiss.de> *
* ----------------------------------------------- *
* 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. *
\**************************************************************************/
/* $Id$ */
/* $Id$ */
/**
* General userinterface object for resources
*
* @package resources
* @author Cornelius Weiss <egw@von-und-zu-weiss.de>
* @author Lukas Weiss <wnz_gh05t@users.sourceforge.net>
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
*/
class ui_resources
{
var $public_functions = array(