diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-04-14 11:50:21 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-04-14 11:50:21 +0200 |
commit | bf2a97147ecef7528e9adbed3cf4a1f3af03ad72 (patch) | |
tree | fbb4a46a9a68734f2f41b1c36cdf27557db2866a /include/text.php | |
parent | 865b602cf8b4eff5e7da00362df95e52e2fe4f77 (diff) | |
download | volse-hubzilla-bf2a97147ecef7528e9adbed3cf4a1f3af03ad72.tar.gz volse-hubzilla-bf2a97147ecef7528e9adbed3cf4a1f3af03ad72.tar.bz2 volse-hubzilla-bf2a97147ecef7528e9adbed3cf4a1f3af03ad72.zip |
some more on webpages
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/include/text.php b/include/text.php index 791254e52..29654e1fd 100644 --- a/include/text.php +++ b/include/text.php @@ -1595,18 +1595,20 @@ function layout_select($channel_id, $current = '') { intval($channel_id), intval(ITEM_PDL) ); + if($r) { - $o = t('Select a page layout: '); - $o .= '<select name="layout_mid" id="select-layout_mid" >'; - $empty_selected = (($current === '') ? ' selected="selected" ' : ''); - $o .= '<option value="" ' . $empty_selected . '>' . t('default') . '</option>'; + $empty_selected = (($current === false) ? ' selected="selected" ' : ''); + $options .= '<option value="" ' . $empty_selected . '>' . t('default') . '</option>'; foreach($r as $rr) { $selected = (($rr['mid'] == $current) ? ' selected="selected" ' : ''); - $o .= '<option value="' . $rr['mid'] . '"' . $selected . '>' . $rr['sid'] . '</option>'; + $options .= '<option value="' . $rr['mid'] . '"' . $selected . '>' . $rr['sid'] . '</option>'; } - $o .= '</select>'; } + $o = replace_macros(get_markup_template('field_select_raw.tpl'), array( + '$field' => array('layout_mid', t('Page layout'), $selected, t('You can create your own with the layouts tool'), $options) + )); + return $o; } @@ -1639,13 +1641,14 @@ function mimetype_select($channel_id, $current = 'text/bbcode') { } } - $o = t('Page content type: '); - $o .= '<select name="mimetype" id="mimetype-select">'; foreach($x as $y) { - $select = (($y == $current) ? ' selected="selected" ' : ''); - $o .= '<option name="' . $y . '"' . $select . '>' . $y . '</option>'; + $selected = (($y == $current) ? ' selected="selected" ' : ''); + $options .= '<option name="' . $y . '"' . $selected . '>' . $y . '</option>'; } - $o .= '</select>'; + + $o = replace_macros(get_markup_template('field_select_raw.tpl'), array( + '$field' => array('mimetype', t('Page content type'), $selected, t('If unsure select text/bbcode'), $options) + )); return $o; } @@ -2105,7 +2108,7 @@ function design_tools() { $who = $channel['channel_address']; return replace_macros(get_markup_template('design_tools.tpl'), array( - '$title' => t('Design'), + '$title' => t('Design Tools'), '$who' => $who, '$sys' => $sys, '$blocks' => t('Blocks'), |