Hanno Böck To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see http://creativecommons.org/publicdomain/zero/1.0/ Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code. */ require_once('session/start.php'); require_once('class/domain.php'); require_once('jabberaccounts.php'); require_once('inc/security.php'); require_once('inc/icons.php'); require_role(ROLE_CUSTOMER); $jabberaccounts = get_jabber_accounts(); title("Jabber-Accounts"); output(""); foreach ($jabberaccounts as $acc) { $not_ready = ''; if ($acc['create'] == 1) { $not_ready = " ".icon_warning('Dieser Account wird in Kürze auf dem Server eingerichtet.'); } $lastactivity = $acc['lastactivity']; // Innerhalb der letzten Woche verwendet if ($lastactivity > strftime('%Y-%m-%d', time()-7*24*60*60)) { $lastactivity = 'Kürzlich'; } if (! $lastactivity) { $lastactivity = 'Bisher nie verwendet'; } $local = filter_input_general($acc['local']); $domain = new Domain( (int) $acc['domain'] ); if ($domain->id == NULL) { $domain = new Domain(); $domain->fqdn = config('masterdomain'); } output("'); } output('
{$local}@{$domain->fqdn}{$not_ready}
Letzte Nutzung: {$lastactivity}
".internal_link('chpass', icon_pwchange('Passwort ändern'), 'account='.$acc['id'])."   ".internal_link('save', icon_delete("»{$local}@{$domain->fqdn}« löschen"), 'action=delete&account='.$acc['id']).'
'); addnew("new_account", "Neues Jabber-Konto anlegen"); addnew("new_domain", "Eigene Domain für Jabber freischalten"); ?>