egroupware/resources/sitemgr/class.module_resources.inc.php
2005-11-10 23:35:55 +00:00

25 lines
731 B
PHP
Executable File

<?php
/**
* eGroupWare - resources
* http://www.egroupware.org
*
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package resources
* @author Cornelius Weiss <egw@von-und-zu-weiss.de>
* @author Lukas Weiss <wnz_gh05t@users.sourceforge.net>
* @version $Id$
*/
require_once (EGW_INCLUDE_ROOT.'/etemplate/inc/class.sitemgr_module.inc.php');
class module_resources extends sitemgr_module
{
function module_resources()
{
$this->arguments = array();
$this->properties = array();
$this->title = lang('Resources');
$this->description = lang('This module displays the resources app');
$this->etemplate_method = 'resources.ui_resources.index';
}
}