PHP Classes

File: _constants/Fields.class.php

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

Contents

Class file image Download
<?php

/**
 * Fields categories definitions.
 * This class will define the fields 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 Fields
{
   
/**
     * ID field.
     * @access public
     * @static
     */
   
public static $ID = "ID";
   
   
/**
     * Source field.
     * @access public
     * @static
     */
   
public static $SOURCE = "Source";
   
   
/**
     * Category fields
     * @access public
     * @static
     */
   
public static $CATEGORY = "Category";
   
   
/**
     * Timestamp field.
     * @access public
     * @static
     */
   
public static $TIMESTAMP = "Timestamp";
   
   
/**
     * Message field
     * @access public
     * @static
     */
   
public static $MESSAGE = "Message";
}


?>