CC-2166: Packaging Improvements. Moved the Zend app into airtime_mvc. It is now installed to /var/www/airtime. Storage is now set to /srv/airtime/stor. Utils are now installed to /usr/lib/airtime/utils/. Added install/airtime-dircheck.php as a simple test to see if everything is install/uninstalled correctly.

This commit is contained in:
Paul Baranowski 2011-04-14 18:55:04 -04:00
parent 514777e8d2
commit b11cbd8159
4546 changed files with 138 additions and 51 deletions

View file

@ -1,91 +0,0 @@
<?php
/**
* This file is part of the Propel package.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @license MIT License
*/
/**
* This is a minimalistic interface that any logging class must implement for Propel.
*
* The API for this interface is based on the PEAR::Log interface. It provides a simple
* API that can be used by Propel independently of Log backend.
*
* PEAR::Log and perhaps the Log API was developed by Chuck Hagenbuch <chuck@horde.org>
* and Jon Parise <jon@php.net>.
*
* @author Hans Lellelid <hans@xmpl.org>
* @version $Revision: 1612 $
* @package propel.runtime.logger
*/
interface BasicLogger
{
/**
* A convenience function for logging an alert event.
*
* @param mixed $message String or Exception object containing the message
* to log.
*/
public function alert($message);
/**
* A convenience function for logging a critical event.
*
* @param mixed $message String or Exception object containing the message
* to log.
*/
public function crit($message);
/**
* A convenience function for logging an error event.
*
* @param mixed $message String or Exception object containing the message
* to log.
*/
public function err($message);
/**
* A convenience function for logging a warning event.
*
* @param mixed $message String or Exception object containing the message
* to log.
*/
public function warning($message);
/**
* A convenience function for logging an critical event.
*
* @param mixed $message String or Exception object containing the message
* to log.
*/
public function notice($message);
/**
* A convenience function for logging an critical event.
*
* @param mixed $message String or Exception object containing the message
* to log.
*/
public function info($message);
/**
* A convenience function for logging a debug event.
*
* @param mixed $message String or Exception object containing the message
* to log.
*/
public function debug($message);
/**
* Primary method to handle logging.
*
* @param mixed $message String or Exception object containing the message
* to log.
* @param int $severity The numeric severity. Defaults to null so that no
* assumptions are made about the logging backend.
*/
public function log($message, $severity = null);
}