Changeset 2438 for plugins/doTwit
- Timestamp:
- 07/04/10 05:40:18 (13 years ago)
- Location:
- plugins/doTwit
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/doTwit/_define.php
r2404 r2438 16 16 /* Description*/ "Twitter for DotClear 2", 17 17 /* Author */ "Valentin VAN MEEUWEN (Exilius.net), Pierre Van Glabeke (weeeb.fr)", 18 /* Version */ '1.3. 1',18 /* Version */ '1.3.2', 19 19 /* Permissions */ 'admin' 20 20 /* date : 28062010 */ -
plugins/doTwit/_public.php
r2230 r2438 20 20 private static $path_cache = 'cache/'; 21 21 22 public static function dotwitWidget( &$w) {22 public static function dotwitWidget($w) { 23 23 global $core; 24 24 $cache_file = self::$path_cache.'dotwit_'.md5($w->idTwitter.$w->timeline_friends); … … 114 114 } 115 115 116 117 116 for ($i=0;$i<$nb;$i++) { 118 117 -
plugins/doTwit/_widgets.php
r2404 r2438 19 19 class doTwitBehaviors 20 20 { 21 public static function initWidgets( &$w)21 public static function initWidgets($w) 22 22 { 23 global $core; 23 24 $w->create('dotwit',__('doTwit'),array('doTwit','dotwitWidget')); 24 25 $w->dotwit->setting('title',__('Title (optional):'),''); … … 38 39 class doTwitPublic 39 40 { 40 public static function publicHeadContent( &$core)41 public static function publicHeadContent($core) 41 42 { 42 43 … … 48 49 "</style>\n"."\n"; 49 50 50 $theme_url=$core->blog->settings-> themes_url."/".$core->blog->settings->theme;51 $theme_url=$core->blog->settings->system->themes_url."/".$core->blog->settings->system->theme; 51 52 52 53 echo
Note: See TracChangeset
for help on using the changeset viewer.