Revert "refactor global array"

This reverts commit 370ccbdb74.
This commit is contained in:
Michael Kaufmann
2018-12-22 08:15:31 +01:00
parent c800e89414
commit 7e39a7bc60
220 changed files with 2244 additions and 2227 deletions

View File

@@ -1,7 +1,7 @@
$header
<div class="messagewrapper">
<div class="errorcontainer bradius">
<div class="errortitle">{\Froxlor\I18N\Lang::getAll()['error']['error']}</div>
<div class="errortitle">{$lng['error']['error']}</div>
<div class="error">$error</div>
$link
</div>

View File

@@ -1,8 +1,8 @@
<tfoot>
<tr>
<td colspan="2" class="right">
<input type="reset" value="{\Froxlor\I18N\Lang::getAll()['panel']['cancel']}" class="historyback" />
<input type="submit" value="{\Froxlor\I18N\Lang::getAll()['panel']['save']}" />
<input type="reset" value="{$lng['panel']['cancel']}" class="historyback" />
<input type="submit" value="{$lng['panel']['save']}" />
</td>
</tr>
</tfoot>

View File

@@ -3,7 +3,7 @@
{$title}
</th>
<th class="right nolbr">
<input type="reset" value="{\Froxlor\I18N\Lang::getAll()['panel']['cancel']}" class="historyback" />
<input type="submit" value="{\Froxlor\I18N\Lang::getAll()['panel']['save']}" />
<input type="reset" value="{$lng['panel']['cancel']}" class="historyback" />
<input type="submit" value="{$lng['panel']['save']}" />
</th>
</tr>

View File

@@ -1,4 +1,4 @@
{\Froxlor\I18N\Lang::getAll()['panel']['search']}:&nbsp;
{$lng['panel']['search']}:&nbsp;
<select name="searchfield">
{$fieldoptions}
</select>&nbsp;

View File

@@ -2,15 +2,15 @@ $header
<div class="messagewrapper">
<form action="$yesfile" method="post">
<div class="warningcontainer bradius">
<div class="warningtitle">{\Froxlor\I18N\Lang::getAll()['question']['question']}</div>
<div class="warningtitle">{$lng['question']['question']}</div>
<div class="warning">
$text
<div>
<input type="hidden" name="s" value="$s" />
<input type="hidden" name="send" value="send" />
{$hiddenparams}
<input type="submit" name="submitbutton" value="{\Froxlor\I18N\Lang::getAll()['panel']['yes']}" />&nbsp;
<input type="button" class="nobutton" value="{\Froxlor\I18N\Lang::getAll()['panel']['no']}" id="historyback" />
<input type="submit" name="submitbutton" value="{$lng['panel']['yes']}" />&nbsp;
<input type="button" class="nobutton" value="{$lng['panel']['no']}" id="historyback" />
</div>
</div>
</div>

View File

@@ -2,7 +2,7 @@ $header
<div class="messagewrapper">
<form action="$yesfile" method="post">
<div class="warningcontainer bradius">
<div class="warningtitle">{\Froxlor\I18N\Lang::getAll()['question']['question']}</div>
<div class="warningtitle">{$lng['question']['question']}</div>
<div class="warning">
$text
<div class="messagecheckbox">$checkbox</div>
@@ -10,8 +10,8 @@ $header
<input type="hidden" name="s" value="$s" />
<input type="hidden" name="send" value="send" />
{$hiddenparams}
<input type="submit" name="submitbutton" value="{\Froxlor\I18N\Lang::getAll()['panel']['yes']}" />&nbsp;
<input type="button" class="nobutton" value="{\Froxlor\I18N\Lang::getAll()['panel']['no']}" id="historyback" />
<input type="submit" name="submitbutton" value="{$lng['panel']['yes']}" />&nbsp;
<input type="button" class="nobutton" value="{$lng['panel']['no']}" id="historyback" />
</div>
</div>
</div>

View File

@@ -1,11 +1,11 @@
$header
<div class="messagewrapper">
<div class="successcontainer bradius">
<div class="successtitle">{\Froxlor\I18N\Lang::getAll()['success']['success']}</div>
<div class="successtitle">{$lng['success']['success']}</div>
<div class="success">
$success_message
<if $redirect_url != ''>
<br /><br /><a href="{$redirect_url}">{\Froxlor\I18N\Lang::getAll()['success']['clickheretocontinue']}</a>
<br /><br /><a href="{$redirect_url}">{$lng['success']['clickheretocontinue']}</a>
</if>
</div>
</div>