Changeset 3045
- Timestamp:
- 05/20/11 20:53:02 (12 years ago)
- Location:
- plugins/tagflash
- Files:
-
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/tagflash/CHANGELOG
r2779 r3045 1 Tag Flash 1.1.1 - 2010-05-20 2 ================================= 3 * Add div to encapsulate widget's content. 4 1 5 Tag Flash 1.1.0 - 2010-11-28 2 6 ================================= -
plugins/tagflash/MANIFEST
r2779 r3045 1 tagflash/CREDITS 2 tagflash/_public.php 1 tagflash/js/jquery.colorpicker.js 2 tagflash/_widgets.php 3 tagflash/index.php 4 tagflash/img/colorpicker_overlay.png 5 tagflash/img/colorpicker_rgb_b.png 6 tagflash/img/colorpicker_indic.gif 7 tagflash/img/colorpicker_hsb_b.png 8 tagflash/img/colorpicker_submit.png 9 tagflash/img/colorpicker_hex.png 10 tagflash/img/colorpicker_select.gif 11 tagflash/img/colorpicker_rgb_r.png 12 tagflash/img/icon.png 13 tagflash/img/colorpicker_hsb_s.png 14 tagflash/img/colorpicker_rgb_g.png 15 tagflash/img/colorpicker_hsb_h.png 16 tagflash/img/colorpicker_background.png 17 tagflash/tagcloud.swf 3 18 tagflash/locales/en/help.html 4 19 tagflash/locales/fr/main.po 5 20 tagflash/locales/fr/help.html 6 tagflash/_widgets.php 21 tagflash/MANIFEST 22 tagflash/_install.php 23 tagflash/COPYING 24 tagflash/tpl/index.tpl 25 tagflash/CREDITS 26 tagflash/_define.php 27 tagflash/inc/class.tpl.tag.flash.php 28 tagflash/CHANGELOG 7 29 tagflash/_prepend.php 8 tagflash/MANIFEST 9 tagflash/index.php 10 tagflash/img/colorpicker_hex.png 11 tagflash/img/colorpicker_hsb_b.png 12 tagflash/img/colorpicker_rgb_g.png 13 tagflash/img/colorpicker_overlay.png 14 tagflash/img/colorpicker_rgb_b.png 15 tagflash/img/colorpicker_submit.png 16 tagflash/img/colorpicker_select.gif 17 tagflash/img/colorpicker_hsb_h.png 18 tagflash/img/icon.png 19 tagflash/img/colorpicker_indic.gif 20 tagflash/img/colorpicker_rgb_r.png 21 tagflash/img/colorpicker_hsb_s.png 22 tagflash/img/colorpicker_background.png 23 tagflash/tagcloud.swf 24 tagflash/swfobject.js 25 tagflash/tpl/index.tpl 26 tagflash/js/jquery.colorpicker.js 27 tagflash/CHANGELOG 30 tagflash/colorpicker.css 31 tagflash/_public.php 28 32 tagflash/_admin.php 29 tagflash/inc/class.tpl.tag.flash.php30 tagflash/colorpicker.css31 tagflash/_install.php32 tagflash/_define.php33 tagflash/COPYING34 tagflash/TODO -
plugins/tagflash/_define.php
r2779 r3045 3 3 // | Tag Flash - a plugin for Dotclear | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2010 Nicolas Roudairehttp://www.nikrou.net |5 // | Copyright(C) 2010-2011 Nicolas Roudaire http://www.nikrou.net | 6 6 // | Copyright(C) 2010 Guenaël Després | 7 7 // +-----------------------------------------------------------------------+ … … 27 27 /* Description*/ "Flash based Tag Cloud for Dotclear", 28 28 /* Author */ "Gwénaël Després (based on WordPress plugin by Roy Tanck)", 29 /* Version */ '1.1. 0',29 /* Version */ '1.1.1', 30 30 /* Permissions */ 'usage,contentadmin' 31 31 ); -
plugins/tagflash/inc/class.tpl.tag.flash.php
r2779 r3045 67 67 $res .= '<p><a href="'.$core->blog->url.$core->url->getBase('tags').'">'.__('All tags').'</a></p>'; 68 68 69 return $res;69 return '<div class="tagFlash">'.$res.'</div>'; 70 70 } 71 71
Note: See TracChangeset
for help on using the changeset viewer.