diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-04-25 22:35:24 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-04-25 22:35:24 +0200 |
commit | 31b5b06e42415ffaf98ca09ca8641ae64e67280f (patch) | |
tree | 1b7e0ea2df7bc55c8e23458f38a3f2ec64afe726 | |
parent | e01873b4cf3c217f7ee0baafbee1ba9dd42e0408 (diff) | |
download | volse-hubzilla-31b5b06e42415ffaf98ca09ca8641ae64e67280f.tar.gz volse-hubzilla-31b5b06e42415ffaf98ca09ca8641ae64e67280f.tar.bz2 volse-hubzilla-31b5b06e42415ffaf98ca09ca8641ae64e67280f.zip |
Provide webpage layout description
-rw-r--r-- | include/conversation.php | 2 | ||||
-rw-r--r-- | mod/layouts.php | 7 | ||||
-rw-r--r-- | view/css/mod_layouts.css | 10 | ||||
-rw-r--r-- | view/tpl/layoutlist.tpl | 6 |
4 files changed, 18 insertions, 7 deletions
diff --git a/include/conversation.php b/include/conversation.php index 42ce140a6..8c9029a43 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1199,7 +1199,7 @@ function status_editor($a, $x, $popup = false) { '$noloc' => ((get_pconfig($x['profile_uid'], 'system', 'use_browser_location')) ? t('Clear browser location') : ''), '$shortnoloc' => t('clear location'), '$title' => ((x($x, 'title')) ? htmlspecialchars($x['title'], ENT_COMPAT,'UTF-8') : ''), - '$placeholdertitle' => t('Title (optional)'), + '$placeholdertitle' => ((x($x, 'placeholdertitle')) ? $x['placeholdertitle'] : t('Title (optional)')), '$hidetitle' => ((x($x, 'hidetitle')) ? $x['hidetitle'] : false), '$catsenabled' => ((feature_enabled($x['profile_uid'], 'categories') && (! $webpage)) ? 'categories' : ''), '$category' => "", diff --git a/mod/layouts.php b/mod/layouts.php index 57300777a..b1e4cd345 100644 --- a/mod/layouts.php +++ b/mod/layouts.php @@ -120,7 +120,8 @@ function layouts_content(&$a) { 'nopreview' => 1, 'ptlabel' => t('Layout Name'), 'profile_uid' => intval($owner), - 'expanded' => true + 'expanded' => true, + 'placeholdertitle' => t('Layout Description') ); if($_REQUEST['title']) @@ -154,7 +155,8 @@ function layouts_content(&$a) { ); $pages[$rr['iid']][] = array( 'url' => $rr['iid'], - 'title' => $rr['sid'], + 'title' => $rr['sid'], + 'descr' => $rr['title'], 'mid' => $rr['mid'], 'created' => $rr['created'], 'edited' => $rr['edited'], @@ -173,6 +175,7 @@ function layouts_content(&$a) { '$editor' => $editor, '$baseurl' => $url, '$name' => t('Layout Name'), + '$descr' => t('Layout Description'), '$created' => t('Created'), '$edited' => t('Edited'), '$edit' => t('Edit'), diff --git a/view/css/mod_layouts.css b/view/css/mod_layouts.css index 5a3c86733..8e0a945bf 100644 --- a/view/css/mod_layouts.css +++ b/view/css/mod_layouts.css @@ -15,14 +15,18 @@ padding: 7px 3px 7px 10px; } -#layout-list-table th:nth-child(5), -#layout-list-table td:nth-child(5){ - padding: 7px 3px; +#layout-list-table th:nth-child(2){ white-space: nowrap; } #layout-list-table th:nth-child(6), #layout-list-table td:nth-child(6){ + padding: 7px 3px; + white-space: nowrap; +} + +#layout-list-table th:nth-child(7), +#layout-list-table td:nth-child(7){ padding: 7px 10px 7px 7px; white-space: nowrap; } diff --git a/view/tpl/layoutlist.tpl b/view/tpl/layoutlist.tpl index 6812cf95b..ab7408eae 100644 --- a/view/tpl/layoutlist.tpl +++ b/view/tpl/layoutlist.tpl @@ -18,7 +18,8 @@ <div id="pagelist-content-wrapper" class="section-content-wrapper-np"> <table id="layout-list-table"> <tr> - <th width="97%">{{$name}}</th> + <th width="1%">{{$name}}</th> + <th width="94%">{{$descr}}</th> <th width="1%"></th> <th width="1%"></th> <th width="1%"></th> @@ -35,6 +36,9 @@ {{$item.title}} {{/if}} </td> + <td> + {{$item.descr}} + </td> <td class="webpage-list-tool"> {{if $edit}} <a href="{{$baseurl}}/{{$item.url}}" title="{{$edit}}"><i class="icon-pencil"></i></a> |