| 1 |
<?php // avoid bombing out if the actual debug file is not loaded |
| 2 |
if (!defined('ABSPATH')) exit; // Exit if accessed directly |
| 3 |
|
| 4 |
function presspermit_editing_plugin() |
| 5 |
{ |
| 6 |
} |
| 7 |
|
| 8 |
if (!function_exists('pp_debug_echo')) { |
| 9 |
function pp_debug_echo($str) |
| 10 |
{ |
| 11 |
} |
| 12 |
} |
| 13 |
|
| 14 |
if (!function_exists('pp_errlog')) { |
| 15 |
function pp_errlog($message, $line_break = true) |
| 16 |
{ |
| 17 |
} |
| 18 |
} |
| 19 |
|
| 20 |
if (!function_exists('pp_backtrace_dump')) { |
| 21 |
function pp_backtrace_dump() |
| 22 |
{ |
| 23 |
} |
| 24 |
} |
| 25 |
|
| 26 |
if (!function_exists('pp_log_mem_usage')) { |
| 27 |
function pp_log_mem_usage($label, $display_total = true) |
| 28 |
{ |
| 29 |
} |
| 30 |
} |
| 31 |
|
| 32 |
if (!function_exists('pp_dump')) { |
| 33 |
function pp_dump(&$var, $info = FALSE, $display_objects = true) |
| 34 |
{ |
| 35 |
} |
| 36 |
} |
| 37 |
|