Changeset 3400
- Timestamp:
- 10/23/16 20:06:09 (7 years ago)
- Location:
- plugins/lastBlogUpdate
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/lastBlogUpdate/CHANGELOG
r3338 r3400 1 lastBlogUpdate 2016.10.24 2 =========================================================== 3 * Mixed svn and hg releases 4 * Updated year and links 5 1 6 lastBlogUpdate 2015.01.29 - Pierre Van Glabeke 2 7 =========================================================== -
plugins/lastBlogUpdate/_admin.php
r3338 r3400 4 4 # This file is part of lastBlogUpdate, a plugin for Dotclear 2. 5 5 # 6 # Copyright (c) 2009-201 3Jean-Christian Denis and contributors7 # contact@jcdenis.fr http://jcd .lv6 # Copyright (c) 2009-2016 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcdenis.net 8 8 # 9 9 # Licensed under the GPL version 2.0 license. -
plugins/lastBlogUpdate/_define.php
r3338 r3400 4 4 # This file is part of lastBlogUpdate, a plugin for Dotclear 2. 5 5 # 6 # Copyright (c) 2009-201 3Jean-Christian Denis and contributors7 # contact@jcdenis.fr http://jcd .lv6 # Copyright (c) 2009-2016 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcdenis.net 8 8 # 9 9 # Licensed under the GPL version 2.0 license. … … 26 26 "Jean-Christian Denis, Pierre Van Glabeke", 27 27 /* Version */ 28 '201 5.01.29',28 '2016.10.24', 29 29 array( 30 30 'permissions' => 'usage,contentadmin', 31 31 'type' => 'plugin', 32 'dc_min' => '2. 6',32 'dc_min' => '2.10', 33 33 'support' => 'http://lab.dotclear.org/wiki/plugin/lastBlogUpdate', 34 34 'details' => 'http://plugins.dotaddict.org/dc2/details/lastBlogUpdate' -
plugins/lastBlogUpdate/_public.php
r3338 r3400 4 4 # This file is part of lastBlogUpdate, a plugin for Dotclear 2. 5 5 # 6 # Copyright (c) 2009-201 3Jean-Christian Denis and contributors7 # contact@jcdenis.fr http://jcd .lv6 # Copyright (c) 2009-2016 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcdenis.net 8 8 # 9 9 # Licensed under the GPL version 2.0 license. … … 24 24 global $core; 25 25 26 # offline mod 26 27 if ($w->offline) 27 28 return; … … 94 95 95 96 # Display 96 97 98 97 $res = 98 ($w->title ? $w->renderTitle(html::escapeHTML($w->title)) : ''). 99 '<ul>'.$blog.$post.$comment.$media.$addons.'</ul>'; 99 100 100 101 return $w->renderDiv($w->content_only,'lastblogupdate '.$w->class,'',$res); 101 102 } -
plugins/lastBlogUpdate/_widgets.php
r3338 r3400 4 4 # This file is part of lastBlogUpdate, a plugin for Dotclear 2. 5 5 # 6 # Copyright (c) 2009-201 3Jean-Christian Denis and contributors7 # contact@jcdenis.fr http://jcd .lv6 # Copyright (c) 2009-2016 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcdenis.net 8 8 # 9 9 # Licensed under the GPL version 2.0 license. … … 138 138 '' 139 139 ); 140 $w->lastblogupdate->setting('offline',__('Offline'),0,'check'); 140 $w->lastblogupdate->setting( 141 'offline', 142 __('Offline'), 143 0, 144 'check' 145 ); 141 146 }
Note: See TracChangeset
for help on using the changeset viewer.