PHP Classes

File: _constants/Sources.class.php

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

Contents

Class file image Download
<?php

/**
 * Levels definitions.
 * This class will define the levels 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 Sources
{
   
/**
     * No source definition
     *
     * @access public
     * @static
     */
   
public static $NO_SOURCE = "No Source";
   
   
/**
     * Home source definition
     *
     * @access public
     * @static
     */
   
public static $HOME = "Home";
}


?>