[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
Zen Cart 源代码 class.notifier.php

Zen Cart 源代码 class.notifier.php




下载文件

文件名: class.notifier.php
文件类型: PHP文件
文件大小: 632 Bytes
MD5: a87bdc7c820875ab67d707853cbc2ba0

class.notifier.php - 打开高亮
<?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 {
}
?>