Ataino Consolelog Output

By : unknown

This is Development support tool. it's easy to use.

Place

<?php
    $myout = new ataino_console();
    $myout->log( $variable, $variable, more variable );
?>

in your templates. $variable is text,Array,Object.

example

output the Character.

<?php
    $myout = new ataino_console();
    $myout->log( "Hello World." );
?>

output the Array or Object.

<?php
    $myout = new ataino_console();
    $myout->log( get_queried_object( $args ) );
?>

output the Array or Object in table.

<?php
    $myout = new ataino_console();
    $myout->table( get_queried_object( $args ) );
?>

output the Array or Object by json.

<?php
    $myout = new ataino_console();
    $myout->json( get_queried_object( $args ) );
?>

output the how long time an operation takes. time and timeEnd methods.

<?php
    $myout = new ataino_console();
    $myout->time();
        /* processing */
    $myout->timeEnd();
?>

Apply css styling. Result is different by the browser. check example.

check browsers.

Chrome 41.0+, FireFox(Firebug) 36.0+, IE 8.0+(non table), Safari 5.0+, Opera 28.0+

WP Log in Browser

I'm working on a nice admin screen to config auto-logging of some common things (like wp_query in pre_get_posts and wp), and some other goodies. To log things manually, you can use: browser()->log ( $var, $label ); browser()->warn ( $var, $label ); browser()->info ( $var, $label ); br.........

Similar: 50%

Debug Bar Console

Adds a PHP/MySQL console to the debug bar. Requires the Debug Bar plugin (v0.5 or later)....

Similar: 50%

Debuggify | Debug the web

Debuggify helps to understand whether something is going wrong when users using your website. It gives detailed overview of a problem and also how many users affected by that problem....

Similar: 40%

Console

Debug PHP variables in the JavaScript console (Chrome & Firebug). Use instead of PHP's native var_dump() function. Usage: <?php console( $var ); ?> You can also tag a variable; Usage: <?php console( $var, $tag ); ?>. Debug with Krumo: <?php console( $var, $tag, true ); ?>. .........

Similar: 29%

JK Development Console

This is the easiest way to add custom css and/or javascript to your site. Two large windows with css and javascript syntax highlighting makes it super easy to read and write code. JK Development console also uses AJAX to save the css and javascript data - meaning that the page won't reload and you c.........

Similar: 29%

WpDevTool

WpDevTool implements many useful functions for WordPress Developers such as: Maintenance mode: Return a HTTP RESPONSE 503 (Service Temporary Unavailable) Under Maintenance landing page Debug bar: A simple bar which show number of query, timing and memory of current page Enable error display and lo.........

Similar: 25%

WordPress Logger

Display log messages from PHP in the browser console in Safari, Firefox (with firebug), and Opera (with the new Dragonfly debugging environment). Essential debugging tool for plugin and theme developers. You no longer have to use 'print_r' statements from PHP to figure out what is going on in the c.........

Similar: 19%

Hikari Hooks Troubleshooter

Hikari Hooks Troubleshooter creates a draggable window with informations about WordPress hooks. It lists all hooks (actions and filters) that have at least a function hooked to them, and for each hook there's a list of hooked functions, sorted by priority! The window is visible only to registered u.........

Similar: 12%

BugFu Console Debugger

BugFu lets you log from PHP directly to your Browser JavaScript Console - Meant as an aid to those practicing the ancient art of debugging - HOW TO CHECK IF BUGFU IS WORKING Open your browser console, if you see this header, BugFu is working properly ################################ #### BugFu Co.........

Similar: 11%

TransitArt

Notice that this is only, a demo. For more info and functionalites visit: transitart.io This plugin is a part of TransitArt project. It enables easy publishing of public transport timetables. Data can be presented as timetables or journey planner. There is included demo data for the following citi.........

Similar: 4%