forked from extern/egroupware
26 lines
724 B
PHP
Executable File
26 lines
724 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 __construct()
|
|
{
|
|
$this->arguments = array();
|
|
$this->properties = array();
|
|
$this->title = lang('Resources');
|
|
$this->description = lang('This module displays the resources app');
|
|
$this->etemplate_method = 'resources.resources_ui.index';
|
|
}
|
|
}
|