forked from r31k/dw-whoisinyourhackspace
Compare commits
3 Commits
223f37300a
...
d3aabedd87
Author | SHA1 | Date |
---|---|---|
LeineServer | d3aabedd87 | |
LeineServer | e65d8dc980 | |
Reik Kaps | 040d09934c |
|
@ -7,8 +7,8 @@
|
|||
|
||||
// menu entry for admin plugins
|
||||
$lang['wiyh_heading'] = 'Raumstatus';
|
||||
$lang['wiyh_open'] = 'ist geöffnet.';
|
||||
$lang['wiyh_closed'] = 'ist geschlossen.';
|
||||
$lang['wiyh_open'] = 'ist geöffnet';
|
||||
$lang['wiyh_closed'] = 'ist geschlossen';
|
||||
$lang['wiyh_stats'] = 'Raumöffnungsstatistiken';
|
||||
$lang['wiyh_no_api_path'] = 'Es wurde kein API-Pfad angegeben.';
|
||||
$lang['wiyh_fetch_error'] = 'Der API-Pfad konnte nicht abgerufen werden.';
|
||||
|
|
10
syntax.php
10
syntax.php
|
@ -76,11 +76,13 @@ class syntax_plugin_whoisinyourhackspace extends DokuWiki_Syntax_Plugin {
|
|||
$content .= "<h3>" . $this->getLang('wiyh_heading') . "</h3>";
|
||||
|
||||
if ($api->state->open) {
|
||||
$content .= $api->state->icon->open ? "<img class=\"icon\" src=\"{$api->state->icon->open}\" alt=\"{$api->space} ist besetzt.\" title=\"{$api->space} ist besetzt.\" />" : '';
|
||||
$content .= "<p class=\"text\">{$api->space} " . $this->getLang('wiyh_open') . "</p>";
|
||||
$message = "{$api->space} {$this->getLang('wiyh_open')}";
|
||||
$content .= $api->state->icon->open ? "<img class=\"icon\" src=\"{$api->state->icon->open}\" alt=\"{$message}\" title=\"{$message}\" />" : '';
|
||||
$content .= "<p class=\"text\">{$message}</p>";
|
||||
} else {
|
||||
$content .= $api->state->icon->open ? "<img class=\"icon\" src=\"{$api->state->icon->closed}\" alt=\"{$api->space} ist geschlossen.\" title=\"{$api->space} ist geschlossen.\" />" : '';
|
||||
$content .= "<p class=\"text\">{$api->space} " . $this->getLang('wiyh_closed') . "</p>";
|
||||
$message = "{$api->space} {$this->getLang('wiyh_closed')}";
|
||||
$content .= $api->state->icon->closed ? "<img class=\"icon\" src=\"{$api->state->icon->closed}\" alt=\"{$message}\" title=\"{$message}\" />" : '';
|
||||
$content .= "<p class=\"text\">{$message}</p>";
|
||||
}
|
||||
|
||||
$date = new DateTime();
|
||||
|
|
Loading…
Reference in New Issue