mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-28 17:48:56 +01:00
13659ddb5e
buxfix in calendar select hook added a sitemgr module
25 lines
1.1 KiB
PHP
Executable File
25 lines
1.1 KiB
PHP
Executable File
<?php
|
|
/**************************************************************************\
|
|
* eGroupWare SiteMgr - Web Content Management *
|
|
* 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$ */
|
|
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';
|
|
}
|
|
} |