Jetpack::stat PHP Method

stat() public method

Record a stat for later output. This will only currently output in the admin_footer.
public stat ( $group, $detail )
    function stat($group, $detail)
    {
        if (!isset($this->stats[$group])) {
            $this->stats[$group] = array();
        }
        $this->stats[$group][] = $detail;
    }
Jetpack