2015-07-02, 09:01:59
in current versions you can only get the installed version of active plugins ( registered plugins )
And of course you have to wait until common hook to check this
PHP Code:
* global array for storing all plugins created from plugins register_plugin() call
* $live_plugins[$id] = (bool) enabled
*
* $plugin_info[$id] = array(
* 'name' => $name,
* 'version' => $ver,
* 'author' => $auth,
* 'author_url' => $auth_url,
* 'description' => $desc,
* 'page_type' => $type,
* 'load_data' => $loaddata
* );
And of course you have to wait until common hook to check this