예제 #1
0
function groups_check_installed()
{
    global $wpdb, $bp;
    require BP_PLUGIN_DIR . '/bp-groups/bp-groups-admin.php';
    /* Need to check db tables exist, activate hook no-worky in mu-plugins folder. */
    if (get_site_option('bp-groups-db-version') < BP_GROUPS_DB_VERSION) {
        groups_install();
    }
}
예제 #2
0
파일: bp-groups.php 프로젝트: n-sane/zaroka
function groups_check_installed() {
	/* Need to check db tables exist, activate hook no-worky in mu-plugins folder. */
	if ( get_site_option( 'bp-groups-db-version' ) < BP_GROUPS_DB_VERSION )
		groups_install();
}