source: contrib/resources/sitemgr/class.module_resources.inc.php @ 3524

Revision 3524, 805 bytes checked in by afernandes, 13 years ago (diff)

Ticket #1416 - Disponibilizado módulo de recursos para a comunidade

  • Property svn:executable set to *
Line 
1<?php
2        /**
3         * eGroupWare - resources
4         * http://www.egroupware.org
5         *
6         * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
7         * @package resources
8         * @author Cornelius Weiss <egw@von-und-zu-weiss.de>
9         * @author Lukas Weiss <wnz_gh05t@users.sourceforge.net>
10         * @version $Id: class.module_resources.inc.php 19735 2005-11-10 23:35:55Z nelius_weiss $
11         */
12       
13        require_once (EGW_INCLUDE_ROOT.'/etemplate/inc/class.sitemgr_module.inc.php');
14       
15        class module_resources extends sitemgr_module
16        {
17                function module_resources()
18                {
19                        $this->arguments = array();
20                        $this->properties = array();
21                        $this->title = lang('Resources');
22                        $this->description = lang('This module displays the resources app');
23                        $this->etemplate_method = 'resources.ui_resources.index';
24                }
25        }
Note: See TracBrowser for help on using the repository browser.