0byt3m1n1
Path:
/
data
/
applications
/
aps
/
gallery
/
2.3-2
/
standard
/
htdocs
/
modules
/
core
/
templates
/
[
Home
]
File: AdminMaintenance.tpl
{* * $Revision: 17380 $ * Read this before changing templates! http://codex.gallery2.org/Gallery2:Editing_Templates *} <div class="gbBlock gcBackground1"> <h2> {g->text text="System Maintenance"} </h2> </div> {if isset($form.error.maintenanceModeRequired)} <div class="gbBlock"> <h2 class="giError"> {g->text text="Gallery must be in maintenance mode before the task can be run."} </h2> </div> {/if} {if isset($status.run)} <div class="gbBlock"> {capture name=taskTitle}<b>{g->text text=$AdminMaintenance.tasks[$status.run.taskId].title l10Domain=$AdminMaintenance.tasks[$status.run.taskId].l10Domain}</b>{/capture} {if ($status.run.success)} <h2 class="giSuccess"> {g->text text="Completed %s task successfully." arg1=$smarty.capture.taskTitle} </h2> {else} <h2 class="giError"> {g->text text="The %s task failed to complete successfully." arg1=$smarty.capture.taskTitle} </h2> {/if} </div> {/if} {if isset($status.setMode)} <div class="gbBlock"> <h2 class="giSuccess"> {if isset($status.setMode.setOn)} {g->text text="Maintenance Mode has been turned on."} {elseif isset($status.setMode.setOff)} {g->text text="Maintenance Mode has been turned off."} {/if} </h2> </div> {/if} <div class="gbBlock"> <table class="gbDataTable" width="100%"> <tr> <td> <h4>{g->text text="Maintenance Mode"}</h4> </td><td align="left" valign="bottom"> <input type="checkbox" {if $AdminMaintenance.setMode.mode}checked="checked" {/if} name="{g->formVar var="form[setMode][mode]}" onclick="BlockToggle('setMode-maintenance-url', 'not needed', 'table-row')"/> </td> <td> <p class="giDescription"> {g->text text="Restrict user access to the system while maintenance is being performed."} </p> </td> </tr> <tr id="setMode-maintenance-url" {if !$AdminMaintenance.setMode.mode}style="display: none"{/if}> <td colspan="3"> <h4>{g->text text="Maintenance Mode Url"}</h4> <p class="giDescription"> {g->text text="The Maintenance Mode Url specifies where requests will be redirected when access to the site has been restricted by the administrator."} {g->text text="If left blank Gallery will display a default page with an administrator login link. This page will be themed when the code base is up to date, otherwise it will display a plain unstyled page."} <br/> <i>{g->text text="For example: /maintenance.html"}</i> </p> <input type="text" size="60" name="{g->formVar var="form[setMode][url]"}" value="{$AdminMaintenance.setMode.url}" id="giFormPath"/> </td> </tr></table> </div> <div class="gbBlock gcBackground1"> <input type="submit" class="inputTypeSubmit" name="{g->formVar var="form[action][setMode]"}" value="{g->text text="Set"}"/> </div> <div class="gbBlock"> <table class="gbDataTable" width="100%"> <tr> <th> {g->text text="Task name"} </th> <th> {g->text text="Last run"} </th> <th> {g->text text="Success/Fail"} </th> <th> {g->text text="Action"} </th> </tr> {foreach from=$AdminMaintenance.tasks key=taskId item=info} {cycle values="gbEven,gbOdd" assign="rowClass"} <tr class="{$rowClass}"> <td> <span id="task-{$taskId}-toggle" class="giBlockToggle gcBackground1 gcBorder2" style="border-width: 1px" onclick="BlockToggle('task-{$taskId}-description', 'task-{$taskId}-toggle', 'table-row')"> {if !isset($status.run) || $status.run.taskId != $taskId}+{else}-{/if} </span> {g->text text=$info.title l10Domain=$info.l10Domain} </td><td> {if isset($info.timestamp)} {g->date timestamp=$info.timestamp style="datetime"} {else} {g->text text="Not run yet"} {/if} </td><td> {if isset($info.success)} {if $info.success} <div class="giSuccess"> {g->text text="Success"} </div> {else} <div class="giError"> {g->text text="Failed"} </div> {/if} {else} {g->text text="Not run yet"} {/if} </td><td> <a href="{g->url arg1="controller=core.AdminMaintenance" arg2="form[action][runTask]=1" arg3="taskId=`$taskId`"}"{if isset($info.confirmRun)} onclick="return confirm('{g->text text=$info.title forJavascript=1}: {g->text text="Are you sure?" forJavascript=1}')" {/if}>{g->text text="run now"}</a> </td> </tr> <tr class="{$rowClass}" id="task-{$taskId}-description" {if !isset($status.run) || $status.run.taskId != $taskId}style="display: none"{/if}> <td colspan="4"> {g->text text=$info.description l10Domain=$info.l10Domain} {if !empty($info.details)} <p class="giDescription"> {g->text text="Last Run Details:"} </p> <p class="giInfo"> {foreach from=$info.details item=text} {$text} <br/> {/foreach} </p> {/if} </td> </tr> {/foreach} </table> </div>