* @revision 01 * @license http://creativecommons.org/licenses/by-sa/3.0/de/ Creative Commons Attribution-Share Alike 3.0 Germany * @homepage http://oss.tiggerswelt.net/oscar/ * @copyright Copyright © 2009 tiggersWelt.net */ require_once ("oscar/tlv/helper/u32.php"); class Oscar_TLV_NickInfo_OnlineTime extends Oscar_TLV_Helper_u32 { /* Type of this TLV */ const TYPE = 0x000F; // {{{ toString /** * Generate a human readable string from this TLV * * @access public * @return string **/ public function toString () { return parent::toString () . " Online since " . $this->Value . " sec. (" . date ("d.m.Y H:i:s", time () - $this->Value) . ")"; } // }}} } Oscar_TLV::classAdd ("NICK_INFO_TAGS", "Oscar_TLV_NickInfo_OnlineTime"); ?>