Changeset 3401 for plugins/topWriter
- Timestamp:
- 10/23/16 20:54:52 (7 years ago)
- Location:
- plugins/topWriter
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/topWriter/CHANGELOG
r3336 r3401 2 2 =========================================================== 3 3 * literal rank of writer depending of num of com 4 5 topWriter 0.7 - 2016-10-24 6 =========================================================== 7 * Mixed svn and hg releases 8 * Updated year and links 4 9 5 10 topWriter 0.6 - 23-01-2015 - Pierre Van Glabeke -
plugins/topWriter/_admin.php
r3332 r3401 4 4 # This file is part of topWriter, 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/topWriter/_define.php
r3336 r3401 4 4 # This file is part of topWriter, 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 '0. 6',28 '0.7', 29 29 array( 30 30 'permissions' => 'admin', 31 31 'type' => 'plugin', 32 'dc_min' => '2. 6',32 'dc_min' => '2.10', 33 33 'support' => 'http://lab.dotclear.org/wiki/plugin/topWriter', 34 34 'details' => 'http://plugins.dotaddict.org/dc2/details/topWriter' -
plugins/topWriter/_public.php
r3332 r3401 4 4 # This file is part of topWriter, 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/topWriter/_widgets.php
r3336 r3401 4 4 # This file is part of topWriter, 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. … … 90 90 ) 91 91 ); 92 $w->topcom->setting('content_only',__('Content only'),0,'check'); 93 $w->topcom->setting('class',__('CSS class:'),''); 94 $w->topcom->setting('offline',__('Offline'),0,'check'); 92 $w->topcom->setting( 93 'content_only', 94 __('Content only'), 95 0, 96 'check' 97 ); 98 $w->topcom->setting( 99 'class', 100 __('CSS class:'), 101 '' 102 ); 103 $w->topcom->setting( 104 'offline', 105 __('Offline'), 106 0, 107 'check' 108 ); 95 109 96 110 #Top entries widget … … 153 167 ) 154 168 ); 155 $w->toppost->setting('content_only',__('Content only'),0,'check'); 156 $w->toppost->setting('class',__('CSS class:'),''); 157 $w->toppost->setting('offline',__('Offline'),0,'check'); 169 $w->toppost->setting( 170 'content_only', 171 __('Content only'), 172 0, 173 'check' 174 ); 175 $w->toppost->setting( 176 'class', 177 __('CSS class:'), 178 '' 179 ); 180 $w->toppost->setting( 181 'offline', 182 __('Offline'), 183 0, 184 'check' 185 ); 158 186 } 159 187 … … 249 277 '<ul>'.$content.'</ul>'; 250 278 251 return $w->renderDiv($w->content_only,'topcomments '.$w->class,'',$res); 279 return $w->renderDiv( 280 $w->content_only, 281 'topcomments '.$w->class, 282 '', 283 $res 284 ); 252 285 } 253 286 254 287 public static function topPost($w) 255 288 { … … 333 366 '<ul>'.$content.'</ul>'; 334 367 335 return $w->renderDiv($w->content_only,'topentries '.$w->class,'',$res); 368 return $w->renderDiv( 369 $w->content_only, 370 'topentries '.$w->class, 371 '', 372 $res 373 ); 336 374 } 337 375
Note: See TracChangeset
for help on using the changeset viewer.