Classes

File util/captcha/CaptchaProvidersService.class.php

File util/captcha/CaptchaProvidersService.class.php

 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 
<?php
/**
 * @package     Util
 * @subpackage  Captcha
 * @copyright   &copy; 2005-2019 PHPBoost
 * @license     https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL-3.0
 * @author      Kevin MASSY <reidlos@phpboost.com>
 * @version     PHPBoost 5.2 - last update: 2014 12 22
 * @since       PHPBoost 3.0 - 2012 09 04
*/

class CaptchaProvidersService
{
    public static function create_factory($identifier)
    {
        return self::get_captcha($identifier);
    }

    public static function get_captcha($identifier)
    {
        $captchas = self::get_captchas();
        if (array_key_exists($identifier, $captchas))
        {
            return $captchas[$identifier];
        }
    }

    public static function get_captchas()
    {
        $captchas = array();
        foreach (self::get_extensions_point() as $id => $provider)
        {
            $captchas[$id] = $provider;
        }
        return $captchas;
    }

    public static function get_extensions_point()
    {
        return AppContext::get_extension_provider_service()->get_extension_point(Captcha::EXTENSION_POINT);
    }
}
?>