2015-04-25 18:38:55 +00:00
|
|
|
<?php
|
|
|
|
# -- BEGIN LICENSE BLOCK ----------------------------------
|
|
|
|
# This file is part of shortArchives, a plugin for Dotclear.
|
2015-05-29 22:50:40 +00:00
|
|
|
#
|
2015-04-25 18:38:55 +00:00
|
|
|
# Copyright (c) 2009-2015 - annso and contributors
|
|
|
|
# contact@as-i-am.fr
|
2015-05-29 22:50:40 +00:00
|
|
|
#
|
2015-04-25 18:38:55 +00:00
|
|
|
# Licensed under the GPL version 2.0 license.
|
|
|
|
# A copy of this license is available in LICENSE file or at
|
|
|
|
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
# -- END LICENSE BLOCK ------------------------------------
|
|
|
|
|
|
|
|
if (!defined('DC_RC_PATH')) {return;}
|
|
|
|
|
|
|
|
require dirname(__FILE__).'/_widgets.php';
|
|
|
|
|
|
|
|
$core->addBehavior('publicHeadContent',array('publicShortArchives','publicHeadContent'));
|
|
|
|
|
|
|
|
class publicShortArchives
|
|
|
|
{
|
|
|
|
public static function publicHeadContent($core)
|
|
|
|
{
|
|
|
|
$url = $core->blog->getQmarkURL().'pf='.basename(dirname(__FILE__));
|
|
|
|
echo '<script type="text/javascript" src="'.$url.'/js/accordion.js"></script>'."\n";
|
|
|
|
echo '<link rel="stylesheet" type="text/css" media="projection, screen" href="'.$url."/css/shortArchives.css\" />\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class tplShortArchives
|
|
|
|
{
|
|
|
|
public static function shortArchivesWidgets($w)
|
|
|
|
{
|
|
|
|
global $core;
|
|
|
|
|
|
|
|
if ($w->offline)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (($w->homeonly == 1 && $core->url->type != 'default') ||
|
|
|
|
($w->homeonly == 2 && $core->url->type == 'default')) {
|
|
|
|
return;
|
|
|
|
}
|
2015-05-29 22:50:40 +00:00
|
|
|
|
2015-04-25 18:38:55 +00:00
|
|
|
$params = array();
|
|
|
|
$params['type'] = 'month';
|
2015-05-29 22:50:40 +00:00
|
|
|
$rs = $core->blog->getDates($params);
|
2015-04-25 18:38:55 +00:00
|
|
|
unset($params);
|
|
|
|
if ($rs->isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-05-29 22:50:40 +00:00
|
|
|
$active_year = null;
|
|
|
|
if (($core->url->type == 'archive') && preg_match('`^/([0-9]{4})/([0-9]{2})$`',$core->url->args,$matches)) {
|
|
|
|
$active_year = $matches[1];
|
|
|
|
}
|
|
|
|
|
2015-04-25 18:38:55 +00:00
|
|
|
$posts = array();
|
|
|
|
while ($rs->fetch()) {
|
2015-05-29 22:50:40 +00:00
|
|
|
$posts[dt::dt2str(__('%Y'),$rs->dt)][] = array('url' => $rs->url($core),
|
|
|
|
'date' => html::escapeHTML(dt::dt2str(__('%B'),$rs->dt)),
|
2015-04-25 18:38:55 +00:00
|
|
|
'nbpost' => $rs->nb_post);
|
|
|
|
}
|
|
|
|
|
|
|
|
$res =
|
|
|
|
($w->title ? $w->renderTitle(html::escapeHTML($w->title)) : '').
|
2015-05-29 22:50:40 +00:00
|
|
|
'<ul class="arch-years">';
|
|
|
|
|
|
|
|
foreach($posts as $annee => $post) {
|
|
|
|
if (!is_null($active_year) && $active_year == $annee) {
|
|
|
|
$res .= '<li class="open">';
|
|
|
|
} else {
|
|
|
|
$res .= '<li>';
|
|
|
|
}
|
|
|
|
$res .= '<span>'.$annee.'</span><ul class="arch-months">';
|
2015-04-25 18:38:55 +00:00
|
|
|
for($i=0; $i<sizeof($post); $i++) {
|
|
|
|
$res .=
|
|
|
|
'<li><a href="'.$post[$i]['url'].'">'.$post[$i]['date'].'</a>'.
|
|
|
|
($w->postcount ? ' ('.$post[$i]['nbpost'].')' : '').
|
|
|
|
'</li>';
|
|
|
|
}
|
|
|
|
$res .= '</ul></li>';
|
|
|
|
}
|
|
|
|
$res .= '</ul>';
|
|
|
|
|
2015-06-08 11:09:21 +00:00
|
|
|
if ($core->url->getBase('archive') && !is_null($w->allarchivesslinktitle) && $w->allarchivesslinktitle !== '')
|
|
|
|
{
|
|
|
|
$res .=
|
|
|
|
'<p><strong><a href="'.$core->blog->url.$core->url->getURLFor("archive").'">'.
|
|
|
|
html::escapeHTML($w->allarchivesslinktitle).'</a></strong></p>';
|
|
|
|
}
|
|
|
|
|
2015-04-25 18:38:55 +00:00
|
|
|
return $w->renderDiv($w->content_only,'shortArchives '.$w->class,'',$res);
|
|
|
|
}
|
2015-05-29 22:50:40 +00:00
|
|
|
}
|