PDF rausgenommen

This commit is contained in:
aschwarz
2023-01-23 11:03:31 +01:00
parent 82d562a322
commit a6523903eb
28078 changed files with 4247552 additions and 2 deletions

View File

@ -0,0 +1,15 @@
<?php
/* ----------------------------------------------------------------------
$Id: deu.php,v 1.1 2007/06/12 17:11:55 r23 Exp $
MyOOS [Shopsystem]
https://www.oos-shop.de
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
----------------------------------------------------------------------
Released under the GNU General Public License
---------------------------------------------------------------------- */
define('PLUGIN_EVENT_NOTIFY_NAME', 'Benachrichtigen');
define('PLUGIN_EVENT_NOTIFY_DESC', 'Benachrichtigen');

View File

@ -0,0 +1,15 @@
<?php
/* ----------------------------------------------------------------------
$Id: eng.php,v 1.1 2007/06/12 17:11:55 r23 Exp $
MyOOS [Shopsystem]
https://www.oos-shop.de
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
----------------------------------------------------------------------
Released under the GNU General Public License
---------------------------------------------------------------------- */
define('PLUGIN_EVENT_NOTIFY_NAME', 'Notify of updates');
define('PLUGIN_EVENT_NOTIFY_DESC', 'Notify of updates');

View File

@ -0,0 +1,72 @@
<?php
/* ----------------------------------------------------------------------
$Id: oos_event_notify.php,v 1.1 2007/06/12 17:11:55 r23 Exp $
MyOOS [Shopsystem]
https://www.oos-shop.de
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
----------------------------------------------------------------------
Based on:
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2003 osCommerce
----------------------------------------------------------------------
Released under the GNU General Public License
---------------------------------------------------------------------- */
/** ensure this file is being included by a parent file */
defined( 'OOS_VALID_MOD' ) OR die( 'Direct Access to this location is not allowed.' );
class oos_event_notify {
var $name;
var $description;
var $uninstallable;
var $depends;
var $preceeds = 'session';
var $author;
var $version;
var $requirements;
/**
* class constructor
*/
public function __construct() {
$this->name = PLUGIN_EVENT_NOTIFY_NAME;
$this->description = PLUGIN_EVENT_NOTIFY_DESC;
$this->uninstallable = TRUE;
$this->preceeds = 'session';
$this->author = 'MyOOS Development Team';
$this->version = '1.0';
$this->requirements = array(
'oos' => '1.8.0',
'smarty' => '2.6.9',
'adodb' => '4.62',
'php' => '5.9.0'
);
}
function create_plugin_instance() {
return TRUE;
}
function install() {
return TRUE;
}
function remove() {
return TRUE;
}
function config_item() {
return FALSE;
}
}