PHP Classes

File: _constants/EventIDs.class.php

Recommend this page to a friend!
  Classes of Marius Zadara   Logger   _constants/EventIDs.class.php   Download  
File: _constants/EventIDs.class.php
Role: Class source
Content type: text/plain
Description: Event id definitions
Class: Logger
Filter and export data of application events
Author: By
Last change:
Date: 15 years ago
Size: 676 bytes
 

Contents

Class file image Download
<?php

/**
 * Event ids definitions.
 * This class will define the ids used for events.
 *
 * @author Marius Zadara <marius@zadara.org>
 * @category org.zadara.marius.logger.constants
 * @copyright (C) 2008 Marius Zadara <marius@zadara.org>
 * @license GNU GPL
 * @package org.zadara.marius.logger
 * @final
 */
final class EvendIDs
{
   
/**
     * No id.
     * @access public
     * @static
     */
   
public static $NO_ID = "No ID";

   
/**
     * Startup event id
     * @access public
     * @static
     */
   
public static $STARTUP = "Startup";
       
   
/**
     * Shutdown event id
     * @access public
     * @static
     */
   
public static $SHUTDOWN = "Shutdown";
}


?>