* Plugin URI: https://github.com/uhm-coe/authorizer * Text Domain: authorizer * Domain Path: /languages * License: GPL2 * Version: 2.9.2 * * Portions forked from Restricted Site Access plugin: * http://wordpress.org/plugins/restricted-site-access/ * Portions forked from wpCAS plugin: * http://wordpress.org/extend/plugins/cas-authentication/ * Portions forked from Limit Login Attempts: * http://wordpress.org/plugins/limit-login-attempts/ * * @package authorizer */ namespace Authorizer; require_once dirname( __FILE__ ) . '/src/authorizer/abstract-class-static-instance.php'; require_once dirname( __FILE__ ) . '/src/authorizer/class-wp-plugin-authorizer.php'; require_once dirname( __FILE__ ) . '/src/authorizer/class-helper.php'; require_once dirname( __FILE__ ) . '/src/authorizer/class-updates.php'; require_once dirname( __FILE__ ) . '/src/authorizer/class-authentication.php'; require_once dirname( __FILE__ ) . '/src/authorizer/class-authorization.php'; require_once dirname( __FILE__ ) . '/src/authorizer/class-login-form.php'; require_once dirname( __FILE__ ) . '/src/authorizer/class-dashboard-widget.php'; require_once dirname( __FILE__ ) . '/src/authorizer/class-ajax-endpoints.php'; require_once dirname( __FILE__ ) . '/src/authorizer/class-sync-userdata.php'; require_once dirname( __FILE__ ) . '/src/authorizer/class-admin-page.php'; require_once dirname( __FILE__ ) . '/src/authorizer/class-options.php'; require_once dirname( __FILE__ ) . '/src/authorizer/options/class-access-lists.php'; require_once dirname( __FILE__ ) . '/src/authorizer/options/class-login-access.php'; require_once dirname( __FILE__ ) . '/src/authorizer/options/class-public-access.php'; require_once dirname( __FILE__ ) . '/src/authorizer/options/class-external.php'; require_once dirname( __FILE__ ) . '/src/authorizer/options/external/class-google.php'; require_once dirname( __FILE__ ) . '/src/authorizer/options/external/class-cas.php'; require_once dirname( __FILE__ ) . '/src/authorizer/options/external/class-ldap.php'; require_once dirname( __FILE__ ) . '/src/authorizer/options/class-advanced.php'; /** * Add phpCAS library if it's not included. * * @see https://wiki.jasig.org/display/CASC/phpCAS+installation+guide */ if ( ! defined( 'PHPCAS_VERSION' ) ) { require_once dirname( __FILE__ ) . '/vendor/phpCAS-1.3.6/CAS.php'; } /** * Helper function to always return the path to the plugin's entry point. Used * when locating asset paths using plugins_url(). */ function plugin_root() { return __FILE__; } // Instantiate the plugin class. WP_Plugin_Authorizer::get_instance();