├── .github └── workflows │ └── php.yml ├── .gitignore ├── assets ├── screenshot-1.png └── screenshot-2.png ├── authenticator.php ├── composer.json ├── example_plugin__exclude_posts.php ├── inc ├── class-Authenticator_Protect_Upload.php ├── class-Authenticator_Settings.php ├── class-Authenticator_Settings_UI.php ├── class-Authenticator_User_Profile.php └── class-HTTP_Auth.php ├── js └── admin-ui.js ├── license.txt ├── phpcs.xml ├── readme.md └── readme.txt /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bueltge/authenticator/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bueltge/authenticator/HEAD/.gitignore -------------------------------------------------------------------------------- /assets/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bueltge/authenticator/HEAD/assets/screenshot-1.png -------------------------------------------------------------------------------- /assets/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bueltge/authenticator/HEAD/assets/screenshot-2.png -------------------------------------------------------------------------------- /authenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bueltge/authenticator/HEAD/authenticator.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bueltge/authenticator/HEAD/composer.json -------------------------------------------------------------------------------- /example_plugin__exclude_posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bueltge/authenticator/HEAD/example_plugin__exclude_posts.php -------------------------------------------------------------------------------- /inc/class-Authenticator_Protect_Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bueltge/authenticator/HEAD/inc/class-Authenticator_Protect_Upload.php -------------------------------------------------------------------------------- /inc/class-Authenticator_Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bueltge/authenticator/HEAD/inc/class-Authenticator_Settings.php -------------------------------------------------------------------------------- /inc/class-Authenticator_Settings_UI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bueltge/authenticator/HEAD/inc/class-Authenticator_Settings_UI.php -------------------------------------------------------------------------------- /inc/class-Authenticator_User_Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bueltge/authenticator/HEAD/inc/class-Authenticator_User_Profile.php -------------------------------------------------------------------------------- /inc/class-HTTP_Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bueltge/authenticator/HEAD/inc/class-HTTP_Auth.php -------------------------------------------------------------------------------- /js/admin-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bueltge/authenticator/HEAD/js/admin-ui.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bueltge/authenticator/HEAD/license.txt -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bueltge/authenticator/HEAD/phpcs.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bueltge/authenticator/HEAD/readme.md -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bueltge/authenticator/HEAD/readme.txt --------------------------------------------------------------------------------