Inheritance diagram for ilObjChatGUI:
Collaboration diagram for ilObjChatGUI:Definition at line 38 of file class.ilObjChatGUI.php.
| ilObjChatGUI::__exportRooms | ( | ) |
Definition at line 1736 of file class.ilObjChatGUI.php.
References $_POST, $file_obj, $id, ilUtil::deliverFile(), and export().
Referenced by adminRoomsObject().
{
include_once "chat/classes/class.ilFileDataChat.php";
if(count($_POST["del_id"]) == 1)
{
$this->object->chat_room->setRoomId($_POST["del_id"][0]);
$this->export();
}
$file_obj =& new ilFileDataChat($this->object);
foreach($_POST["del_id"] as $id)
{
$this->object->chat_room->setRoomId((int) $id);
$tmp_tpl =& new ilTemplate("tpl.chat_export.html",true,true,"chat");
if($id)
{
$tmp_tpl->setVariable("CHAT_NAME",$this->object->chat_room->getTitle());
}
else
{
$tmp_tpl->setVariable("CHAT_NAME",$this->object->getTitle());
}
$tmp_tpl->setVariable("CHAT_DATE",strftime("%c",time()));
$tmp_tpl->setVariable("CONTENT",$this->object->chat_room->getAllMessages());
$file_obj->addFile("chat_".$this->object->chat_room->getRoomId().".html",$tmp_tpl->get());
}
$fname = $file_obj->zip();
ilUtil::deliverFile($fname,"ilias_chat.zip");
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjChatGUI::__formatMessage | ( | ) |
Definition at line 1644 of file class.ilObjChatGUI.php.
References $_GET, $_POST, $_SESSION, and ilObjectGUI::$tpl.
Referenced by emptyRoom(), and input().
{
$tpl = new ilTemplate("tpl.chat_message.html",true,true,true);
$_POST['message'] = htmlentities(trim($_POST['message']),ENT_COMPAT,'utf-8');
$tpl->setVariable("MESSAGE",$_POST["message"]);
$tpl->setVariable("FONT_COLOR",$_POST["color"]);
$tpl->setVariable("FONT_FACE",$_POST["type"]);
if($_GET["p_id"])
{
$user_obj =& new ilObjUser((int) $_SESSION["AccountId"]);
$user_obj->read();
$tpl->setCurrentBlock("private");
$tpl->setVariable("PRIVATE_U_COLOR","red");
$tpl->setVariable("PRIVATE_FROM",$user_obj->getLogin());
$user_obj =& new ilObjUser((int) $_GET["p_id"]);
$user_obj->read();
$tpl->setVariable("PRIVATE_TO",$user_obj->getLogin());
$tpl->parseCurrentBlock();
}
else if($_GET["a_id"])
{
$tpl->setCurrentBlock("address");
$tpl->setVariable("ADDRESS_FROM_COLOR","navy");
$user_obj =& new ilObjUser((int) $_SESSION["AccountId"]);
$user_obj->read();
$tpl->setVariable("ADDRESS_FROM",$user_obj->getLogin());
$tpl->setVariable("ADDRESS_TO_COLOR","red");
$user_obj =& new ilObjUser((int) $_GET["a_id"]);
$user_obj->read();
$tpl->setVariable("ADDRESS_TO",$user_obj->getLogin());
$tpl->parseCurrentBlock();
}
else
{
$tpl->setCurrentBlock("normal");
$tpl->setVariable("NORMAL_U_COLOR","navy");
$tpl->setVariable("NORMAL_UNAME",$this->object->chat_user->getLogin());
$tpl->parseCurrentBlock();
}
// OPEN TAGS
if($_POST["face"])
{
foreach($_POST["face"] as $face)
{
$tpl->setCurrentBlock("type_open");
switch($face)
{
case "bold":
$tpl->setVariable("TYPE_TYPE_O","b");
break;
case "italic":
$tpl->setVariable("TYPE_TYPE_O","i");
break;
case "underlined":
$tpl->setVariable("TYPE_TYPE_O","u");
break;
}
$tpl->parseCurrentBlock();
}
$_POST["face"] = array_reverse($_POST["face"]);
foreach($_POST["face"] as $face)
{
$tpl->setCurrentBlock("type_close");
switch($face)
{
case "bold":
$tpl->setVariable("TYPE_TYPE_C","b");
break;
case "italic":
$tpl->setVariable("TYPE_TYPE_C","i");
break;
case "underlined":
$tpl->setVariable("TYPE_TYPE_C","u");
break;
}
$tpl->parseCurrentBlock();
}
}
$message = preg_replace("/\r/","",$tpl->get());
$message = preg_replace("/\n/","",$message);
return $message;
}
Here is the caller graph for this function:| ilObjChatGUI::__getColorSelect | ( | ) |
Definition at line 1578 of file class.ilObjChatGUI.php.
References $_POST, and formSelect().
Referenced by showInputFrame().
{
$colors = array("black" => $this->lng->txt("chat_black"),
"red" => $this->lng->txt("chat_red"),
"green" => $this->lng->txt("chat_green"),
"maroon" => $this->lng->txt("chat_maroon"),
"olive" => $this->lng->txt("chat_olive"),
"navy" => $this->lng->txt("chat_navy"),
"purple" => $this->lng->txt("chat_purple"),
"teal" => $this->lng->txt("chat_teal"),
"silver" => $this->lng->txt("chat_silver"),
"gray" => $this->lng->txt("chat_gray"),
"lime" => $this->lng->txt("chat_lime"),
"yellow" => $this->lng->txt("chat_yellow"),
"fuchsia" => $this->lng->txt("chat_fuchsia"),
"aqua" => $this->lng->txt("chat_aqua"),
"blue" => $this->lng->txt("chat_blue"));
return ilUtil::formSelect($_POST["color"],"color",$colors,false,true);
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjChatGUI::__getFontFace | ( | ) |
Definition at line 1617 of file class.ilObjChatGUI.php.
References $_POST.
Referenced by showInputFrame().
{
$_POST["face"] = is_array($_POST["face"]) ? $_POST["face"] : array();
$types = array("bold" => $this->lng->txt("chat_bold"),
"italic" => $this->lng->txt("chat_italic"),
"underlined" => $this->lng->txt("chat_underlined"));
$this->tpl->setCurrentBlock("FONT_FACES");
$this->tpl->setVariable("BL_TXT_FACE","<b>".$this->lng->txt("chat_bold")."</b>");
$this->tpl->setVariable("FONT_FACE","bold");
$this->tpl->setVariable("FACE_CHECKED",in_array("bold",$_POST["face"]) ? "checked=\"checked\"" : "");
$this->tpl->parseCurrentBlock();
$this->tpl->setCurrentBlock("FONT_FACES");
$this->tpl->setVariable("BL_TXT_FACE","<i>".$this->lng->txt("chat_italic")."</i>");
$this->tpl->setVariable("FONT_FACE","italic");
$this->tpl->setVariable("FACE_CHECKED",in_array("italic",$_POST["face"]) ? "checked=\"checked\"" : "");
$this->tpl->parseCurrentBlock();
$this->tpl->setCurrentBlock("FONT_FACES");
$this->tpl->setVariable("BL_TXT_FACE","<u>".$this->lng->txt("chat_underlined")."</u>");
$this->tpl->setVariable("FONT_FACE","underlined");
$this->tpl->setVariable("FACE_CHECKED",in_array("underlined",$_POST["face"]) ? "checked=\"checked\"" : "");
$this->tpl->parseCurrentBlock();
}
Here is the caller graph for this function:| ilObjChatGUI::__getFontType | ( | ) |
Definition at line 1599 of file class.ilObjChatGUI.php.
Referenced by showInputFrame().
{
$types = array("times" => $this->lng->txt("chat_times"),
"tahoma" => $this->lng->txt("chat_tahoma"),
"arial" => $this->lng->txt("chat_arial"));
$_POST["type"] = $_POST["type"] ? $_POST["type"] : "times";
foreach($types as $name => $type)
{
$this->tpl->setCurrentBlock("FONT_TYPES");
$this->tpl->setVariable("BL_TXT_TYPE",$type);
$this->tpl->setVariable("FONT_TYPE",$name);
$this->tpl->setVariable("TYPE_CHECKED",$_POST["type"] == $name ? "checked=\"checked\"" : "");
$this->tpl->parseCurrentBlock();
}
}
Here is the caller graph for this function:| ilObjChatGUI::__loadStylesheet | ( | $ | expires = false |
) |
Definition at line 1566 of file class.ilObjChatGUI.php.
References ilUtil::getStyleSheetLocation().
Referenced by closeFrame(), showInputFrame(), showRightFrame(), showTopFrame(), and showUserFrame().
{
$this->tpl->setCurrentBlock("ChatStyle");
$this->tpl->setVariable("LOCATION_CHAT_STYLESHEET",ilUtil::getStyleSheetLocation());
if($expires)
{
$this->tpl->setVariable("EXPIRES","<meta http-equiv=\"expires\" content=\"now\">".
"<meta http-equiv=\"refresh\" content=\"30\">");
}
$this->tpl->parseCurrentBlock();
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjChatGUI::__prepareOutput | ( | ) |
Definition at line 1812 of file class.ilObjChatGUI.php.
References __setHeader(), __setLocator(), infoPanel(), and sendInfo().
Referenced by executeCommand().
{
// output objects
$this->tpl->addBlockFile("CONTENT", "content", "tpl.chat.html",'chat');
$this->tpl->addBlockFile("STATUSLINE", "statusline", "tpl.statusline.html");
// output locator
$this->__setLocator();
// output message
if ($this->message)
{
sendInfo($this->message);
}
// display infopanel if something happened
infoPanel();
// set header
$this->__setHeader();
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjChatGUI::__setHeader | ( | ) |
Definition at line 1834 of file class.ilObjChatGUI.php.
References getTabs().
Referenced by __prepareOutput().
{
include_once './classes/class.ilTabsGUI.php';
$this->tpl->setVariable("HEADER",$this->object->getTitle());
$this->tpl->setVariable("H_DESCRIPTION",$this->object->getDescription());
$tabs_gui =& new ilTabsGUI();
$this->getTabs($tabs_gui);
// output tabs
$this->tpl->setVariable("TABS", $tabs_gui->getHTML());
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjChatGUI::__setLocator | ( | ) |
Definition at line 1848 of file class.ilObjChatGUI.php.
References $counter, $ilias_locator, $row, and ilObjectGUI::$tree.
Referenced by __prepareOutput().
{
global $tree;
global $ilias_locator;
$this->tpl->addBlockFile("LOCATOR", "locator", "tpl.locator.html");
$counter = 0;
foreach ($tree->getPathFull($this->object->getRefId()) as $key => $row)
{
if($counter++)
{
$this->tpl->touchBlock('locator_separator_prefix');
}
$this->tpl->setCurrentBlock("locator_item");
if($row["type"] == 'chat')
{
$this->tpl->setVariable("ITEM",$this->object->getTitle());
$this->tpl->setVariable("LINK_ITEM",$this->ctrl->getLinkTarget($this));
}
elseif ($row["child"] != $tree->getRootId())
{
$this->tpl->setVariable("ITEM", $row["title"]);
$this->tpl->setVariable("LINK_ITEM","repository.php?ref_id=".$row["child"]);
}
else
{
$this->tpl->setVariable("ITEM", $this->lng->txt("repository"));
$this->tpl->setVariable("LINK_ITEM","repository.php?ref_id=".$row["child"]);
}
$this->tpl->parseCurrentBlock();
}
$this->tpl->setVariable("TXT_LOCATOR",$this->lng->txt("locator"));
$this->tpl->parseCurrentBlock();
}
Here is the caller graph for this function:| ilObjChatGUI::__showActiveUsers | ( | ) |
Definition at line 1298 of file class.ilObjChatGUI.php.
References $_GET, $_REQUEST, $_SESSION, $rbacsystem, $user, $users, and ilUtil::getImagePath().
Referenced by showUserFrame().
{
global $rbacsystem;
if(isset($_GET["a_users"]))
{
if($_GET["a_users"])
{
$_SESSION["a_users"] = true;
}
else
{
$_SESSION["a_users"] = 0;
unset($_SESSION["a_users"]);
}
}
$hide = $_SESSION["a_users"] ? true : false;
$this->tpl->setVariable("ACTIVE_USERS",$this->lng->txt("chat_active_users"));
$this->tpl->setVariable("DETAILS_B_TXT",$hide ? $this->lng->txt("chat_show_details") : $this->lng->txt("chat_hide_details"));
$this->tpl->setVariable("DETAILS_B","chat.php?ref_id=".$this->object->getRefId().
"&room_id=".$this->object->chat_room->getRoomId().
"&a_users=".($hide ? 0 : 1)."&cmd=showUserFrame");
if($hide)
{
return true;
}
$users = $this->object->chat_room->getActiveUsers();
if(count($users) <= 1)
{
$this->tpl->setCurrentBlock("no_actice");
$this->tpl->setVariable("NO_ACTIVE_USERS",$this->lng->txt("chat_no_active_users"));
$this->tpl->parseCurrentBlock();
}
else
{
$user_obj =& new ilObjUser();
foreach($users as $user)
{
if($user == $_SESSION["AccountId"])
{
continue;
}
$user_obj->setId($user);
$user_obj->read();
if($rbacsystem->checkAccess('chat_moderate',$this->object->getRefId()) and !$_REQUEST['room_id'])
{
$this->tpl->setCurrentBlock("moderate");
if($this->object->chat_room->isKicked($user_obj->getId()))
{
$this->tpl->setVariable("MOD_INVITE_IMG_SRC",ilUtil::getImagePath('plus.gif',true));
$this->tpl->setVariable("MOD_TXT_INVITE_USER",$this->lng->txt('chat_unkick_user_session'));
$this->tpl->setVariable("MOD_ONLINE_LINK_A","chat.php?cmd=unkickUser&ref_id=".$this->ref_id.
"&kick_id=".$user_obj->getId());
}
else
{
$this->tpl->setVariable("MOD_INVITE_IMG_SRC",ilUtil::getImagePath('minus.gif',true));
$this->tpl->setVariable("MOD_TXT_INVITE_USER",$this->lng->txt('chat_kick_user_session'));
$this->tpl->setVariable("MOD_ONLINE_LINK_A","chat.php?cmd=kickUser&ref_id=".$this->ref_id.
"&kick_id=".$user_obj->getId());
}
$this->tpl->setVariable("MOD_ONLINE_USER_NAME_A",$user_obj->getLogin());
$this->tpl->parseCurrentBlock();
}
else
{
$this->tpl->setCurrentBlock("non_moderate");
if ($_GET["p_id"] == $user ||
$_GET["a_id"] == $user)
{
$this->tpl->setVariable("ACTIVE_FONT_A","smallred");
}
else
{
$this->tpl->setVariable("ACTIVE_FONT_A","small");
}
$this->tpl->setVariable("ACTIVE_USER_NAME_A",$user_obj->getLogin());
$this->tpl->parseCurrentBlock();
}
if($user_obj->getPref('public_profile') == 'y')
{
$this->tpl->setVariable("ACTIVE_ROW_TXT_PROFILE",$this->lng->txt("chat_profile"));
$this->tpl->setVariable("ACTIVE_ROW_PROFILE_ID",$user_obj->getId());
}
/*
if(!$_REQUEST['room_id'] and $rbacsystem->checkAccess('chat_moderate',$this->object->getRefId()))
{
$this->tpl->setCurrentBlock("kick_user");
$this->tpl->setVariable("KICK_LINK","chat.php?cmd=kickUser&ref_id=".$this->ref_id."&kick_id=".$user);
$this->tpl->setVariable("TXT_KICK",$this->lng->txt('chat_kick'));
$this->tpl->parseCurrentBlock();
}
*/
$this->tpl->setCurrentBlock("active");
$this->tpl->setVariable("ACTIVE_ADDRESS_A","chat.php?cmd=showInputFrame&".
"ref_id=".$this->ref_id."&room_id=".
$_REQUEST["room_id"]."&a_id=".$user);
$this->tpl->setVariable("ACTIVE_TXT_ADDRESS_A",$this->lng->txt("chat_address"));
$this->tpl->setVariable("ACTIVE_LINK_A","chat.php?cmd=showInputFrame&".
"ref_id=".$this->ref_id."&room_id=".
$_REQUEST["room_id"]."&p_id=".$user);
$this->tpl->setVariable("ACTIVE_TXT_WHISPER_A",$this->lng->txt("chat_whisper"));
$this->tpl->parseCurrentBlock();
}
}
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjChatGUI::__showAdminAddRoomSelect | ( | ) |
Definition at line 1413 of file class.ilObjChatGUI.php.
References formSelect().
Referenced by viewObject().
{
$opt = array("createRoom" => $this->lng->txt("chat_room_select"));
return ilUtil::formSelect("","action_b",$opt,false,true);
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjChatGUI::__showAdminRoomSelect | ( | ) |
Definition at line 1420 of file class.ilObjChatGUI.php.
References $_SESSION, $rbacsystem, and formSelect().
Referenced by viewObject().
{
global $rbacsystem;
$opt["exportRoom"] = $this->lng->txt("chat_html_export");
if($rbacsystem->checkAccess('write',$this->object->getRefId()) or
count($this->object->chat_room->getRoomsOfObject()))
{
$opt["refreshRoom"] = $this->lng->txt("chat_refresh");
}
if(count($this->object->chat_room->getRoomsOfObject()))
{
$opt["renameRoom"] = $this->lng->txt("rename");
$opt["deleteRoom"] = $this->lng->txt("delete");
}
return ilUtil::formSelect(isset($_SESSION["room_id_delete"]) ? "deleteRoom" : "",
"action",
$opt,
false,
true);
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjChatGUI::__showOnlineUsers | ( | ) |
Definition at line 1221 of file class.ilObjChatGUI.php.
References $_GET, $_REQUEST, $_SESSION, $cmd, $counter, $user, $users, ilChatBlockedUsers::_isBlocked(), and ilUtil::getImagePath().
Referenced by showUserFrame().
{
include_once 'chat/classes/class.ilChatBlockedUsers.php';
$all_users = $this->object->chat_room->getOnlineUsers();
// filter blocked users
$users = array();
foreach($all_users as $user)
{
if(!ilChatBlockedUsers::_isBlocked($this->object->getId(),$user['user_id']))
{
$users[] = $user;
}
}
if(count($users) <= 1)
{
$this->tpl->setCurrentBlock("no_actice");
$this->tpl->setVariable("NO_ONLINE_USERS",$this->lng->txt("chat_no_active_users"));
$this->tpl->parseCurrentBlock();
}
else
{
$counter = 0;
foreach($users as $user)
{
if($user["user_id"] == $_SESSION["AccountId"])
{
continue;
}
if(!($counter%2))
{
$this->tpl->touchBlock("online_row_start");
}
else
{
$this->tpl->touchBlock("online_row_end");
}
$this->tpl->setCurrentBlock("online");
if ($_GET["p_id"] == $user["user_id"] ||
$_GET["a_id"] == $user["user_id"])
{
$this->tpl->setVariable("ONLINE_FONT_A","smallred");
}
else
{
$this->tpl->setVariable("ONLINE_FONT_A","small");
}
if($this->object->chat_room->isInvited($user["user_id"]))
{
$img = "minus.gif";
$cmd = "drop";
}
else
{
$img = "plus.gif";
$cmd = "invite";
}
$this->tpl->setVariable("ONLINE_LINK_A","chat.php?cmd=".$cmd.
"&ref_id=".$this->ref_id."&room_id=".
$_REQUEST["room_id"]."&i_id=".$user["user_id"]);
$this->tpl->setVariable("TXT_INVITE_USER",$cmd == "invite" ? $this->lng->txt("chat_invite_user") :
$this->lng->txt("chat_drop_user"));
$this->tpl->setVariable("ONLINE_USER_NAME_A",$user["login"]);
$this->tpl->setVariable("INVITE_IMG_SRC",ilUtil::getImagePath($img,true));
$this->tpl->parseCurrentBlock();
$counter++;
}
}
$this->tpl->setCurrentBlock("show_online");
$this->tpl->setVariable("ONLINE_USERS",$this->lng->txt("chat_online_users"));
$this->tpl->parseCurrentBlock();
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjChatGUI::__showRooms | ( | ) |
Definition at line 1444 of file class.ilObjChatGUI.php.
References $_GET, $_SESSION, $ilUser, $rbacsystem, and ilChatBlockedUsers::_isBlocked().
Referenced by showUserFrame().
{
include_once 'chat/classes/class.ilChatBlockedUsers.php';
global $rbacsystem,$ilUser;
$public_rooms = $this->object->chat_room->getAllRooms();
$private_rooms = $this->object->chat_room->getRooms();
if(isset($_GET["h_rooms"]))
{
if($_GET["h_rooms"])
{
$_SESSION["h_rooms"] = true;
}
else
{
$_SESSION["h_rooms"] = 0;
unset($_SESSION["h_rooms"]);
}
}
$hide = $_SESSION["h_rooms"] ? true : false;
$this->tpl->setVariable("ROOMS_ROOMS",$this->lng->txt("chat_rooms"));
$this->tpl->setVariable("DETAILS_TXT",$hide ? $this->lng->txt("chat_show_details") : $this->lng->txt("chat_hide_details"));
$this->tpl->setVariable("ROOMS_COUNT",count($public_rooms) + count($private_rooms));
$this->tpl->setVariable("DETAILS_A","chat.php?ref_id=".$this->object->getRefId().
"&room_id=".$this->object->chat_room->getRoomId().
"&h_rooms=".($hide ? 0 : 1)."&cmd=showUserFrame");
if($hide)
{
return true;
}
$this->object->chat_record = new ilChatRecording();
$user_obj =& new ilObjUser();
foreach($public_rooms as $room)
{
if(ilChatBlockedUsers::_isBlocked($room['obj_id'],$ilUser->getId()))
{
continue;
}
$this->tpl->setCurrentBlock("room_row");
$this->tpl->setVariable("ROOM_ROW_CSS","tblrow1");
$this->tpl->setVariable("ROOM_LINK","chat.php?ref_id=".$room["child"]);
$this->tpl->setVariable("ROOM_TARGET","_top");
$this->tpl->setVariable("ROOM_NAME",$room["title"]);
$this->tpl->setVariable("ROOM_ONLINE",$this->object->chat_room->getCountActiveUser($room["child"],0));
$this->object->chat_record->setRefId($room["child"]);
if ($room["child"] == $this->object->getRefId() &&
$this->object->chat_room->getRoomId() == 0 &&
$rbacsystem->checkAccess("moderate", $this->object->getRefId()))
{
$this->tpl->setVariable("TXT_EMPTY_ROOM", $this->lng->txt("chat_empty"));
$this->tpl->setVariable("LINK_EMPTY_ROOM", "chat.php?cmd=emptyRoom&ref_id=".$room["child"]);
}
$this->object->chat_record->setRefId($room["child"]);
$this->object->chat_record->setRoomId(0);
if ($this->object->chat_record->isRecording())
{
$this->tpl->setVariable("TXT_RECORDING", $this->lng->txt("chat_recording_running"));
}
$this->tpl->parseCurrentBlock();
reset($private_rooms);
foreach($private_rooms as $priv_room)
{
if ($priv_room["chat_id"] == $room["child"])
{
$this->tpl->touchBlock("room_row_indent");
$this->tpl->setCurrentBlock("room_row");
$this->tpl->setVariable("ROOM_ROW_CSS","tblrow2");
$this->tpl->setVariable("ROOM_LINK","chat.php?ref_id=".$priv_room["chat_id"].
"&room_id=".$priv_room["room_id"]);
$this->tpl->setVariable("ROOM_TARGET","_top");
$this->tpl->setVariable("ROOM_NAME",$priv_room["title"]);
$this->tpl->setVariable("ROOM_ONLINE",
$this->object->chat_room->getCountActiveUser($priv_room["chat_id"],$priv_room["room_id"]));
if ($priv_room["owner"] != $_SESSION["AccountId"])
{
$user_obj->setId($priv_room["owner"]);
$user_obj->read();
$this->tpl->setVariable("TXT_ROOM_INVITATION", $this->lng->txt("chat_invited_by"));
$this->tpl->setVariable("ROOM_INVITATION_USER", $user_obj->getLogin());
}
else
{
$this->tpl->setVariable("TXT_DELETE_ROOM", $this->lng->txt("delete"));
$this->tpl->setVariable("LINK_DELETE_ROOM", "chat.php?cmd=deleteRoom&ref_id=".
$this->object->getRefId()."&room_id=".$this->object->chat_room->getRoomId().
"&room_id_delete=".$priv_room["room_id"]);
}
$this->object->chat_record->setRefId($priv_room["chat_id"]);
$this->object->chat_record->setRoomId($priv_room["room_id"]);
if ($this->object->chat_record->isRecording())
{
$this->tpl->setVariable("TXT_RECORDING", $this->lng->txt("chat_recording_running"));
}
if ($priv_room["chat_id"] == $this->object->getRefId() &&
$priv_room["room_id"] == $this->object->chat_room->getRoomId() &&
$rbacsystem->checkAccess("moderate", $this->object->getRefId()))
{
$this->tpl->setVariable("TXT_EMPTY_ROOM", $this->lng->txt("chat_empty"));
$this->tpl->setVariable("LINK_EMPTY_ROOM",
"chat.php?cmd=emptyRoom&ref_id=".$this->object->getRefId().
"&room_id=".$this->object->chat_room->getRoomId());
}
$this->tpl->parseCurrentBlock();
}
}
}
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjChatGUI::addRoom | ( | ) |
Definition at line 599 of file class.ilObjChatGUI.php.
References $_POST, $_SESSION, $rbacsystem, sendInfo(), showFrames(), and ilUtil::stripSlashes().
{
global $rbacsystem;
if (!$rbacsystem->checkAccess("read", $this->ref_id))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_read"),$this->ilias->error_obj->MESSAGE);
}
$room =& new ilChatRoom($this->ref_id);
$room->setTitle(ilUtil::stripSlashes($_POST["room_name"]));
$room->setOwnerId($_SESSION["AccountId"]);
if(!$room->validate())
{
$this->ilias->raiseError($room->getErrorMessage(),$this->ilias->error_obj->MESSAGE);
}
$room->add();
#$this->input_message = $this->lng->txt('chat_room_added');
sendInfo($this->lng->txt("chat_room_added"),true);
$this->showFrames();
}
Here is the call graph for this function:| ilObjChatGUI::addRoomObject | ( | ) |
Definition at line 622 of file class.ilObjChatGUI.php.
References $_POST, $_SESSION, $rbacsystem, sendInfo(), ilUtil::stripSlashes(), and viewObject().
{
global $rbacsystem;
if (!$rbacsystem->checkAccess("read", $this->ref_id))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_read"),$this->ilias->error_obj->MESSAGE);
}
$room =& new ilChatRoom($this->ref_id);
$room->setTitle(ilUtil::stripSlashes($_POST["room_name"]));
$room->setOwnerId($_SESSION["AccountId"]);
if(!$room->validate())
{
$this->ilias->raiseError($room->getErrorMessage(),$this->ilias->error_obj->MESSAGE);
}
$room->add();
sendInfo($this->lng->txt("chat_room_added"));
$this->viewObject();
return true;
#header("location: ".$this->getTargetScript("cmd=gateway&ref_id=".$this->ref_id));
#exit;
}
Here is the call graph for this function:| ilObjChatGUI::adminAddRoomObject | ( | ) |
Definition at line 674 of file class.ilObjChatGUI.php.
References $rbacsystem.
{
global $rbacsystem;
if (!$rbacsystem->checkAccess("read", $this->ref_id))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_read"),$this->ilias->error_obj->MESSAGE);
}
$this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.chat_edit_room.html","chat");
$this->tpl->setVariable("FORMACTION",$this->ctrl->getFormAction($this));
$this->tpl->setVariable("TXT_ROOM_NAME",$this->lng->txt("chat_room_name"));
$this->tpl->setVariable("ROOM_CANCEL",$this->lng->txt("cancel"));
$this->tpl->setVariable("TXT_EDIT_CHATROOMS",$this->lng->txt("chat_chatroom_rename"));
$this->tpl->setVariable("ROOM_NAME","");
$this->tpl->setVariable("CMD","addRoom");
$this->tpl->setVariable("ROOM_EDIT",$this->lng->txt("add"));
}
| ilObjChatGUI::adminRoomsObject | ( | ) |
Definition at line 434 of file class.ilObjChatGUI.php.
References $_POST, $_SESSION, $rbacsystem, __exportRooms(), sendInfo(), and viewObject().
{
global $rbacsystem;
if (!$rbacsystem->checkAccess("read", $this->ref_id))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_read"),$this->ilias->error_obj->MESSAGE);
}
if(!isset($_POST["del_id"]))
{
sendInfo($this->lng->txt("chat_select_one_room"));
$this->viewObject();
return false;
}
switch($_POST["action"])
{
case "renameRoom":
if(count($_POST["del_id"]) > 1)
{
sendInfo($this->lng->txt("chat_select_one_room"));
$this->viewObject();
return false;
}
if(in_array(0,$_POST["del_id"]))
{
sendInfo($this->lng->txt("chat_no_rename_public"));
$this->viewObject();
return false;
}
// STORE ID IN SESSION
$_SESSION["room_id_rename"] = (int) $_POST["del_id"][0];
$room =& new ilChatRoom($this->ref_id);
$room->setRoomId($_SESSION["room_id_rename"]);
$this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.chat_edit_room.html","chat");
$this->tpl->setVariable("FORMACTION",$this->ctrl->getFormAction($this));
$this->tpl->setVariable("TXT_ROOM_NAME",$this->lng->txt("chat_room_name"));
$this->tpl->setVariable("ROOM_CANCEL",$this->lng->txt("cancel"));
$this->tpl->setVariable("TXT_EDIT_CHATROOMS",$this->lng->txt("chat_chatroom_rename"));
$this->tpl->setVariable("ROOM_NAME",$room->getTitle());
$this->tpl->setVariable("CMD","renameRoom");
$this->tpl->setVariable("ROOM_EDIT",$this->lng->txt("rename"));
break;
case "deleteRoom":
if(in_array(0,$_POST["del_id"]))
{
sendInfo($this->lng->txt("chat_no_delete_public"));
$this->viewObject();
return false;
}
$_SESSION["room_id_delete"] = $_POST["del_id"];
$this->viewObject();
return true;
case "exportRoom":
$this->__exportRooms();
break;
case "refreshRoom":
if(in_array(0,$_POST["del_id"]) and !$rbacsystem->checkAccess('write',$this->object->getRefId()))
{
sendInfo($this->lng->txt("chat_no_refresh_public"));
$this->viewObject();
return true;
}
foreach($_POST["del_id"] as $room_id)
{
$this->object->chat_room->setRoomId($room_id);
$this->object->server_comm->setType("delete");
$this->object->server_comm->send();
$this->object->chat_room->deleteAllMessages();
}
sendInfo($this->lng->txt('chat_refreshed'));
$this->viewObject();
return true;
}
}
Here is the call graph for this function:| ilObjChatGUI::askDeleteRecordingsObject | ( | ) |
Definition at line 750 of file class.ilObjChatGUI.php.
References $_POST, $_SESSION, $counter, $rbacsystem, ilUtil::getImagePath(), recordingsObject(), sendInfo(), and ilUtil::switchColor().
{
global $rbacsystem;
if (!$rbacsystem->checkAccess("moderate", $this->object->getRefId()))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_read"),$this->ilias->error_obj->MESSAGE);
}
if(!is_array($_POST['recordings']))
{
sendInfo($this->lng->txt('chat_recordings_select_one'));
$this->recordingsObject();
return false;
}
$this->object->chat_record = new ilChatRecording($this->object->getRefId());
sendInfo($this->lng->txt('chat_recordings_delete_sure'));
$this->tpl->addBlockFile("ADM_CONTENT","adm_content","tpl.chat_ask_delete_recordings.html","chat");
$this->tpl->setVariable("FORMACTION",$this->ctrl->getFormAction($this));
$this->tpl->setVariable("TBL_TITLE",$this->lng->txt('chat_recordings'));
$this->tpl->setVariable("HEADER_DESC",$this->lng->txt('chat_recording_description'));
$this->tpl->setVariable("HEADER_MOD",$this->lng->txt('chat_recording_moderator'));
$this->tpl->setVariable("HEADER_TIME",$this->lng->txt('chat_recording_time_frame'));
$this->tpl->setVariable("IMG_ARROW",ilUtil::getImagePath('arrow_downright.gif'));
$this->tpl->setVariable("BTN_DELETE",$this->lng->txt('delete'));
$this->tpl->setVariable("BTN_CANCEL",$this->lng->txt('cancel'));
$counter = 0;
for ($i = 0; $i < count($_POST["recordings"]); $i++)
{
$this->object->chat_record->getRecord($_POST["recordings"][$i]);
$this->tpl->setCurrentBlock("recordings_row");
if($this->object->chat_record->getTitle() != "")
{
$this->tpl->setVariable("RECORDING_TITLE", $this->object->chat_record->getTitle());
}
if($this->object->chat_record->getDescription() != "")
{
$this->tpl->setVariable("RECORDING_DESCRIPTION", $this->object->chat_record->getDescription());
}
if (is_array($moderator = $this->object->chat_record->getModerator()))
{
$this->tpl->setVariable("MODERATOR", $moderator["login"]);
}
$this->tpl->setVariable("START_TIME", date("Y-m-d H:i:s", $this->object->chat_record->getStartTime()));
if ($this->object->chat_record->getEndTime() > 0)
{
$this->tpl->setVariable("END_TIME", date("Y-m-d H:i:s", $this->object->chat_record->getEndTime()));
}
$this->tpl->setVariable("ROW_CLASS",ilUtil::switchColor(++$counter,'tblrow1','tblrow2'));
$this->tpl->parseCurrentBlock();
}
$_SESSION['chat_recordings_del'] = $_POST['recordings'];
}
Here is the call graph for this function:| ilObjChatGUI::blockedUsersObject | ( | ) |
Definition at line 130 of file class.ilObjChatGUI.php.
References $rbacsystem, $tmp_user, ilUtil::formCheckbox(), and ilUtil::getImagePath().
Referenced by blockUserObject(), and unblockUsersObject().
{
include_once 'chat/classes/class.ilChatBlockedUsers.php';
global $rbacsystem;
if(!$rbacsystem->checkAccess('chat_moderate',$this->object->getRefId()))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_write"),$this->ilias->error_obj->MESSAGE);
}
$this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.chat_blocked_users.html","chat");
$blocked_obj = new ilChatBlockedUsers($this->object->getId());
if(!count($blocked = $blocked_obj->getBlockedUsers()))
{
$this->tpl->setVariable("MESSAGE_NO_BLOCKED",$this->lng->txt('chat_no_blocked'));
}
else
{
$this->tpl->setCurrentBlock("delete_blocked");
$this->tpl->setVariable("BTN_DELETE",$this->lng->txt('chat_blocked_unlocked'));
$this->tpl->setVariable("IMG_ARROW",ilUtil::getImagePath('arrow_downright.gif'));
$this->tpl->parseCurrentBlock();
}
foreach($blocked as $usr_id)
{
$tmp_user =& new ilObjUser($usr_id);
$this->tpl->setCurrentBlock("blocked_users");
$this->tpl->setVariable("FULLNAME",$tmp_user->getFullname());
$this->tpl->setVariable("LOGIN",$tmp_user->getLogin());
$this->tpl->setVariable("BLOCK_CHECK",ilUtil::formCheckbox(0,'blocked_check[]',$tmp_user->getId()));
$this->tpl->parseCurrentBlock();
}
// Fill table
$this->tpl->setVariable("FORMACTION",$this->ctrl->getFormAction($this));
$this->tpl->setVariable("TBL_TITLE_IMG",ilUtil::getImagePath('icon_usr_b.gif'));
$this->tpl->setVariable("TBL_TITLE_IMG_ALT",$this->lng->txt('chat_blocked_users'));
$this->tpl->setVariable("TBL_TITLE",$this->lng->txt('chat_blocked_users'));
$this->tpl->setVariable("HEADER_NAME",$this->lng->txt('chat_user_name'));
$this->tpl->setVariable("BTN_BLOCK",$this->lng->txt('chat_block_user'));
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjChatGUI::blockUserObject | ( | ) |
Definition at line 178 of file class.ilObjChatGUI.php.
References $_POST, $rbacsystem, blockedUsersObject(), ilObjUser::getUserIdByLogin(), and sendInfo().
{
include_once 'chat/classes/class.ilChatBlockedUsers.php';
global $rbacsystem;
if(!$rbacsystem->checkAccess('chat_moderate',$this->object->getRefId()))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_write"),$this->ilias->error_obj->MESSAGE);
}
$blocked_obj = new ilChatBlockedUsers($this->object->getId());
if(!$_POST['block'] or !($usr_id = ilObjUser::getUserIdByLogin($_POST['block'])))
{
sendInfo($this->lng->txt('chat_enter_valid_username'));
$this->blockedUsersObject();
return false;
}
if($blocked_obj->isBlocked($usr_id))
{
sendInfo($this->lng->txt('chat_user_already_blocked'));
$this->blockedUsersObject();
return false;
}
$blocked_obj->block($usr_id);
sendInfo($this->lng->txt('chat_user_blocked'));
$this->blockedUsersObject();
return true;
}
Here is the call graph for this function:| ilObjChatGUI::cancel | ( | ) |
Definition at line 1122 of file class.ilObjChatGUI.php.
References $_GET, and showInputFrame().
{
unset($_GET["p_id"]);
unset($_GET["a_id"]);
$this->showInputFrame();
}
Here is the call graph for this function:| ilObjChatGUI::cancelObject | ( | ) |
Definition at line 288 of file class.ilObjChatGUI.php.
References $_SESSION.
{
unset($_SESSION["room_id_rename"]);
unset($_SESSION["room_id_delete"]);
parent::cancelObject();
}
| ilObjChatGUI::closeFrame | ( | ) |
Definition at line 1194 of file class.ilObjChatGUI.php.
References __loadStylesheet(), and sendInfo().
{
$this->__loadStylesheet(true);
$this->tpl->addBlockFile("CONTENT", "content", "tpl.chat_close.html",true);
sendInfo("Your session is expired please login to ILIAS.");
$this->tpl->touchBlock("content");
}
Here is the call graph for this function:| ilObjChatGUI::confirmedDeleteRoomObject | ( | ) |
Definition at line 575 of file class.ilObjChatGUI.php.
References $_SESSION, $rbacsystem, sendInfo(), and viewObject().
{
global $rbacsystem;
if (!$rbacsystem->checkAccess("read", $this->ref_id))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_read"),$this->ilias->error_obj->MESSAGE);
}
if(!$_SESSION["room_id_delete"])
{
$this->ilias->raiseError($this->lng->txt("chat_select_one_room"),$this->ilias->error_obj->MESSAGE);
}
$this->object->chat_room->setOwnerId($_SESSION["AccountId"]);
if(!$this->object->chat_room->deleteRooms($_SESSION["room_id_delete"]))
{
$this->ilias->raiseError($this->object->chat_room->getErrorMessage(),$this->ilias->error_obj->MESSAGE);
}
unset($_SESSION["room_id_delete"]);
sendInfo($this->lng->txt("chat_rooms_deleted"));
$this->viewObject();
return true;
}
Here is the call graph for this function:| ilObjChatGUI::deleteRecordingsObject | ( | ) |
Definition at line 809 of file class.ilObjChatGUI.php.
References $_SESSION, $rbacsystem, recordingsObject(), and sendInfo().
{
global $rbacsystem;
if (!$rbacsystem->checkAccess("moderate", $this->object->getRefId()))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_read"),$this->ilias->error_obj->MESSAGE);
}
if(!is_array($_SESSION['chat_recordings_del']))
{
sendInfo($this->lng->txt('chat_recordings_none_selected'));
$this->recordingsObject();
return false;
}
$this->object->chat_record = new ilChatRecording($this->object->getRefId());
foreach($_SESSION['chat_recordings_del'] as $record_id)
{
$this->object->chat_record->delete($record_id);
}
sendInfo($this->lng->txt('chat_recordings_deleted'));
$this->recordingsObject();
unset($_SESSION['chat_recordings_del']);
return true;
}
Here is the call graph for this function:| ilObjChatGUI::deleteRoom | ( | ) |
Definition at line 544 of file class.ilObjChatGUI.php.
References $_GET, $_SESSION, $rbacsystem, sendInfo(), and showFrames().
{
global $rbacsystem;
if (!$rbacsystem->checkAccess("read", $this->ref_id))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_read"),$this->ilias->error_obj->MESSAGE);
}
if(!$_GET["room_id_delete"])
{
$this->ilias->raiseError($this->lng->txt("chat_select_one_room"),$this->ilias->error_obj->MESSAGE);
}
$this->object->chat_room->setOwnerId($_SESSION["AccountId"]);
$rooms = array($_GET["room_id_delete"]);
if (!$rbacsystem->checkAccess("write", $this->ref_id))
{
$delResult = $this->object->chat_room->deleteRooms($rooms, $this->object->chat_room->getOwnerId());
}
else
{
$delResult = $this->object->chat_room->deleteRooms($rooms);
}
if(!$delResult)
{
$this->ilias->raiseError($this->object->chat_room->getErrorMessage(),$this->ilias->error_obj->MESSAGE);
}
unset($_GET["room_id_delete"]);
sendInfo($this->lng->txt("chat_rooms_deleted"),true);
$this->showFrames();
}
Here is the call graph for this function:| ilObjChatGUI::drop | ( | ) |
Definition at line 1180 of file class.ilObjChatGUI.php.
References $_GET, $tmp_user, sendInfo(), and showFrames().
{
if($_GET["i_id"])
{
$this->object->chat_room->drop((int) $_GET["i_id"]);
$tmp_user =& new ilObjUser($_GET["i_id"]);
$this->object->server_comm->setKickedUser($tmp_user->getLogin());
$this->object->server_comm->setType("kick");
$this->object->server_comm->send();
sendInfo($this->lng->txt("chat_user_dropped"),true);
$this->showFrames();
}
}
Here is the call graph for this function:| ilObjChatGUI::emptyRoom | ( | ) |
Definition at line 526 of file class.ilObjChatGUI.php.
References $_GET, $rbacsystem, __formatMessage(), and showFrames().
{
global $rbacsystem;
if ($rbacsystem->checkAccess("moderate", $this->object->getRefId()) &&
$this->object->chat_room->checkWriteAccess())
{
$this->object->server_comm->setType('delete');
$message = $this->__formatMessage();
$this->object->server_comm->setMessage($message);
$this->object->server_comm->send();
$this->object->chat_room->deleteAllMessages();
}
unset($_GET["room_id_empty"]);
$this->showFrames();
}
Here is the call graph for this function:| & ilObjChatGUI::executeCommand | ( | ) |
execute command
Reimplemented from ilObjectGUI.
Definition at line 66 of file class.ilObjChatGUI.php.
References $cmd, $rbacsystem, and __prepareOutput().
{
global $rbacsystem;
if($this->ctrl->getTargetScript() == 'chat.php')
{
$this->__prepareOutput();
}
$next_class = $this->ctrl->getNextClass($this);
$cmd = $this->ctrl->getCmd();
switch($next_class)
{
default:
if(!$cmd)
{
$cmd = "view";
}
$cmd .= "Object";
$this->$cmd();
break;
}
return true;
}
Here is the call graph for this function:| ilObjChatGUI::export | ( | ) |
Definition at line 1202 of file class.ilObjChatGUI.php.
References ilUtil::deliverData(), and exit.
Referenced by __exportRooms().
{
$tmp_tpl =& new ilTemplate("tpl.chat_export.html",true,true,"chat");
if($this->object->chat_room->getRoomId())
{
$tmp_tpl->setVariable("CHAT_NAME",$this->object->chat_room->getTitle());
}
else
{
$tmp_tpl->setVariable("CHAT_NAME",$this->object->getTitle());
}
$tmp_tpl->setVariable("CHAT_DATE",strftime("%c",time()));
$tmp_tpl->setVariable("CONTENT",$this->object->chat_room->getAllMessages());
ilUtil::deliverData($tmp_tpl->get(),"1.html");
exit;
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjChatGUI::exportRecordingObject | ( | ) |
Definition at line 839 of file class.ilObjChatGUI.php.
References $_GET, $rbacsystem, ilUtil::deliverData(), exit, recordingsObject(), and sendInfo().
{
global $rbacsystem;
if (!$rbacsystem->checkAccess("moderate", $this->object->getRefId()))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_read"),$this->ilias->error_obj->MESSAGE);
}
$this->object->chat_record = new ilChatRecording($this->object->getRefId());
if (!$this->object->chat_record->getRecord($_GET["record_id"]) ||
$this->object->chat_record->getEndTime() == 0)
{
sendInfo($this->lng->txt('chat_recording_not_found'));
$this->recordingsObject();
return false;
}
$tmp_tpl =& new ilTemplate("tpl.chat_export_recording.html",true,true,"chat");
if($this->object->chat_record->getTitle())
{
$tmp_tpl->setVariable("TITLE",$this->object->chat_record->getTitle());
}
$tmp_tpl->setVariable("START_TIME",date("Y-m-d H:i:s", $this->object->chat_record->getStartTime()));
$tmp_tpl->setVariable("END_TIME",date("Y-m-d H:i:s", $this->object->chat_record->getEndTime()));
$tmp_tpl->setVariable("CONTENT",$this->object->chat_record->exportMessages());
ilUtil::deliverData($tmp_tpl->get(), "chat_recording_" . $_GET["record_id"] . ".html");
exit;
}
Here is the call graph for this function:| ilObjChatGUI::getTabs | ( | &$ | tabs_gui | ) |
get tabs public
| object | tabs gui object |
Reimplemented from ilObjectGUI.
Definition at line 1776 of file class.ilObjChatGUI.php.
References $rbacreview, and $rbacsystem.
Referenced by __setHeader().
{
global $rbacsystem,$rbacreview;
$this->ctrl->setParameter($this,"ref_id",$this->object->getRefId());
if($rbacsystem->checkAccess('read',$this->object->getRefId()))
{
$tabs_gui->addTarget("view_content",
$this->ctrl->getLinkTarget($this, "view"), "view", get_class($this));
}
if($rbacsystem->checkAccess('write',$this->object->getRefId()))
{
$tabs_gui->addTarget("edit_properties",
$this->ctrl->getLinkTarget($this, "edit"), "edit", get_class($this));
}
if($rbacsystem->checkAccess('chat_moderate',$this->object->getRefId()))
{
$tabs_gui->addTarget("chat_recordings",
$this->ctrl->getLinkTarget($this, "recordings"), "recordings", get_class($this));
}
if($rbacsystem->checkAccess('chat_moderate',$this->object->getRefId()))
{
$tabs_gui->addTarget("chat_blocked_users",
$this->ctrl->getLinkTarget($this, "blockedUsers"), "blockedUsers", get_class($this));
}
if($rbacsystem->checkAccess('edit_permission',$this->object->getRefId()))
{
$tabs_gui->addTarget("perm_settings",
$this->ctrl->getLinkTarget($this, "perm"), "perm", get_class($this));
}
}
Here is the caller graph for this function:| ilObjChatGUI::getTargetScript | ( | $ | a_params | ) |
Definition at line 98 of file class.ilObjChatGUI.php.
{
return $this->target_script."?".$a_params;
}
| ilObjChatGUI::ilObjChatGUI | ( | $ | a_data, | |
| $ | a_id, | |||
| $ | a_call_by_reference = true, |
|||
| $ | a_prepare_output = true | |||
| ) |
Constructor public.
Definition at line 47 of file class.ilObjChatGUI.php.
References $_SESSION, $ilCtrl, and ilObjectGUI::ilObjectGUI().
{
global $ilCtrl;
#define("ILIAS_MODULE","chat");
$this->type = "chat";
$this->ilObjectGUI($a_data,$a_id,$a_call_by_reference, $a_prepare_output);
$this->ctrl =& $ilCtrl;
$this->ctrl->saveParameter($this,array("ref_id","cmdClass"));
if(is_object($this->object->chat_user))
{
$this->object->chat_user->setUserId($_SESSION["AccountId"]);
}
}
Here is the call graph for this function:| ilObjChatGUI::inModule | ( | ) |
Definition at line 106 of file class.ilObjChatGUI.php.
Referenced by viewObject().
{
return $this->in_module;
}
Here is the caller graph for this function:| ilObjChatGUI::input | ( | ) |
Definition at line 1131 of file class.ilObjChatGUI.php.
References $_GET, $_POST, $_SESSION, __formatMessage(), sendInfo(), and showInputFrame().
{
$this->object->chat_room->setUserId($_SESSION["AccountId"]);
$this->object->chat_room->updateLastVisit();
if(!$_POST["message"])
{
sendInfo($this->lng->txt("chat_insert_message"),true);
return $this->showInputFrame();
}
if($_POST["message"] and $this->object->chat_room->checkWriteAccess())
{
// FORMAT MESSAGE
$message = $this->__formatMessage();
// SET MESSAGE AND SEND IT
$this->object->server_comm->setMessage($message);
if((int) $_GET["p_id"])
{
$this->object->server_comm->setType('private');
}
else if((int) $_GET["a_id"])
{
$this->object->server_comm->setType('address');
}
if(!$this->object->server_comm->send())
{
$this->error = $this->lng->txt("chat_no_connection");
}
}
else
{
sendInfo($this->lng->txt('chat_kicked_from_room'),true);
}
$this->showInputFrame();
}
Here is the call graph for this function:| ilObjChatGUI::invite | ( | ) |
Definition at line 1170 of file class.ilObjChatGUI.php.
References $_GET, sendInfo(), and showFrames().
{
if($_GET["i_id"])
{
$this->object->chat_room->invite((int) $_GET["i_id"]);
$this->object->sendMessage((int) $_GET["i_id"]);
sendInfo($this->lng->txt("chat_user_invited"),true);
$this->showFrames();
}
}
Here is the call graph for this function:| ilObjChatGUI::kickUser | ( | ) |
Definition at line 244 of file class.ilObjChatGUI.php.
References $_GET, $rbacsystem, $tmp_user, and showFrames().
{
global $rbacsystem;
if(!$rbacsystem->checkAccess('chat_moderate',$this->object->getRefId()))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_write"),$this->ilias->error_obj->MESSAGE);
}
if($_GET["kick_id"])
{
$tmp_user = new ilObjUser($_GET['kick_id']);
$this->object->server_comm->setKickedUser($tmp_user->getLogin());
$this->object->server_comm->setType("kick");
$this->object->server_comm->send();
$this->object->chat_room->setKicked((int)$_GET['kick_id']);
#sendInfo($this->lng->txt("chat_user_dropped"),true);
$this->showFrames();
}
}
Here is the call graph for this function:| ilObjChatGUI::recordingsObject | ( | ) |
Definition at line 694 of file class.ilObjChatGUI.php.
References $counter, ilObjectGUI::$data, $rbacsystem, ilUtil::formCheckbox(), ilUtil::getImagePath(), sendInfo(), and ilUtil::switchColor().
Referenced by askDeleteRecordingsObject(), deleteRecordingsObject(), and exportRecordingObject().
{
global $rbacsystem;
if (!$rbacsystem->checkAccess("moderate", $this->object->getRefId()))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_read"),$this->ilias->error_obj->MESSAGE);
}
$this->tpl->addBlockFile("ADM_CONTENT","adm_content","tpl.chat_recordings.html","chat");
$this->object->chat_record = new ilChatRecording($this->object->getRefId());
if (!is_array($data = $this->object->chat_record->getRecordings()))
{
sendInfo($this->lng->txt('chat_no_recordings_available'));
return true;
}
$this->tpl->setVariable("FORMACTION",$this->ctrl->getFormAction($this));
$this->tpl->setVariable("TBL_TITLE",$this->lng->txt('chat_recordings'));
$this->tpl->setVariable("HEADER_DESC",$this->lng->txt('chat_recording_description'));
$this->tpl->setVariable("HEADER_MOD",$this->lng->txt('chat_recording_moderator'));
$this->tpl->setVariable("HEADER_TIME",$this->lng->txt('chat_recording_time_frame'));
$this->tpl->setVariable("HEADER_ACTION",$this->lng->txt('chat_recording_action'));
$this->tpl->setVariable("IMG_ARROW",ilUtil::getImagePath('arrow_downright.gif'));
$this->tpl->setVariable("BTN_DELETE",$this->lng->txt('delete'));
$counter = 0;
for ($i = 0; $i < count($data); $i++)
{
$this->tpl->setCurrentBlock("recording_row");
$this->tpl->setVariable("CHECKBOX", ilUtil::formCheckbox(0,'recordings[]',$data[$i]["record_id"]));
if($data[$i]["title"] != "")
{
$this->tpl->setVariable("RECORDING_TITLE", $data[$i]["title"]);
}
if ($data[$i]["description"] != "")
{
$this->tpl->setVariable("RECORDING_DESCRIPTION", $data[$i]["description"]);
}
if (is_array($moderator = $this->object->chat_record->getModerator($data[$i]["moderator_id"])))
{
$this->tpl->setVariable("MODERATOR", $moderator["login"]);
}
$this->tpl->setVariable("START_TIME", date("Y-m-d H:i:s", $data[$i]["start_time"]));
if ($data[$i]["end_time"] > 0)
{
$this->tpl->setVariable("END_TIME", date("Y-m-d H:i:s", $data[$i]["end_time"]));
$this->ctrl->setParameter($this,'record_id',$data[$i]["record_id"]);
$this->tpl->setVariable("LINK_EXPORT",$this->ctrl->getLinkTarget($this,'exportRecording'));
$this->tpl->setVariable("TXT_EXPORT",$this->lng->txt('export'));
}
$this->tpl->setVariable("ROW_CLASS",ilUtil::switchColor(++$counter,'tblrow1','tblrow2'));
$this->tpl->parseCurrentBlock();
}
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjChatGUI::renameRoomObject | ( | ) |
Definition at line 647 of file class.ilObjChatGUI.php.
References $_POST, $_SESSION, $rbacsystem, sendInfo(), ilUtil::stripSlashes(), and viewObject().
{
global $rbacsystem;
if (!$rbacsystem->checkAccess("read", $this->ref_id))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_read"),$this->ilias->error_obj->MESSAGE);
}
$room =& new ilChatRoom($this->ref_id);
$room->setRoomId($_SESSION["room_id_rename"]);
$room->setTitle(ilUtil::stripSlashes($_POST["room_name"]));
if(!$room->validate())
{
$this->ilias->raiseError($room->getErrorMessage(),$this->ilias->error_obj->MESSAGE);
}
$room->rename();
unset($_SESSION["room_id_rename"]);
sendInfo($this->lng->txt("chat_room_renamed"));
$this->viewObject();
return true;
}
Here is the call graph for this function:| ilObjChatGUI::saveObject | ( | ) |
save object
public
Reimplemented from ilObjectGUI.
Definition at line 111 of file class.ilObjChatGUI.php.
References $ilUser, $rbacadmin, $roles, ilObjectGUI::getReturnLocation(), ilUtil::redirect(), and ilObjUser::updateActiveRoles().
{
global $ilUser,$rbacadmin;
$new_obj =& parent::saveObject();
// Add new moderator role
$roles = $new_obj->initDefaultRoles();
// Assign current user.
$rbacadmin->assignUser($roles[0],$ilUser->getId());
// Update active roles
ilObjUser::updateActiveRoles($ilUser->getId());
ilUtil::redirect($this->getReturnLocation("save","adm_object.php?ref_id=".$new_obj->getRefId()));
}
Here is the call graph for this function:| ilObjChatGUI::setInModule | ( | $ | in_module | ) |
Definition at line 102 of file class.ilObjChatGUI.php.
References $in_module.
{
$this->in_module = $in_module;
}
| ilObjChatGUI::setTargetScript | ( | $ | a_script | ) |
Definition at line 94 of file class.ilObjChatGUI.php.
{
$this->target_script = $a_script;
}
| ilObjChatGUI::showFrames | ( | ) |
Definition at line 918 of file class.ilObjChatGUI.php.
References $_GET, $_REQUEST, and $rbacsystem.
Referenced by addRoom(), deleteRoom(), drop(), emptyRoom(), invite(), kickUser(), startRecording(), stopRecording(), and unkickUser().
{
global $rbacsystem;
if (!$rbacsystem->checkAccess("read", $this->ref_id))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_read"),$this->ilias->error_obj->MESSAGE);
}
// LOAD FRAMESET
$this->tpl = new ilTemplate("tpl.chat_start.html",false,false,true);
if ($_GET["p_id"])
{
$this->tpl->setVariable("USER_TARGET","chat.php?cmd=showUserFrame&ref_id=".
$this->object->getRefId()."&room_id=".
$_REQUEST["room_id"]."&p_id=".$_GET["p_id"]);
$this->tpl->setVariable("TOP_TARGET","chat.php?cmd=showTopFrame&ref_id=".
$this->object->getRefId()."&room_id=".
$_REQUEST["room_id"]."&p_id=".$_GET["p_id"]);
$this->tpl->setVariable("INPUT_TARGET","chat.php?cmd=showInputFrame&ref_id=".
$this->object->getRefId()."&room_id=".
$_REQUEST["room_id"]."&p_id=".$_GET["p_id"]);
$this->tpl->setVariable("RIGHT_TARGET","chat.php?cmd=showRightFrame&ref_id=".
$this->object->getRefId()."&room_id=".
$_REQUEST["room_id"]."&p_id=".$_GET["p_id"]);
}
else if ($_GET["a_id"])
{
$this->tpl->setVariable("USER_TARGET","chat.php?cmd=showUserFrame&ref_id=".
$this->object->getRefId()."&room_id=".
$_REQUEST["room_id"]."&pa_id=".$_GET["a_id"]);
$this->tpl->setVariable("TOP_TARGET","chat.php?cmd=showTopFrame&ref_id=".
$this->object->getRefId()."&room_id=".
$_REQUEST["room_id"]."&a_id=".$_GET["a_id"]);
$this->tpl->setVariable("INPUT_TARGET","chat.php?cmd=showInputFrame&ref_id=".
$this->object->getRefId()."&room_id=".
$_REQUEST["room_id"]."&a_id=".$_GET["a_id"]);
$this->tpl->setVariable("RIGHT_TARGET","chat.php?cmd=showRightFrame&ref_id=".
$this->object->getRefId()."&room_id=".
$_REQUEST["room_id"]."&a_id=".$_GET["a_id"]);
}
else
{
$this->tpl->setVariable("USER_TARGET","chat.php?cmd=showUserFrame&ref_id=".
$this->object->getRefId()."&room_id=".
$_REQUEST["room_id"]);
$this->tpl->setVariable("TOP_TARGET","chat.php?cmd=showTopFrame&ref_id=".
$this->object->getRefId()."&room_id=".
$_REQUEST["room_id"]);
$this->tpl->setVariable("INPUT_TARGET","chat.php?cmd=showInputFrame&ref_id=".
$this->object->getRefId()."&room_id=".
$_REQUEST["room_id"]);
$this->tpl->setVariable("RIGHT_TARGET","chat.php?cmd=showRightFrame&ref_id=".
$this->object->getRefId()."&room_id=".
$_REQUEST["room_id"]);
}
$this->tpl->setVariable("SERVER_TARGET",$this->object->server_comm->getServerFrameSource());
}
Here is the caller graph for this function:| ilObjChatGUI::showInputFrame | ( | ) |
Definition at line 1012 of file class.ilObjChatGUI.php.
References $_GET, $_REQUEST, $rbacsystem, __getColorSelect(), __getFontFace(), __getFontType(), __loadStylesheet(), and sendInfo().
Referenced by cancel(), and input().
{
global $rbacsystem;
$this->__loadStylesheet();
$this->tpl->addBlockFile("CONTENT", "content", "tpl.chat_input_frame.html",true);
if($this->error)
{
sendInfo($this->error);
}
if($_GET["p_id"])
{
$user_obj =& new ilObjUser((int) $_GET["p_id"]);
$message = $this->lng->txt("chat_private_message")." ";
$message .= $this->object->chat_user->getLogin()." -> ".$user_obj->getLogin();
sendInfo($message);
}
else if($_GET["a_id"])
{
$user_obj =& new ilObjUser((int) $_GET["a_id"]);
$message = $this->lng->txt("chat_address_user")." ".$user_obj->getLogin();
sendInfo($message);
}
if ($_GET["p_id"])
{
$this->tpl->setVariable("FORMACTION","chat.php?cmd=gateway&ref_id=".
$this->object->getRefId()."&room_id=".
$_REQUEST["room_id"]."&p_id=".$_GET["p_id"]);
}
else if ($_GET["a_id"])
{
$this->tpl->setVariable("FORMACTION","chat.php?cmd=gateway&ref_id=".
$this->object->getRefId()."&room_id=".
$_REQUEST["room_id"]."&a_id=".$_GET["a_id"]);
}
else
{
$this->tpl->setVariable("FORMACTION","chat.php?cmd=gateway&ref_id=".
$this->object->getRefId()."&room_id=".
$_REQUEST["room_id"]);
}
$this->tpl->setVariable("TXT_COLOR",$this->lng->txt("chat_color"));
$this->tpl->setVariable("TXT_TYPE",$this->lng->txt("chat_type"));
$this->tpl->setVariable("TXT_FACE",$this->lng->txt("chat_face"));
$this->tpl->setVariable("TXT_INPUT",$this->lng->txt("chat_input"));
if ($_GET["p_id"])
{
$this->tpl->setCurrentBlock("cancel");
$this->tpl->setVariable("TXT_SUBMIT_CANCEL",$this->lng->txt("cancel_whisper"));
$this->tpl->parseCurrentBlock();
$this->tpl->setVariable("TXT_SUBMIT_OK",$this->lng->txt("ok"));
}
elseif($_GET["a_id"])
{
$this->tpl->setCurrentBlock("cancel");
$this->tpl->setVariable("TXT_SUBMIT_CANCEL",$this->lng->txt("cancel_talk"));
$this->tpl->parseCurrentBlock();
$this->tpl->setVariable("TXT_SUBMIT_OK",$this->lng->txt("ok"));
}
else
{
$this->tpl->setVariable("TXT_SUBMIT_OK",$this->lng->txt("ok"));
}
$this->tpl->setVariable("SELECT_COLOR",$this->__getColorSelect());
$this->tpl->setVariable("RADIO_TYPE",$this->__getFontType());
$this->tpl->setVariable("CHECK_FACE",$this->__getFontFace());
if ($rbacsystem->checkAccess("moderate", $this->object->getRefId()))
{
$this->object->chat_record = new ilChatRecording($this->object->getRefId());
$this->tpl->setCurrentBlock("moderator");
$this->object->chat_record->setRoomId($this->object->chat_room->getRoomId());
if ($this->object->chat_record->isRecording())
{
if ($this->object->chat_record->getTitle() != "")
{
$this->tpl->setVariable("TXT_TITLE_STOP_RECORDING", $this->lng->txt("chat_recording_title"));
$this->tpl->setVariable("VAL_TITLE_STOP_RECORDING", $this->object->chat_record->getTitle());
}
if ($this->object->chat_record->getDescription() != "")
{
$this->tpl->setVariable("TXT_DESCRIPTION_STOP_RECORDING", $this->lng->txt("chat_recording_description"));
$this->tpl->setVariable("VAL_DESCRIPTION_STOP_RECORDING", $this->object->chat_record->getDescription());
}
$this->tpl->setVariable("TXT_SUBMIT_STOP_RECORDING", $this->lng->txt("chat_stop_recording"));
}
else
{
$this->tpl->setVariable("TXT_TITLE_START_RECORDING", $this->lng->txt("chat_recording_title"));
$this->tpl->setVariable("TXT_DESCRIPTION_START_RECORDING", $this->lng->txt("chat_recording_description"));
$this->tpl->setVariable("TXT_SUBMIT_START_RECORDING", $this->lng->txt("chat_start_recording"));
}
$this->tpl->setVariable("MODERATOR_FORMACTION","chat.php?cmd=gateway&ref_id=".
$this->object->getRefId()."&room_id=".
$this->object->chat_room->getRoomId());
$this->tpl->setVariable("MODERATOR_TARGET","_top");
$this->tpl->parseCurrentBlock("moderator");
}
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjChatGUI::showRightFrame | ( | ) |
Definition at line 1116 of file class.ilObjChatGUI.php.
References __loadStylesheet().
{
$this->__loadStylesheet();
$this->tpl->addBlockFile("CONTENT", "content", "tpl.chat_right_frame.html",true);
}
Here is the call graph for this function:| ilObjChatGUI::showTopFrame | ( | ) |
Definition at line 1007 of file class.ilObjChatGUI.php.
References __loadStylesheet().
{
$this->__loadStylesheet();
$this->tpl->addBlockFile("CONTENT", "content", "tpl.chat_top_frame.html",true);
}
Here is the call graph for this function:| ilObjChatGUI::showUserFrame | ( | ) |
Definition at line 976 of file class.ilObjChatGUI.php.
References $_REQUEST, $_SESSION, __loadStylesheet(), __showActiveUsers(), __showOnlineUsers(), and __showRooms().
{
$this->object->chat_room->setUserId($_SESSION["AccountId"]);
$this->object->chat_room->updateLastVisit();
$this->__loadStylesheet(true);
$this->tpl->addBlockFile("CONTENT", "content", "tpl.chat_user_frame.html",true);
if($_REQUEST["room_id"])
{
$this->tpl->setVariable("TITLE",$this->object->chat_room->getTitle());
}
else
{
$this->tpl->setVariable("TITLE",$this->object->getTitle());
}
$this->__showRooms();
$this->tpl->setVariable("ADD_FORMACTION","chat.php?cmd=gateway&room_id=".
$this->object->chat_room->getRoomId()."&ref_id=".$this->object->getRefId());
$this->tpl->setVariable("TXT_ADD_PRIVATE_CHATROOM", $this->lng->txt("chat_add_private_chatroom"));
$this->tpl->setVariable("TXT_ADD", $this->lng->txt("add"));
$this->__showActiveUsers();
if($this->object->chat_room->isOwner())
{
$this->__showOnlineUsers();
}
}
Here is the call graph for this function:| ilObjChatGUI::startRecording | ( | ) |
Definition at line 873 of file class.ilObjChatGUI.php.
References $_GET, $_POST, $_SESSION, $rbacsystem, sendInfo(), and showFrames().
{
global $rbacsystem;
if (!$rbacsystem->checkAccess("moderate", $this->object->getRefId()))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_read"),$this->ilias->error_obj->MESSAGE);
}
$this->object->chat_record = new ilChatRecording($this->object->getRefId());
if($_GET["room_id"])
{
$this->object->chat_record->setRoomId($_GET["room_id"]);
}
if (!$this->object->chat_record->isRecording())
{
$this->object->chat_record->setModeratorId($_SESSION["AccountId"]);
$this->object->chat_record->startRecording($_POST["title"]);
}
sendInfo($this->lng->txt("chat_recording_started"),true);
$this->showFrames();
}
Here is the call graph for this function:| ilObjChatGUI::stopRecording | ( | ) |
Definition at line 896 of file class.ilObjChatGUI.php.
References $_GET, $_SESSION, $rbacsystem, sendInfo(), and showFrames().
{
global $rbacsystem;
if (!$rbacsystem->checkAccess("moderate", $this->object->getRefId()))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_read"),$this->ilias->error_obj->MESSAGE);
}
$this->object->chat_record = new ilChatRecording($this->object->getRefId());
if($_GET["room_id"])
{
$this->object->chat_record->setRoomId($_GET["room_id"]);
}
if ($this->object->chat_record->isRecording())
{
$this->object->chat_record->stopRecording($_SESSION["AccountId"]);
}
sendInfo($this->lng->txt("chat_recording_stopped"),true);
$this->showFrames();
}
Here is the call graph for this function:| ilObjChatGUI::unblockUsersObject | ( | ) |
Definition at line 214 of file class.ilObjChatGUI.php.
References $_POST, $rbacsystem, blockedUsersObject(), and sendInfo().
{
include_once 'chat/classes/class.ilChatBlockedUsers.php';
global $rbacsystem;
if(!$rbacsystem->checkAccess('chat_moderate',$this->object->getRefId()))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_write"),$this->ilias->error_obj->MESSAGE);
}
$blocked_obj = new ilChatBlockedUsers($this->object->getId());
if(!is_array($_POST['blocked_check']))
{
sendInfo($this->lng->txt('chat_no_users_selected'));
return $this->blockedUsersObject();
}
foreach($_POST['blocked_check'] as $usr_id)
{
$blocked_obj->unblock($usr_id);
}
sendInfo($this->lng->txt('chat_unblocked_user'));
return $this->blockedUsersObject();
}
Here is the call graph for this function:| ilObjChatGUI::unkickUser | ( | ) |
Definition at line 268 of file class.ilObjChatGUI.php.
References $_GET, $rbacsystem, and showFrames().
{
global $rbacsystem;
if(!$rbacsystem->checkAccess('chat_moderate',$this->object->getRefId()))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_write"),$this->ilias->error_obj->MESSAGE);
}
if($_GET["kick_id"])
{
$this->object->chat_room->setUnkicked((int)$_GET['kick_id']);
#sendInfo($this->lng->txt("chat_user_dropped"),true);
$this->showFrames();
}
}
Here is the call graph for this function:| ilObjChatGUI::viewObject | ( | ) |
list childs of current object
public
Reimplemented from ilObjectGUI.
Definition at line 296 of file class.ilObjChatGUI.php.
References $_SESSION, $counter, $ilUser, $rbacsystem, $script, __showAdminAddRoomSelect(), __showAdminRoomSelect(), ilChatBlockedUsers::_isBlocked(), ilUtil::formCheckbox(), ilUtil::getImagePath(), inModule(), and sendInfo().
Referenced by addRoomObject(), adminRoomsObject(), confirmedDeleteRoomObject(), and renameRoomObject().
{
if($this->ctrl->getTargetScript() == 'adm_object.php')
{
return parent::viewObject();
}
// Check blocked
include_once 'chat/classes/class.ilChatBlockedUsers.php';
global $rbacsystem,$ilUser;
if (!$rbacsystem->checkAccess("read", $this->ref_id))
{
$this->ilias->raiseError($this->lng->txt("msg_no_perm_read"),$this->ilias->error_obj->MESSAGE);
}
$this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.chat_view.html","chat");
// CHAT SERVER NOT ACTIVE
if(!$this->object->server_comm->isAlive() or !$this->ilias->getSetting("chat_active"))
{
sendInfo($this->lng->txt("chat_server_not_active"));
}
if(ilChatBlockedUsers::_isBlocked($this->object->getId(),$ilUser->getId()))
{
sendInfo($this->lng->txt('chat_access_blocked'));
return true;
}
// DELETE ROOMS CONFIRM
$checked = array();
if($_SESSION["room_id_delete"])
{
$checked = $_SESSION["room_id_delete"];
sendInfo($this->lng->txt("chat_delete_sure"));
$this->tpl->setCurrentBlock("confirm_delete");
$this->tpl->setVariable("TXT_DELETE_CANCEL",$this->lng->txt("cancel"));
$this->tpl->setVariable("TXT_DELETE_CONFIRM",$this->lng->txt("delete"));
$this->tpl->parseCurrentBlock();
}
// SHOW ROOMS TABLE
$this->tpl->setVariable("TYPE_IMG",ilUtil::getImagePath('icon_chat.gif'));
$this->tpl->setVariable("ALT_IMG",$this->lng->txt('obj_chat'));
$this->tpl->setVariable("TITLE",$this->lng->txt('chat_rooms'));
$this->tpl->setVariable("FORMACTION",$this->ctrl->getFormAction($this));
#$this->tpl->setVariable("TXT_CHATROOMS",$this->lng->txt("chat_chatrooms"));
$counter = 0;
if($rbacsystem->checkAccess('write',$this->ref_id))
{
$rooms = $this->object->chat_room->getAllRoomsOfObject();
}
else
{
$this->object->chat_room->setOwnerId($_SESSION["AccountId"]);
$rooms = $this->object->chat_room->getRoomsOfObject();
}
$script = $this->inModule() ? "./chat.php" : "./chat/chat.php";
// ADD PUBLIC ROOM
// CHAT SERVER ACTIVE
if(ilChatBlockedUsers::_isBlocked($this->object->getId(),$ilUser->getId()))
{
$this->tpl->setCurrentBlock("blocked");
$this->tpl->setVariable("MESSAGE_BLOCKED",$this->lng->txt('chat_blocked'));
$this->tpl->parseCurrentBlock();
}
elseif($this->object->server_comm->isAlive() and $this->ilias->getSetting("chat_active"))
{
$this->tpl->setCurrentBlock("active");
$this->tpl->setVariable("ROOM_LINK",$script."?ref_id=".$this->ref_id."&room_id=0");
$this->tpl->setVariable("ROOM_TARGET","_blank");
$this->tpl->setVariable("ROOM_TXT_LINK",$this->lng->txt("show"));
$this->tpl->parseCurrentBlock();
}
else
{
$this->tpl->touchBlock("not_active");
}
$this->tpl->setCurrentBlock("tbl_rooms_row");
$this->tpl->setVariable("ROWCOL",++$counter % 2 ? "tblrow1" : "tblrow2");
$this->tpl->setVariable("ROOM_CHECK",
ilUtil::formCheckbox(in_array(0,$checked) ? 1 : 0,
"del_id[]",
0));
$this->tpl->setVariable("ROOM_NAME",$this->object->getTitle()." ".$this->lng->txt("chat_public_room"));
$this->tpl->parseCurrentBlock();
$script = $this->inModule() ? "./chat.php" : "./chat/chat.php";
foreach($rooms as $room)
{
// CHAT SERVER ACTIVE
if($this->object->server_comm->isAlive() and $this->ilias->getSetting("chat_active"))
{
$this->tpl->setCurrentBlock("active");
$this->tpl->setVariable("ROOM_LINK",$script."?ref_id=".$this->ref_id."&room_id=".$room["room_id"]);
$this->tpl->setVariable("ROOM_TARGET","_blank");
$this->tpl->setVariable("ROOM_TXT_LINK",$this->lng->txt("show"));
$this->tpl->parseCurrentBlock();
}
else
{
$this->tpl->touchBlock("not_active");
}
$this->tpl->setCurrentBlock("tbl_rooms_row");
$this->tpl->setVariable("ROWCOL",++$counter % 2 ? "tblrow1" : "tblrow2");
$this->tpl->setVariable("ROOM_CHECK",
ilUtil::formCheckbox(in_array($room["room_id"],$checked) ? 1 : 0,
"del_id[]",
$room["room_id"]));
$this->tpl->setVariable("ROOM_NAME",$room["title"]);
$this->tpl->parseCurrentBlock();
}
$this->tpl->setCurrentBlock("has_rooms");
$this->tpl->setVariable("TBL_FOOTER_IMG_SRC", ilUtil::getImagePath("arrow_downright.gif"));
$this->tpl->setVariable("TBL_FOOTER_SELECT",$this->__showAdminRoomSelect(count($rooms)));
$this->tpl->setVariable("FOOTER_HAS_ROOMS_OK",$this->lng->txt("ok"));
$this->tpl->parseCurrentBlock();
$this->tpl->setVariable("TBL_FOOTER_ADD_SELECT",$this->__showAdminAddRoomSelect());
$this->tpl->setVariable("FOOTER_OK",$this->lng->txt("add"));
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjChatGUI::$in_module = false |
Definition at line 41 of file class.ilObjChatGUI.php.
Referenced by setInModule().
| ilObjChatGUI::$target_script = "adm_object.php" |
Definition at line 40 of file class.ilObjChatGUI.php.
1.7.1