1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-12-23 21:50:09 +00:00
Tims-Chat/file/lib/system/menu/page/ChatPageMenuItemProvider.class.php

47 lines
1.2 KiB
PHP
Raw Normal View History

2011-11-27 11:46:10 +00:00
<?php
namespace wcf\system\menu\page;
use \wcf\data\chat\room\ChatRoom;
2011-11-27 11:46:10 +00:00
/**
* PageMenuItemProvider for chat.
*
* @author Tim Düsterhus
* @copyright 2010-2011 Tim Düsterhus
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
* @package timwolla.wcf.chat
* @subpackage system.menu.page
*/
class ChatPageMenuItemProvider extends DefaultPageMenuItemProvider {
protected $room = null;
2011-11-27 11:46:10 +00:00
/**
* Hides the button when there is no valid room
*
* @see \wcf\system\menu\page\PageMenuItemProvider::isVisible()
2011-11-27 11:46:10 +00:00
*/
public function isVisible() {
// guests are not supported
if (!\wcf\system\WCF::getUser()->userID) return false;
2011-11-27 11:46:10 +00:00
try {
ChatRoom::getCache()->seek(0);
2011-11-27 11:46:10 +00:00
return true;
}
catch (\OutOfBoundsException $e) {
return false;
}
}
/**
* Modifies the link to show the Link we would be redirect to.
*
* @see \wcf\system\menu\page\PageMenuItemProvider::getLink()
*/
public function getLink() {
if (!$this->isVisible()) return parent::getLink();
return \wcf\util\HeaderUtil::redirect(\wcf\system\request\LinkHandler::getInstance()->getLink('Chat', array(
'object' => ChatRoom::getCache()->search(ChatRoom::getCache()->key())
)));
}
2011-11-27 11:46:10 +00:00
}