PluginProbe
PublishPress Permissions: Access Control, Content Permissions, User Access / trunk
PublishPress Permissions: Access Control, Content Permissions, User Access vtrunk
4.8.4 4.8.3 4.8.2 3.3.6 3.3.7 3.3.8 3.3.9 3.4 3.4.1 3.4.2 3.4.3 3.5 3.5.1 3.5.2 3.5.4 3.5.6 3.5.7 3.6 3.6.2 3.6.3 3.6.4 3.6.5 3.6.6 3.6.7 3.6.8 All 202 releases
press-permit-core / library / debug_shell.php

debug_shell.php in PublishPress Permissions: Access Control, Content Permissions, User Access trunk, at library/debug_shell.php

37 lines 694 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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