efdfc2b28d1c28ccfba2aec6f14bfba23e73bfcf
bernd Neues Jabber-Modul (noch ni...

bernd authored 16 years ago

1) <?php
2) 
3) require_once('session/start.php');
4) 
bernd Domain-Klasse benutzen

bernd authored 16 years ago

5) require_once('class/domain.php');
bernd Neues Jabber-Modul (noch ni...

bernd authored 16 years ago

6) require_once('jabberaccounts.php');
7) 
8) require_role(ROLE_CUSTOMER);
9) 
10) $title = "Neues Jabber-Konto erstellen";
11) 
12) $jabberdomains = get_jabberable_domains();
13) 
14) $options = '';
15) foreach ($jabberdomains as $dom)
16) {
bernd Domain-Klasse benutzen

bernd authored 16 years ago

17)   $options .= '<option value="'.$dom->id.'">'.$dom->fqdn.'</option>'."\n";
bernd Neues Jabber-Modul (noch ni...

bernd authored 16 years ago

18) }
19) 
20) 
21) output("<h3>Neuen Jabber-Account erstellen</h3>");
22) 
23) output('<p>Erstellen Sie hier ein neues Jabber-Konto.</p>
24) 
25) '.html_form('jabber_new_account', 'save.php', 'action=new', '
26) <table>
bernd @ nachgereicht

bernd authored 16 years ago

27) <tr><td>Account-Name:</td><td><input type="text" name="local" value="" />&nbsp;@&nbsp;<select name="domain" size="1">