This includes only the icons actually used or intended to be used in the backend. Please note that unfortunately, some class names have changed. Also some icons have been exchanged.
25 lines
891 B
Smarty
25 lines
891 B
Smarty
{if $installAction == 'check'}
|
|
{if $diagnosticError}
|
|
<h2>{$CONST.DIAGNOSTIC_ERROR}</h2>
|
|
{foreach $res as $r}
|
|
<span class="msg_error"><span class="icon-attention-circled"></span> {$r}</span>
|
|
{/foreach}
|
|
{else}
|
|
{if $htaccessRewrite}
|
|
<h2>{$CONST.ATTEMPT_WRITE_FILE|sprintf:"{$serendipityPath}htaccess"}</h2>
|
|
{if is_array($res)}
|
|
{foreach $res as $r}
|
|
<span class="msg_notice"><span class="icon-info-circled"></span> {$r}</span>
|
|
{/foreach}
|
|
{else}
|
|
<span class="msg_success"><span class="icon-ok-circled"></span> {$CONST.DONE}</span>
|
|
{/if}
|
|
{/if}
|
|
<span class="msg_success"><span class="icon-ok-circled"></span> {$CONST.WRITTEN_N_SAVED}</span>
|
|
{/if}
|
|
{else}
|
|
<h2>{$CONST.CONFIGURATION}</h2>
|
|
|
|
{$config}
|
|
{/if}
|