Browse Source

- Cleaning up...

pull/16/head
Christine Ho 11 years ago
parent
commit
97b11f3aaa
  1. 38
      app/widgets/Roster/Roster.php

38
app/widgets/Roster/Roster.php

@ -58,16 +58,6 @@ class Roster extends WidgetBase
{
$contacts = $packet->content;
if($contacts != null){
/*
if(is_array($contacts) && $contacts[0]->value < 5) {
$presences = getPresences();
Notification::append(
'presence',
$contacts[0]->getTrueName(),
$presences[$contacts[0]->value],
$contacts[0]->getPhoto('s'), 2);
}
*/
$c = $contacts[0];
if($c->groupname == '')
@ -189,22 +179,11 @@ class Roster extends WidgetBase
->request();
}
private function getCaps() {
$capsdao = new \Modl\CapsDAO();
$caps = $capsdao->getAll();
$capsarr = array();
foreach($caps as $c) {
$capsarr[$c->node] = $c;
}
return $capsarr;
}
/**
* @brief Search for a contact to add
*/
function ajaxSearchContact($jid) {
function ajaxSearchContact($jid)
{
if(filter_var($jid, FILTER_VALIDATE_EMAIL)) {
RPC::call('movim_redirect', Route::urlize('friend', $jid));
RPC::commit();
@ -212,6 +191,19 @@ class Roster extends WidgetBase
Notification::append(null, $this->__('roster.jid_error'));
}
private function getCaps()
{
$capsdao = new \Modl\CapsDAO();
$caps = $capsdao->getAll();
$capsarr = array();
foreach($caps as $c) {
$capsarr[$c->node] = $c;
}
return $capsarr;
}
/**
* @brief Get data from database to pass it on to angular in JSON
* @param

Loading…
Cancel
Save