provide block titles in blocklist

This commit is contained in:
Mario Vavti 2015-04-24 22:37:22 +02:00
parent 2583cab469
commit b7f6cceaea
4 changed files with 15 additions and 8 deletions

View file

@ -1200,6 +1200,7 @@ function status_editor($a, $x, $popup = false) {
'$shortnoloc' => t('clear location'),
'$title' => ((x($x, 'title')) ? htmlspecialchars($x['title'], ENT_COMPAT,'UTF-8') : ''),
'$placeholdertitle' => t('Title (optional)'),
'$hidetitle' => ((x($x, 'hidetitle')) ? $x['hidetitle'] : false),
'$catsenabled' => ((feature_enabled($x['profile_uid'], 'categories') && (! $webpage)) ? 'categories' : ''),
'$category' => "",
'$placeholdercategory' => t('Categories (optional, comma-separated list)'),

View file

@ -128,7 +128,8 @@ function blocks_content(&$a) {
);
$pages[$rr['iid']][] = array(
'url' => $rr['iid'],
'title' => $rr['sid'],
'name' => $rr['sid'],
'title' => $rr['title'],
'created' => $rr['created'],
'edited' => $rr['edited'],
'bb_element' => '[element]' . base64url_encode(json_encode($element_arr)) . '[/element]'
@ -143,6 +144,7 @@ function blocks_content(&$a) {
'$baseurl' => $url,
'$title' => t('Blocks'),
'$name' => t('Block Name'),
'$blocktitle' => t('Block Title'),
'$created' => t('Created'),
'$edited' => t('Edited'),
'$create' => t('Create'),

View file

@ -15,14 +15,14 @@
padding: 7px 3px 7px 10px;
}
#block-list-table th:nth-child(5),
#block-list-table td:nth-child(5){
#block-list-table th:nth-child(6),
#block-list-table td:nth-child(6){
padding: 7px 3px;
white-space: nowrap;
}
#block-list-table th:nth-child(6),
#block-list-table td:nth-child(6){
#block-list-table th:nth-child(7),
#block-list-table td:nth-child(7){
padding: 7px 10px 7px 7px;
white-space: nowrap;
}

View file

@ -16,7 +16,8 @@
<div id="pagelist-content-wrapper" class="section-content-wrapper-np">
<table id="block-list-table">
<tr>
<th width="97%">{{$name}}</th>
<th width="1%">{{$name}}</th>
<th width="94%">{{$blocktitle}}</th>
<th width="1%"></th>
<th width="1%"></th>
<th width="1%"></th>
@ -28,11 +29,14 @@
<tr id="block-list-item-{{$item.url}}">
<td>
{{if $view}}
<a href="block/{{$channel}}/{{$item.title}}" title="{{$view}}">{{$item.title}}</a>
<a href="block/{{$channel}}/{{$item.title}}" title="{{$view}}">{{$item.name}}</a>
{{else}}
{{$item.title}}
{{$item.name}}
{{/if}}
</td>
<td>
{{$item.title}}
</td>
<td class="webpage-list-tool">
{{if $edit}}
<a href="{{$baseurl}}/{{$item.url}}" title="{{$edit}}"><i class="icon-pencil"></i></a>