23 lines
632 B
PHP
Executable File
23 lines
632 B
PHP
Executable File
<?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 {
|
|
}
|
|
?>
|