<?php
if(!defined("IN_MYBB"))
{
    die("You Cannot Access This File Directly. Please Make Sure IN_MYBB Is Defined.");
}

$plugins->add_hook("global_start", "timeonlinee_show");

function timeonlinee_info()
{
    global $mybb, $db, $lang;

    return array(
        'name'          => 'Time Online',
        'description'   => 'Show user\'s online time',
        'website'       => 'http://mybboard.pl',
        'author'        => 'Divir',
        'authorsite'    => 'http://imm.xaa.pl',
        'version'       => '1.0',
        'guid'          => '',
        'codename'      => '',
        'compatibility' => '18*'
    );
}

function timeonlinee_activate()
{
}


function timeonlinee_deactivate()
{
}

function timeonlinee_show()
{
    global $mybb, $timee;

    $timee = nice_time($mybb->user['timeonline']);
}

?>
