2012-06-14 15:25:27 +02:00
< ? php
2013-09-03 12:33:05 +02:00
/**
* 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 3 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program . If not , see < http :// www . gnu . org / licenses />.
*
* @ author D3 Data Development - Daniel Seifert < support @ shopmodule . com >
* @ link http :// www . oxidmodule . com
*/
/**
* Metadata version
*/
$sMetadataVersion = '1.1' ;
2012-08-08 09:59:11 +02:00
/**
* Module information
*/
2012-06-14 15:25:27 +02:00
$aModule = array (
2013-09-03 12:33:05 +02:00
'id' => 'd3usersonline' ,
'title' =>
( class_exists ( 'd3utils' ) ? d3utils :: getInstance () -> getD3Logo () : 'D³' ) . ' Users Online' ,
'description' => array (
'de' => 'Lassen Sie sich anonym im Shop anzeigen, wie viele Benutzer zur Zeit Ihren Shop besuchen und welche Seiten angezeigt werden. Das Modul speichert nicht die IP-Adresse oder sonstige Daten des Nutzers. Damit gen<65> gen Sie auch dem deutschen Recht.' ,
'en' => '' ,
),
'thumbnail' => 'picture.png' ,
'version' => '2.0.0.0' ,
'author' => 'D³ Data Development (Inh.: Thomas Dartsch)' ,
'email' => 'support@shopmodule.com' ,
'url' => 'http://www.oxidmodule.com/' ,
2012-06-14 15:25:27 +02:00
'extend' => array (
2013-09-03 12:33:05 +02:00
'oxcmp_utils' => 'd3/d3usersonline/modules/components/d3_oxcmp_utils_usersonline' ,
),
'files' => array (
'd3usersonline' => 'd3/d3usersonline/models/d3usersonline.php' ,
'd3usersonline_update' => 'd3/d3usersonline/models/d3usersonline_update.php' ,
),
'templates' => array (
//'d3_cfg_extsearch_main.tpl' => 'd3/d3_extsearch/views/admin/tpl/d3_cfg_extsearch_main.tpl',
),
'events' => array (
'onActivate' => 'd3install::checkUpdateStart' ,
),
'blocks' => array (
array ( 'template' => 'layout/sidebar.tpl' , 'block' => 'sidebar_categoriestree' ,
'file' => 'views/blocks/layout/d3usersonline_sidebar.tpl' ),
2012-06-14 15:25:27 +02:00
)
);