Plugin Directory

Changeset 204565


Ignore:
Timestamp:
02/12/2010 01:37:18 PM (16 years ago)
Author:
Txanny
Message:

Updated to Community 0.10.1 and Framework 0.8.1

Location:
alkivia/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • alkivia/trunk/alkivia.php

    r203885 r204565  
    44Plugin URI: http://alkivia.org/wordpress/community
    55Description: Create and manage user communities in any WordPress blog.
    6 Version: 0.10
     6Version: 0.10.1
    77Author: Jordi Canals
    88Author URI: http://alkivia.org
     
    1313 * Plugin to create and manage communities in any WordPress blog.
    1414 *
    15  * @version     $Rev: 869 $
     15 * @version     $Rev: 926 $
    1616 * @author      Jordi Canals
    1717 * @copyright   Copyright (C) 2009, 2010 Jordi Canals
  • alkivia/trunk/framework/classes/abstract/plugin.php

    r203885 r204565  
    7272
    7373            add_action('plugins_loaded', array($this, 'init'));
     74            add_action('ak_' . $this->ID . '_object_created', array($this, 'loadComponents'));
    7475        }
    7576    }
     
    195196
    196197        $this->pluginsLoaded();
    197         $this->loadComponents();
     198
     199        do_action('ak_' . $this->ID . '_components_init');
    198200    }
    199201
     
    219221            }
    220222        }
    221 
    222         do_action('ak_' . $this->ID . '_components_init');
    223223    }
    224224
  • alkivia/trunk/framework/lib/objects.php

    r203885 r204565  
    4444{
    4545    $GLOBALS['_akv'][$name] =& $object;
     46    do_action('ak_' . $name . '_object_created');
     47
    4648    return $object;
    4749}
  • alkivia/trunk/framework/loader.php

    r203885 r204565  
    3030// TODO: Bybapass framework loading if already loaded.
    3131// TODO: Load Framework at plugins_loaded or init to allow filters on plugins?
    32 //       If loaded on plufins_loaded will not load for themes.
     32//       If loaded on plugins_loaded will not load for themes.
    3333
    34 $akf_version = '0.8';
     34$akf_version = '0.8.1';
    3535
    3636if ( file_exists(WP_CONTENT_DIR . '/alkivia.php') ) {
  • alkivia/trunk/readme.txt

    r203885 r204565  
    55Docs link: http://wiki.alkivia.org/community
    66Tags: community, communities, profile, profiles, profiler, directory, members, member, users, widget, widgets, login, photo, picture, gallery
    7 Requires at least: 2.8
     7Requires at least: 2.9
    88Tested up to: 2.9.1
    99Stable tag: trunk
     
    122122== Changelog ==
    123123
     124= 0.10.1 =
     125  * Fixed a local avatar not showing problem. (Framework Issue).
     126 
    124127= 0.10 =
    125128  * Adapted to work with new Alkivia Framework (0.8).
     
    210213== Upgrade Notice ==
    211214
    212 = 0.9.4 =
    213 Changed license to GPLv2.
     215= 0.10.1 =
     216Fixed a local avatar problem
Note: See TracChangeset for help on using the changeset viewer.