aboutsummaryrefslogtreecommitdiff
path: root/actions/get_icons.php
diff options
context:
space:
mode:
authorroot <root@migration.vz.lan>2012-10-23 09:04:43 +0000
committerroot <root@migration.vz.lan>2012-10-23 09:04:43 +0000
commit074dc8fda6f634cc8c024a913d8033600b336b3a (patch)
tree1a9959d61e9f308b0a3443d9d67c00d26421581c /actions/get_icons.php
downloadelgg-074dc8fda6f634cc8c024a913d8033600b336b3a.tar.gz
elgg-074dc8fda6f634cc8c024a913d8033600b336b3a.tar.bz2
initial commit.
Diffstat (limited to 'actions/get_icons.php')
-rw-r--r--actions/get_icons.php52
1 files changed, 52 insertions, 0 deletions
diff --git a/actions/get_icons.php b/actions/get_icons.php
new file mode 100644
index 000000000..88e7bdd3b
--- /dev/null
+++ b/actions/get_icons.php
@@ -0,0 +1,52 @@
+<?php
+ /**
+ * Beechat
+ *
+ * @package beechat
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Beechannels <contact@beechannels.com>
+ * @copyright Beechannels 2007-2010
+ * @link http://beechannels.com/
+ */
+
+ header('Content-type: application/json');
+ gatekeeper();
+ global $CONFIG;
+
+ if (!empty($_POST['beechat_roster_items_usernames']))
+ {
+ $rosterItemsUsernames = explode(',', $_POST['beechat_roster_items_usernames']);
+ /*foreach ($rosterItemsUsernames as $rosterItem)
+ {
+ }*/
+ $userFriendsEntities = $_SESSION['user']->getFriends('', 0, 0);
+
+ $res = array();
+ foreach ($rosterItemsUsernames as $value)
+ {
+ $found = false;
+ $splitjid = explode('@', $value);
+ $jid_name = $splitjid[0];
+ $jid_host = $splitjid[1];
+ foreach ($userFriendsEntities as $friend)
+ {
+ if ((strtolower($friend->username) == strtolower($jid_name) && $jid_host == get_plugin_setting("domain", "beechat")))
+ {
+ $res[$value] = array('small' => $friend->getIcon('small'), 'tiny' => $friend->getIcon('tiny'));
+ $found = true;
+ break;
+ }
+ }
+ if (!$found) {
+ $base = $CONFIG->wwwroot."mod/profile/graphics/default";
+ $res[$value] = array('small' => $base."small.gif", 'tiny' => $base."tiny.gif");
+ }
+ }
+ echo json_encode($res);
+ }
+ else
+ echo json_encode(null);
+
+ exit();
+
+?>