Ataino Consolelog Output

Output variable in your Web browser console.

Author:kanetamaru@ishii (profile at wordpress.org)
WordPress version required:4.1
WordPress version tested:1.03
Plugin version:1.03
Added to WordPress repository:25-03-2015
Last updated:18-04-2015
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:0
Rated by:0
Plugin URI:https://twitter.com/kyanetamaru
Total downloads:463
Active installs:10+
plugin download
Click to start download

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+