├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── inc ├── admin-bar.php ├── ajax.php ├── class-flag.php ├── class-flags.php ├── namespace.php ├── site-metabox.php ├── site.php ├── user-metabox.php └── user.php ├── phpcs.ruleset.xml └── plugin.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/wp-flags/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/wp-flags/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/wp-flags/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/wp-flags/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/wp-flags/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/wp-flags/HEAD/composer.lock -------------------------------------------------------------------------------- /inc/admin-bar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/wp-flags/HEAD/inc/admin-bar.php -------------------------------------------------------------------------------- /inc/ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/wp-flags/HEAD/inc/ajax.php -------------------------------------------------------------------------------- /inc/class-flag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/wp-flags/HEAD/inc/class-flag.php -------------------------------------------------------------------------------- /inc/class-flags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/wp-flags/HEAD/inc/class-flags.php -------------------------------------------------------------------------------- /inc/namespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/wp-flags/HEAD/inc/namespace.php -------------------------------------------------------------------------------- /inc/site-metabox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/wp-flags/HEAD/inc/site-metabox.php -------------------------------------------------------------------------------- /inc/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/wp-flags/HEAD/inc/site.php -------------------------------------------------------------------------------- /inc/user-metabox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/wp-flags/HEAD/inc/user-metabox.php -------------------------------------------------------------------------------- /inc/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/wp-flags/HEAD/inc/user.php -------------------------------------------------------------------------------- /phpcs.ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/wp-flags/HEAD/phpcs.ruleset.xml -------------------------------------------------------------------------------- /plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/wp-flags/HEAD/plugin.php --------------------------------------------------------------------------------