Debug_Bar_Pretty_Output::ooutput PHP Метод

ooutput() публичный статический Метод

Outputs properties in a table and methods in an unordered list.
Устаревший: since v1.3 in favour of get_ooutput().
public static ooutput ( object $obj, string $deprecated = null, boolean $is_sub = false ) : void
$obj object Object for which to show the properties and methods.
$deprecated string ==Deprecated argument.
$is_sub boolean (internal) Top level or nested object.
Результат void
        public static function ooutput($obj, $deprecated = null, $is_sub = false)
        {
            _deprecated_function(__CLASS__ . '::' . __METHOD__, __CLASS__ . ' 1.3', __CLASS__ . '::get_ooutput() ' . esc_html__('or even better: upgrade your Debug Bar plugins to their current version', 'db-pretty-output'));
            echo self::get_ooutput($obj, $is_sub);
            // WPCS: xss ok.
        }