Initial commit
This commit is contained in:
23
archive/version_01/includes/classes/class.notifier.php
Executable file
23
archive/version_01/includes/classes/class.notifier.php
Executable file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
/**
|
||||
* File contains just the notifier class
|
||||
*
|
||||
* @package classes
|
||||
* @copyright Copyright 2003-2005 Zen Cart Development Team
|
||||
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
|
||||
* @version $Id: class.notifier.php 3041 2006-02-15 21:56:45Z wilt $
|
||||
*/
|
||||
/**
|
||||
* class notifier is a concrete implemetation of the abstract base class
|
||||
*
|
||||
* it can be used in procedural (non OOP) code to set up an observer
|
||||
* see the observer/notifier tutorial for more details.
|
||||
*
|
||||
* @package classes
|
||||
*/
|
||||
if (!defined('IS_ADMIN_FLAG')) {
|
||||
die('Illegal Access');
|
||||
}
|
||||
class notifier extends base {
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user