Habari\Update::register_beacons PHP Method

register_beacons() private static method

Includes Habari core, all active plugins, and any pluggable that implements the update_check hook.
private static register_beacons ( )
    private static function register_beacons()
    {
        // if there are already beacons, don't run again
        if (count(self::instance()->beacons) > 0) {
            return;
        }
        Update::add('Habari', '7a0313be-d8e3-11db-8314-0800200c9a66', Version::get_habariversion());
        // add the active theme
        self::add_theme();
        // add all active plugins
        self::add_plugins();
        Plugins::act('update_check');
    }