aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2017-01-29 19:56:19 -0500
committerAndrew Manning <tamanning@zoho.com>2017-01-29 19:56:19 -0500
commit17011a7637565839f4dde917568ca12daf87de66 (patch)
treea4cf0a3e3193c77aaa13cd431ac50ce8387dc0d4 /include
parentf8918604087af97a9e416ba2a8503920f8b08186 (diff)
downloadvolse-hubzilla-17011a7637565839f4dde917568ca12daf87de66.tar.gz
volse-hubzilla-17011a7637565839f4dde917568ca12daf87de66.tar.bz2
volse-hubzilla-17011a7637565839f4dde917568ca12daf87de66.zip
Remove unrelated chatroom panel stuff that was included accidentally
Diffstat (limited to 'include')
-rw-r--r--include/widgets.php69
1 files changed, 0 insertions, 69 deletions
diff --git a/include/widgets.php b/include/widgets.php
index 94c00dba8..27eae7d6f 100644
--- a/include/widgets.php
+++ b/include/widgets.php
@@ -907,75 +907,6 @@ function widget_chatroom_members() {
return $o;
}
-/*
- * $arr input array:
- * room_id
- *
- */
-function widget_chatroom_panel($arr) {
-
- // This widget is only intended for use on the page of a local channel
- if(local_channel()) {
- $channel = \App::get_channel();
- $observer = get_observer_hash();
- if(! $observer) {
- // This should never fail because the observer should be a local channel
- return;
- }
- } else {
- return;
- }
-
- $room_id = $arr['room_id'];
-
- $x = \Zotlabs\Lib\Chatroom::enter($observer,$room_id,'online',$_SERVER['REMOTE_ADDR']);
- if(! $x)
- return;
- $x = q("select * from chatroom where cr_id = %d and cr_uid = %d $sql_extra limit 1",
- intval($room_id),
- intval(\App::$profile['profile_uid'])
- );
-
- if($x) {
- $acl = new \Zotlabs\Access\AccessList(false);
- $acl->set($x[0]);
-
- $private = $acl->is_private();
- $room_name = $x[0]['cr_name'];
- if($bookmark_link)
- $bookmark_link .= '&url=' . z_root() . '/chat/' . argv(1) . '/' . argv(2) . '&title=' . urlencode($x[0]['cr_name']) . (($private) ? '&private=1' : '') . '&ischat=1';
- }
- else {
- logger('Room not found');
- return;
- }
-
- $cipher = get_pconfig(local_channel(),'system','default_cipher');
- if(! $cipher)
- $cipher = 'aes256';
-
- $o = replace_macros(get_markup_template('chat.tpl'),array(
- '$is_owner' => ((local_channel() && local_channel() == $x[0]['cr_uid']) ? true : false),
- '$room_name' => $room_name,
- '$room_id' => $room_id,
- '$baseurl' => z_root(),
- '$nickname' => argv(1),
- '$submit' => t('Submit'),
- '$leave' => t('Leave Room'),
- '$drop' => t('Delete Room'),
- '$away' => t('I am away right now'),
- '$online' => t('I am online'),
- '$bookmark_link' => $bookmark_link,
- '$bookmark' => t('Bookmark this room'),
- '$feature_encrypt' => ((feature_enabled(local_channel(),'content_encrypt')) ? true : false),
- '$cipher' => $cipher,
- '$linkurl' => t('Please enter a link URL:'),
- '$encrypt' => t('Encrypt text'),
- '$insert' => t('Insert web link')
- ));
- return $o;
-}
-
function widget_wiki_list($arr) {
$channel = channelx_by_n(App::$profile_uid);