From 074cd6cd1672369156c4a46632c341b19b9218da Mon Sep 17 00:00:00 2001 From: brol Date: Mon, 8 Jun 2015 13:09:21 +0200 Subject: [PATCH] 1.8 ajout lien toutes les archives --- _define.php | 2 +- _public.php | 7 +++++++ _widgets.php | 1 + changelog | 3 +++ locales/fr/main.po | 9 ++++++++- 5 files changed, 20 insertions(+), 2 deletions(-) diff --git a/_define.php b/_define.php index e53ff4f..dacaa15 100644 --- a/_define.php +++ b/_define.php @@ -16,7 +16,7 @@ $this->registerModule( /* Name */ "shortArchives", /* Description*/ "Display blog archives in an accordion menu, sorted by year", /* Author */ "annso, Pierre Van Glabeke", - /* Version */ "1.7", + /* Version */ "1.8", /* Properties */ array( 'permissions' => 'usage,contentadmin', diff --git a/_public.php b/_public.php index baa4b7f..c0d18d8 100644 --- a/_public.php +++ b/_public.php @@ -81,6 +81,13 @@ class tplShortArchives } $res .= ''; + if ($core->url->getBase('archive') && !is_null($w->allarchivesslinktitle) && $w->allarchivesslinktitle !== '') + { + $res .= + '

'. + html::escapeHTML($w->allarchivesslinktitle).'

'; + } + return $w->renderDiv($w->content_only,'shortArchives '.$w->class,'',$res); } } diff --git a/_widgets.php b/_widgets.php index d2c5c9b..979dfd9 100644 --- a/_widgets.php +++ b/_widgets.php @@ -22,6 +22,7 @@ class shortArchivesWidgets __('Blog Archive List an accordion menu, sorted by year')); $w->shortArchives->setting('title',__('Title:'),__('Archives')); $w->shortArchives->setting('postcount',__('With entries counts'),1,'check'); + $w->shortArchives->setting('allarchivesslinktitle',__('Link to all archives:'),__('All archives')); $w->shortArchives->setting('homeonly',__('Display on:'),0,'combo', array( __('All pages') => 0, diff --git a/changelog b/changelog index 0bc4608..55702f3 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,6 @@ +v1.8 - 08-06-2015 - Pierre Van Glabeke +* ajout lien vers toutes les archives + v1.7 - 28-05-2015 - Kozlika & Nikrou * suppression d'image et gestion de l'indicateur via css * ajout de classes sur chaque liste (année/mois) diff --git a/locales/fr/main.po b/locales/fr/main.po index c36eda9..3b71915 100644 --- a/locales/fr/main.po +++ b/locales/fr/main.po @@ -13,4 +13,11 @@ msgid "Display blog archives in an accordion menu, sorted by year" msgstr "Afficher les archives du blog dans un menu accordéon, trié par années" msgid "Blog Archive List an accordion menu, sorted by year" -msgstr "Liste des archives du blog dans un menu accordéon, trié par années" \ No newline at end of file +msgstr "Liste des archives du blog dans un menu accordéon, trié par années" + +msgid "Link to all archives:" +msgstr "Lien vers toutes les archives :" + +msgid "All archives" +msgstr "Toutes les archives" +