woocommerce/classes/class-wc-logger.php

104 lines
1.8 KiB
PHP
Raw Normal View History

<?php
/**
* Allows log files to be written to for debugging purposes.
*
2012-01-27 16:38:39 +00:00
* @class WC_Logger
2012-08-14 19:42:38 +00:00
* @version 1.6.4
2012-08-14 22:43:48 +00:00
* @package WooCommerce/Classes
2012-08-14 19:42:38 +00:00
* @author WooThemes
*/
2012-01-27 16:38:39 +00:00
class WC_Logger {
2012-08-14 19:42:38 +00:00
2012-08-15 17:08:42 +00:00
/**
* @var array Stores open file handles.
* @access private
*/
private $handles;
2012-08-14 19:42:38 +00:00
/**
2012-08-15 17:08:42 +00:00
* Constructor for the logger.
2012-08-14 19:42:38 +00:00
*
* @access public
* @return void
*/
function __construct() {
$this->handles = array();
}
2012-08-14 19:42:38 +00:00
/**
* Destructor.
*
* @access public
* @return void
*/
function __destruct() {
2012-08-14 19:42:38 +00:00
foreach ($this->handles as $handle)
fclose( $handle );
}
2012-08-14 19:42:38 +00:00
/**
2012-08-14 19:42:38 +00:00
* Open log file for writing.
*
* @access private
* @param mixed $handle
* @return bool success
*/
private function open( $handle ) {
global $woocommerce;
2012-08-14 19:42:38 +00:00
if ( isset( $this->handles[$handle] ) )
return true;
if ( $this->handles[$handle] = @fopen( $woocommerce->plugin_path() . '/logs/' . $handle . '.txt', 'a' ) )
return true;
return false;
}
2012-08-14 19:42:38 +00:00
/**
2012-08-14 19:42:38 +00:00
* Add a log entry to chosen file.
*
* @access public
* @param mixed $handle
* @param mixed $message
* @return void
*/
public function add( $handle, $message ) {
2012-08-14 19:42:38 +00:00
if ( $this->open( $handle ) ) {
$time = date('m-d-Y @ H:i:s -'); //Grab Time
2012-08-14 19:42:38 +00:00
fwrite( $this->handles[$handle], $time . " " . $message . "\n" );
}
}
2012-08-14 19:42:38 +00:00
/**
2012-08-14 19:42:38 +00:00
* Clear entrys from chosen file.
*
* @access public
* @param mixed $handle
* @return void
*/
public function clear( $handle ) {
2012-08-14 19:42:38 +00:00
if ( $this->open( $handle ) )
ftruncate( $this->handles[$handle], 0 );
}
2012-01-27 16:38:39 +00:00
}
2012-08-14 19:42:38 +00:00
/**
* woocommerce_logger class.
*
2012-08-15 17:08:42 +00:00
* @extends WC_Logger
* @deprecated 1.4
* @package WooCommerce/Classes
2012-08-14 19:42:38 +00:00
*/
2012-01-27 16:38:39 +00:00
class woocommerce_logger extends WC_Logger {
2012-08-14 19:42:38 +00:00
public function __construct() {
2012-01-27 16:38:39 +00:00
_deprecated_function( 'woocommerce_logger', '1.4', 'WC_Logger()' );
2012-08-14 19:42:38 +00:00
parent::__construct();
}
}