class.notifier.php

来自「Easy_Buy是一个在线销售系统」· PHP 代码 · 共 23 行

PHP
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 {
}
?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?