[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
[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: 9cb0063ccce14f6b487f86294ccd3b2c

class.notifier.php - 关闭高亮
  1. <?php
  2. /**
  3.  * File contains just the notifier class
  4.  *
  5.  * @package classes
  6.  * @copyright Copyright 2003-2005 Zen Cart Development Team
  7.  * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
  8.  * @version $Id: class.notifier.php 3041 2006-02-15 21:56:45Z wilt $
  9.  */
  10. /**
  11.  * class notifier is a concrete implemetation of the abstract base class
  12.  *
  13.  * it can be used in procedural (non OOP) code to set up an observer
  14.  * see the observer/notifier tutorial for more details.
  15.  *
  16.  * @package classes
  17.  */
  18. if (!defined('IS_ADMIN_FLAG')) {
  19.   die('Illegal Access');
  20. }
  21. class notifier extends base {
  22. }
  23. ?>