Changeset 204565
- Timestamp:
- 02/12/2010 01:37:18 PM (16 years ago)
- Location:
- alkivia/trunk
- Files:
-
- 5 edited
-
alkivia.php (modified) (2 diffs)
-
framework/classes/abstract/plugin.php (modified) (3 diffs)
-
framework/lib/objects.php (modified) (1 diff)
-
framework/loader.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
alkivia/trunk/alkivia.php
r203885 r204565 4 4 Plugin URI: http://alkivia.org/wordpress/community 5 5 Description: Create and manage user communities in any WordPress blog. 6 Version: 0.10 6 Version: 0.10.1 7 7 Author: Jordi Canals 8 8 Author URI: http://alkivia.org … … 13 13 * Plugin to create and manage communities in any WordPress blog. 14 14 * 15 * @version $Rev: 869$15 * @version $Rev: 926 $ 16 16 * @author Jordi Canals 17 17 * @copyright Copyright (C) 2009, 2010 Jordi Canals -
alkivia/trunk/framework/classes/abstract/plugin.php
r203885 r204565 72 72 73 73 add_action('plugins_loaded', array($this, 'init')); 74 add_action('ak_' . $this->ID . '_object_created', array($this, 'loadComponents')); 74 75 } 75 76 } … … 195 196 196 197 $this->pluginsLoaded(); 197 $this->loadComponents(); 198 199 do_action('ak_' . $this->ID . '_components_init'); 198 200 } 199 201 … … 219 221 } 220 222 } 221 222 do_action('ak_' . $this->ID . '_components_init');223 223 } 224 224 -
alkivia/trunk/framework/lib/objects.php
r203885 r204565 44 44 { 45 45 $GLOBALS['_akv'][$name] =& $object; 46 do_action('ak_' . $name . '_object_created'); 47 46 48 return $object; 47 49 } -
alkivia/trunk/framework/loader.php
r203885 r204565 30 30 // TODO: Bybapass framework loading if already loaded. 31 31 // TODO: Load Framework at plugins_loaded or init to allow filters on plugins? 32 // If loaded on plu fins_loaded will not load for themes.32 // If loaded on plugins_loaded will not load for themes. 33 33 34 $akf_version = '0.8 ';34 $akf_version = '0.8.1'; 35 35 36 36 if ( file_exists(WP_CONTENT_DIR . '/alkivia.php') ) { -
alkivia/trunk/readme.txt
r203885 r204565 5 5 Docs link: http://wiki.alkivia.org/community 6 6 Tags: community, communities, profile, profiles, profiler, directory, members, member, users, widget, widgets, login, photo, picture, gallery 7 Requires at least: 2. 87 Requires at least: 2.9 8 8 Tested up to: 2.9.1 9 9 Stable tag: trunk … … 122 122 == Changelog == 123 123 124 = 0.10.1 = 125 * Fixed a local avatar not showing problem. (Framework Issue). 126 124 127 = 0.10 = 125 128 * Adapted to work with new Alkivia Framework (0.8). … … 210 213 == Upgrade Notice == 211 214 212 = 0. 9.4=213 Changed license to GPLv2. 215 = 0.10.1 = 216 Fixed a local avatar problem
Note: See TracChangeset
for help on using the changeset viewer.