Restore Item\Source module functionality
This commit is contained in:
parent
246021fdfa
commit
99d54dc711
2 changed files with 95 additions and 32 deletions
|
@ -1,19 +1,20 @@
|
|||
<div id="source" class="generic-page-wrapper">
|
||||
<h2>{{$title}}</h2>
|
||||
<form action="admin/item/source" method="get" class="panel panel-default">
|
||||
<h2>{{$l10n.title}}</h2>
|
||||
<form action="moderation/item/source" method="get" class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="form-group">
|
||||
{{include file="field_input.tpl" field=$guid}}
|
||||
{{include file="field_input.tpl" field=$guid_field}}
|
||||
</div>
|
||||
<p><button type="submit" class="btn btn-primary">{{$submit}}</button></p>
|
||||
<p><button type="submit" class="btn btn-primary">{{$l10n.submit}}</button></p>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
{{if $source}}
|
||||
{{if $guid}}
|
||||
<div class="itemsource-results">
|
||||
{{if $item_id}}
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">{{$itemidlbl}}</h3>
|
||||
<h3 class="panel-title">{{$l10n.itemidlbl}}</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
{{$item_id}}
|
||||
|
@ -21,7 +22,7 @@
|
|||
</div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">{{$itemurilbl}}</h3>
|
||||
<h3 class="panel-title">{{$l10n.itemurilbl}}</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
{{$item_uri}}
|
||||
|
@ -29,21 +30,27 @@
|
|||
</div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">{{$termslbl}}</h3>
|
||||
<h3 class="panel-title">{{$l10n.termslbl}}</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<table class="table table-condensed table-striped">
|
||||
<tr>
|
||||
<th>{{$typelbl}}</th>
|
||||
<th>{{$termlbl}}</th>
|
||||
<th>{{$urllbl}}</th>
|
||||
<th>{{$l10n.typelbl}}</th>
|
||||
<th>{{$l10n.termlbl}}</th>
|
||||
<th>{{$l10n.urllbl}}</th>
|
||||
</tr>
|
||||
{{foreach $terms as $term}}
|
||||
{{foreach $terms as $term}}
|
||||
<tr>
|
||||
<td>
|
||||
{{if $term.type == 1}}{{$tag}}{{/if}}
|
||||
{{if $term.type == 2}}{{$mentionlbl}}{{/if}}
|
||||
{{if $term.type == 8}}{{$implicitlbl}}{{/if}}
|
||||
{{if $term.type == 1}}
|
||||
{{$l10n.taglbl}}
|
||||
{{/if}}
|
||||
{{if $term.type == 2}}
|
||||
{{$l10n.mentionlbl}}
|
||||
{{/if}}
|
||||
{{if $term.type == 8}}
|
||||
{{$l10n.implicitlbl}}
|
||||
{{/if}}
|
||||
</td>
|
||||
<td>
|
||||
{{$term.name}}
|
||||
|
@ -52,16 +59,40 @@
|
|||
{{$term.url}}
|
||||
</td>
|
||||
</tr>
|
||||
{{/foreach}}
|
||||
{{/foreach}}
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
{{if $source}}
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">{{$sourcelbl}}</h3>
|
||||
</div>
|
||||
<pre><code class="language-php">{{$source}}</code></pre>
|
||||
</div>
|
||||
{{else}}
|
||||
<div class="panel panel-warning">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">{{$l10n.error}}</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>{{$l10n.nosource}}</p>
|
||||
{{if $l10n.noconfig}}
|
||||
<p>{{$l10n.noconfig nofilter}}</p>
|
||||
{{/if}}
|
||||
</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
{{else}}
|
||||
<div class="panel panel-danger">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">{{$l10n.error}}</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
{{$l10n.notfound}}
|
||||
</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue