2011-11-27 12:46:10 +01:00
|
|
|
<?php
|
|
|
|
namespace wcf\system\menu\page;
|
2011-12-15 10:54:18 +01:00
|
|
|
use \wcf\data\chat\room\ChatRoom;
|
2011-11-27 12:46:10 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* PageMenuItemProvider for chat.
|
|
|
|
*
|
|
|
|
* @author Tim Düsterhus
|
2012-01-28 17:50:33 +01:00
|
|
|
* @copyright 2010-2012 Tim Düsterhus
|
2011-11-27 12:46:10 +01:00
|
|
|
* @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 {
|
2011-12-15 10:54:18 +01:00
|
|
|
protected $room = null;
|
|
|
|
|
2011-11-27 12:46:10 +01:00
|
|
|
/**
|
|
|
|
* Hides the button when there is no valid room
|
|
|
|
*
|
2012-02-26 17:55:44 +01:00
|
|
|
* @see \wcf\system\menu\page\PageMenuItemProvider::isVisible()
|
2011-11-27 12:46:10 +01:00
|
|
|
*/
|
|
|
|
public function isVisible() {
|
2011-11-27 20:01:28 +01:00
|
|
|
// guests are not supported
|
2011-11-29 16:57:44 +01:00
|
|
|
if (!\wcf\system\WCF::getUser()->userID) return false;
|
2011-11-27 20:01:28 +01:00
|
|
|
|
2011-11-27 12:46:10 +01:00
|
|
|
try {
|
2011-12-15 17:14:55 +01:00
|
|
|
$cache = ChatRoom::getCache();
|
2011-12-26 12:43:19 +01:00
|
|
|
$i = 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
$cache->seek($i++);
|
2012-01-03 13:10:46 +01:00
|
|
|
$this->room = $cache->current();
|
2011-12-26 12:43:19 +01:00
|
|
|
}
|
|
|
|
while (!$this->room->canEnter());
|
|
|
|
|
2011-11-27 12:46:10 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch (\OutOfBoundsException $e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2011-12-15 10:54:18 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Modifies the link to show the Link we would be redirect to.
|
|
|
|
*
|
2012-02-26 17:55:44 +01:00
|
|
|
* @see \wcf\system\menu\page\PageMenuItemProvider::getLink()
|
2011-12-15 10:54:18 +01:00
|
|
|
*/
|
|
|
|
public function getLink() {
|
2011-12-15 17:14:55 +01:00
|
|
|
return \wcf\system\request\LinkHandler::getInstance()->getLink('Chat', array(
|
|
|
|
'object' => $this->room
|
|
|
|
));
|
2011-12-15 10:54:18 +01:00
|
|
|
}
|
2011-11-27 12:46:10 +01:00
|
|
|
}
|