PluginProbe
CartFlows – Funnel Builder & Checkout Plugin for WooCommerce / trunk
CartFlows – Funnel Builder & Checkout Plugin for WooCommerce vtrunk
3.2.0 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.1 trunk 1.0.4 1.1.0 1.1.0.1 1.1.1 1.1.10 1.1.11 1.1.12 1.1.13 1.1.14 1.1.15 1.1.16 1.1.17 1.1.18 1.1.19 1.1.2 1.1.20 1.1.21 All 160 releases
cartflows / classes / logger / class-cartflows-log-handler-interface.php

class-cartflows-log-handler-interface.php in CartFlows – Funnel Builder & Checkout Plugin for WooCommerce trunk, at classes/logger/class-cartflows-log-handler-interface.php

34 lines 769 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Log Handler Interface
4 *
5 * @version 3.3.0
6 * @package WooCommerce/Interface
7 */
8
9 if ( ! defined( 'ABSPATH' ) ) {
10 exit; // Exit if accessed directly.
11 }
12
13 /**
14 * WC Log Handler Interface
15 *
16 * Functions that must be defined to correctly fulfill log handler API.
17 *
18 * @version 3.3.0
19 */
20 interface Cartflows_Log_Handler_Interface {
21
22 /**
23 * Handle a log entry.
24 *
25 * @param int $timestamp Log timestamp.
26 * @param string $level emergency|alert|critical|error|warning|notice|info|debug.
27 * @param string $message Log message.
28 * @param array $context Additional information for log handlers.
29 *
30 * @return bool False if value was not handled and true if value was handled.
31 */
32 public function handle( $timestamp, $level, $message, $context );
33 }
34