Add blog URL before relative lang URL in lang widget, fixes #1871

2.6
franck 2013-11-16 19:33:23 +01:00
parent 126a38138f
commit a82d5e6aba
1 changed files with 82 additions and 82 deletions

View File

@ -9,6 +9,7 @@
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
#
# -- END LICENSE BLOCK -----------------------------------------
if (!defined('DC_RC_PATH')) { return; }
class defaultWidgets
@ -16,14 +17,14 @@ class defaultWidgets
public static function search($w)
{
global $core;
if (($w->homeonly == 1 && $core->url->type != 'default') ||
($w->homeonly == 2 && $core->url->type == 'default')) {
return;
}
$value = isset($GLOBALS['_search']) ? html::escapeHTML($GLOBALS['_search']) : '';
return
($w->content_only ? '' : '<div id="search"'.($w->class ? ' class="'.html::escapeHTML($w->class).'"' : '').'>').
($w->title ? '<h2><label for="q">'.html::escapeHTML($w->title).'</label></h2>' : '').
@ -35,11 +36,11 @@ class defaultWidgets
'</form>'.
($w->content_only ? '' : '</div>');
}
public static function navigation($w)
{
global $core;
if (($w->homeonly == 1 && $core->url->type != 'default') ||
($w->homeonly == 2 && $core->url->type == 'default')) {
return;
@ -49,28 +50,28 @@ class defaultWidgets
($w->content_only ? '' : '<div id="topnav"'.($w->class ? ' class="'.html::escapeHTML($w->class).'"' : '').'>').
($w->title ? '<h2>'.html::escapeHTML($w->title).'</h2>' : '').
'<ul>';
if ($core->url->type != 'default') {
$res .=
'<li class="topnav-home">'.
'<a href="'.$core->blog->url.'">'.__('Home').'</a>'.
'<span> - </span></li>';
}
$res .=
'<li class="topnav-arch">'.
'<a href="'.$core->blog->url.$core->url->getURLFor("archive").'">'.
__('Archives').'</a></li>'.
'</ul>'.
($w->content_only ? '' : '</div>');
return $res;
}
public static function categories($w)
{
global $core, $_ctx;
if (($w->homeonly == 1 && $core->url->type != 'default') ||
($w->homeonly == 2 && $core->url->type == 'default')) {
return;
@ -80,11 +81,11 @@ class defaultWidgets
if ($rs->isEmpty()) {
return;
}
$res =
($w->content_only ? '' : '<div class="categories'.($w->class ? ' '.html::escapeHTML($w->class) : '').'">').
($w->title ? '<h2>'.html::escapeHTML($w->title).'</h2>' : '');
$ref_level = $level = $rs->level-1;
while ($rs->fetch())
{
@ -93,136 +94,136 @@ class defaultWidgets
|| ($core->url->type == 'post' && $_ctx->posts instanceof record && $_ctx->posts->cat_id == $rs->cat_id)) {
$class = ' class="category-current"';
}
if ($rs->level > $level) {
$res .= str_repeat('<ul><li'.$class.'>',$rs->level - $level);
} elseif ($rs->level < $level) {
$res .= str_repeat('</li></ul>',-($rs->level - $level));
}
if ($rs->level <= $level) {
$res .= '</li><li'.$class.'>';
}
$res .=
'<a href="'.$core->blog->url.$core->url->getURLFor('category', $rs->cat_url).'">'.
html::escapeHTML($rs->cat_title).'</a>'.
($w->postcount ? ' <span>('.($w->subcatscount ? $rs->nb_total : $rs->nb_post).')</span>' : '');
$level = $rs->level;
}
if ($ref_level - $level < 0) {
$res .= str_repeat('</li></ul>',-($ref_level - $level));
}
$res .= ($w->content_only ? '' : '</div>');
return $res;
}
public static function bestof($w)
{
global $core;
if (($w->homeonly == 1 && $core->url->type != 'default') ||
($w->homeonly == 2 && $core->url->type == 'default')) {
return;
}
$params = array(
'post_selected' => true,
'no_content' => true,
'order' => 'post_dt '.strtoupper($w->orderby)
);
$rs = $core->blog->getPosts($params);
if ($rs->isEmpty()) {
return;
}
$res =
($w->content_only ? '' : '<div class="selected'.($w->class ? ' '.html::escapeHTML($w->class) : '').'">').
($w->title ? '<h2>'.html::escapeHTML($w->title).'</h2>' : '').
'<ul>';
while ($rs->fetch()) {
$res .= ' <li><a href="'.$rs->getURL().'">'.html::escapeHTML($rs->post_title).'</a></li> ';
}
$res .= '</ul>'.($w->content_only ? '' : '</div>');
return $res;
}
public static function langs($w)
{
global $core, $_ctx;
if (($w->homeonly == 1 && $core->url->type != 'default' && $core->url->type != 'lang') ||
($w->homeonly == 2 && ($core->url->type == 'default' || $core->url->type == 'lang'))) {
return;
}
$rs = $core->blog->getLangs();
if ($rs->count() <= 1) {
return;
}
$langs = l10n::getISOcodes();
$res =
($w->content_only ? '' : '<div class="langs'.($w->class ? ' '.html::escapeHTML($w->class) : '').'">').
($w->title ? '<h2>'.html::escapeHTML($w->title).'</h2>' : '').
'<ul>';
while ($rs->fetch())
{
$l = ($_ctx->cur_lang == $rs->post_lang) ? '<strong>%s</strong>' : '%s';
$lang_name = isset($langs[$rs->post_lang]) ? $langs[$rs->post_lang] : $rs->post_lang;
$res .=
' <li>'.
sprintf($l,
'<a href="'.$core->url->getURLFor('lang',$rs->post_lang).'" '.
'<a href="'.$core->blog->url.$core->url->getURLFor('lang',$rs->post_lang).'" '.
'class="lang-'.$rs->post_lang.'">'.
$lang_name.'</a>').
' </li>';
}
$res .= '</ul>'.($w->content_only ? '' : '</div>');
return $res;
}
public static function subscribe($w)
{
global $core;
if (($w->homeonly == 1 && $core->url->type != 'default') ||
($w->homeonly == 2 && $core->url->type == 'default')) {
return;
}
$type = ($w->type == 'atom' || $w->type == 'rss2') ? $w->type : 'rss2';
$mime = $type == 'rss2' ? 'application/rss+xml' : 'application/atom+xml';
$p_title = __('This blog\'s entries %s feed');
$c_title = __('This blog\'s comments %s feed');
$res =
($w->content_only ? '' : '<div class="syndicate'.($w->class ? ' '.html::escapeHTML($w->class) : '').'">').
($w->title ? '<h2>'.html::escapeHTML($w->title).'</h2>' : '').
'<ul>';
$res .=
'<li><a type="'.$mime.'" '.
'href="'.$core->blog->url.$core->url->getURLFor('feed', $type).'" '.
'title="'.sprintf($p_title,($type == 'atom' ? 'Atom' : 'RSS')).'" class="feed">'.
__('Entries feed').'</a></li>';
if ($core->blog->settings->system->allow_comments || $core->blog->settings->system->allow_trackbacks)
{
$res .=
@ -231,27 +232,27 @@ class defaultWidgets
'title="'.sprintf($c_title,($type == 'atom' ? 'Atom' : 'RSS')).'" class="feed">'.
__('Comments feed').'</a></li>';
}
$res .= '</ul>'.($w->content_only ? '' : '</div>');
return $res;
}
public static function feed($w)
{
if (!$w->url) {
return;
}
global $core;
if (($w->homeonly == 1 && $core->url->type != 'default') ||
($w->homeonly == 2 && $core->url->type == 'default')) {
return;
}
$limit = abs((integer) $w->limit);
try {
$feed = feedReader::quickParse($w->url,DC_TPL_CACHE);
if ($feed == false || count($feed->items) == 0) {
@ -260,25 +261,25 @@ class defaultWidgets
} catch (Exception $e) {
return;
}
$res =
($w->content_only ? '' : '<div class="feed'.($w->class ? ' '.html::escapeHTML($w->class) : '').'">').
($w->title ? '<h2>'.html::escapeHTML($w->title).'</h2>' : '').
'<ul>';
$i = 0;
foreach ($feed->items as $item) {
$title = isset($item->title) && strlen(trim($item->title)) ? $item->title : '';
$link = isset($item->link) && strlen(trim($item->link)) ? $item->link : '';
if (!$link && !$title) {
continue;
}
if (!$title) {
$title = substr($link,0,25).'...';
}
$li = $link ? '<a href="'.html::escapeHTML($item->link).'">'.$title.'</a>' : $title;
$res .= ' <li>'.$li.'</li> ';
$i++;
@ -286,43 +287,43 @@ class defaultWidgets
break;
}
}
$res .= '</ul>'.($w->content_only ? '' : '</div>');
return $res;
}
public static function text($w)
{
global $core;
if (($w->homeonly == 1 && $core->url->type != 'default') ||
($w->homeonly == 2 && $core->url->type == 'default')) {
return;
}
$res =
($w->content_only ? '' : '<div class="text'.($w->class ? ' '.html::escapeHTML($w->class) : '').'">').
($w->title ? '<h2>'.html::escapeHTML($w->title).'</h2>' : '').
$w->text.
($w->content_only ? '' : '</div>');
return $res;
}
public static function lastposts($w)
{
global $core;
if (($w->homeonly == 1 && $core->url->type != 'default') ||
($w->homeonly == 2 && $core->url->type == 'default')) {
return;
}
$params['limit'] = abs((integer) $w->limit);
$params['order'] = 'post_dt desc';
$params['no_content'] = true;
if ($w->category)
{
if ($w->category == 'null') {
@ -333,7 +334,7 @@ class defaultWidgets
$params['cat_url'] = $w->category;
}
}
if ($w->tag)
{
$params['meta_id'] = $w->tag;
@ -343,47 +344,47 @@ class defaultWidgets
{
$rs = $core->blog->getPosts($params);
}
if ($rs->isEmpty()) {
return;
}
$res =
($w->content_only ? '' : '<div class="lastposts'.($w->class ? ' '.html::escapeHTML($w->class) : '').'">').
($w->title ? '<h2>'.html::escapeHTML($w->title).'</h2>' : '').
'<ul>';
while ($rs->fetch()) {
$res .= '<li><a href="'.$rs->getURL().'">'.
html::escapeHTML($rs->post_title).'</a></li>';
}
$res .= '</ul>'.($w->content_only ? '' : '</div>');
return $res;
}
public static function lastcomments($w)
{
global $core;
if (($w->homeonly == 1 && $core->url->type != 'default') ||
($w->homeonly == 2 && $core->url->type == 'default')) {
return;
}
$params['limit'] = abs((integer) $w->limit);
$params['order'] = 'comment_dt desc';
$rs = $core->blog->getComments($params);
if ($rs->isEmpty()) {
return;
}
$res = ($w->content_only ? '' : '<div class="lastcomments'.($w->class ? ' '.html::escapeHTML($w->class) : '').'">').
($w->title ? '<h2>'.html::escapeHTML($w->title).'</h2>' : '').
'<ul>';
while ($rs->fetch())
{
$res .= '<li class="'.
@ -393,10 +394,9 @@ class defaultWidgets
html::escapeHTML($rs->comment_author).
'</a></li>';
}
$res .= '</ul>'.($w->content_only ? '' : '</div>');
return $res;
}
}
?>