1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-11-01 14:20:07 +00:00
Tims-Chat/file/lib/system/menu/page/ChatPageMenuItemProvider.class.php
Tim Düsterhus dbd4e7b849 Adding ACL-Administration
plus correcting comments and fixing unload handler
2012-02-26 17:55:44 +01:00

54 lines
1.2 KiB
PHP

<?php
namespace wcf\system\menu\page;
use \wcf\data\chat\room\ChatRoom;
/**
* PageMenuItemProvider for chat.
*
* @author Tim Düsterhus
* @copyright 2010-2012 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;
/**
* Hides the button when there is no valid room
*
* @see \wcf\system\menu\page\PageMenuItemProvider::isVisible()
*/
public function isVisible() {
// guests are not supported
if (!\wcf\system\WCF::getUser()->userID) return false;
try {
$cache = ChatRoom::getCache();
$i = 0;
do {
$cache->seek($i++);
$this->room = $cache->current();
}
while (!$this->room->canEnter());
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() {
return \wcf\system\request\LinkHandler::getInstance()->getLink('Chat', array(
'object' => $this->room
));
}
}