git.schokokeks.org
Repositories
Help
Report an Issue
webinterface.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
63a0529
Branches
Tags
master
ticket
webinterface.git
modules
dns
dyndns.php
eliminate .php extensions for URLs
bernd
commited
63a0529
at 2008-08-08 19:32:32
dyndns.php
Blame
History
Raw
<?php require_once('inc/base.php'); require_once('inc/security.php'); require_role(ROLE_CUSTOMER); require_once('dnsinclude.php'); $dyndns = get_dyndns_accounts(); $output .= '<h3>DynDNS-Accounts</h3> <p>Hier sehen Sie eine Übersicht über die angelegten DynDNS-Accounts.</p>'; $output .= '<table><tr><th>Kürzel</th><th>Methode</th><th>aktuelle IP</th><th>letztes Update</th><th> </th></tr> '; foreach ($dyndns AS $entry) { $handle = $entry['handle']; if (!$handle) $handle = '<em>undefiniert</em>'; $method = ''; if ($entry['sshkey']) if ($entry['password']) $method = 'SSH, HTTP'; else $method = 'SSH'; else if ($entry['password']) $method = 'HTTP'; else $method = '<em>keine</em>'; $output .= "<tr><td>".internal_link('dyndns_edit', $handle, "id={$entry['id']}")."</td><td>{$method}</td><td>{$entry['address']}</td><td>{$entry['lastchange']}</td><td>".internal_link('save', '<img src="'.$prefix.'images/delete.png" width="16" height="16" alt="löschen" title="Account löschen" />', "id={$entry['id']}&type=dyndns&action=delete")."</td></tr>\n"; } $output .= '</table><br /> <p>'.internal_link('dyndns_edit', 'Neuen DynDNS-Account anlegen').'</p>'; ?>