├── .distignore ├── .github ├── CODEOWNERS └── workflows │ ├── build-release-zip.yml │ ├── close-stale-issues.yml │ ├── cypress.yml │ ├── dependency-review.yml │ ├── lint.yml │ ├── php-compatibility.yml │ ├── push-asset-readme-update.yml │ ├── push-deploy.yml │ ├── repo-automator.yml │ ├── test.yml │ └── wordpress-version-checker.yml ├── .gitignore ├── .nvmrc ├── .wordpress-org ├── banner-1544x500.jpg ├── banner-772x250.jpg ├── blueprints │ ├── blueprint.json │ └── demo-data.xml ├── icon-128x128.png ├── icon-256x256.png ├── icon.svg └── screenshot-1.png ├── .wordpress-version-checker.json ├── .wp-env.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CREDITS.md ├── LICENSE.md ├── README.md ├── assets └── js │ └── simple-local-avatars.js ├── composer.json ├── composer.lock ├── includes └── class-simple-local-avatars.php ├── package.json ├── phpcs.xml ├── phpunit.xml ├── readme.txt ├── simple-local-avatars.php ├── tests ├── bin │ ├── initialize.sh │ ├── set-wp-config.js │ └── wp-cli.yml ├── cypress │ ├── config.config.js │ ├── fixtures │ │ └── example.json │ ├── integration │ │ ├── admin.test.js │ │ ├── avatars-migration.test.js │ │ ├── check-avatar-fe.test.js │ │ ├── choose-default-avatar.test.js │ │ ├── clear-avatars-cache.test.js │ │ ├── delete-avatar.test.js │ │ └── set-avatar.test.js │ ├── plugins │ │ └── index.js │ ├── support │ │ ├── commands.js │ │ └── index.js │ └── tsconfig.json └── phpunit │ ├── SimpleLocalAvatarsTest.php │ ├── bootstrap.php │ └── multisite │ ├── SimpleLocalAvatarsNetworkTest.php │ └── multisite.xml └── webpack.config.js /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.distignore -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/build-release-zip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.github/workflows/build-release-zip.yml -------------------------------------------------------------------------------- /.github/workflows/close-stale-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.github/workflows/close-stale-issues.yml -------------------------------------------------------------------------------- /.github/workflows/cypress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.github/workflows/cypress.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/php-compatibility.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.github/workflows/php-compatibility.yml -------------------------------------------------------------------------------- /.github/workflows/push-asset-readme-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.github/workflows/push-asset-readme-update.yml -------------------------------------------------------------------------------- /.github/workflows/push-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.github/workflows/push-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/repo-automator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.github/workflows/repo-automator.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/wordpress-version-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.github/workflows/wordpress-version-checker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20 -------------------------------------------------------------------------------- /.wordpress-org/banner-1544x500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.wordpress-org/banner-1544x500.jpg -------------------------------------------------------------------------------- /.wordpress-org/banner-772x250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.wordpress-org/banner-772x250.jpg -------------------------------------------------------------------------------- /.wordpress-org/blueprints/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.wordpress-org/blueprints/blueprint.json -------------------------------------------------------------------------------- /.wordpress-org/blueprints/demo-data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.wordpress-org/blueprints/demo-data.xml -------------------------------------------------------------------------------- /.wordpress-org/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.wordpress-org/icon-128x128.png -------------------------------------------------------------------------------- /.wordpress-org/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.wordpress-org/icon-256x256.png -------------------------------------------------------------------------------- /.wordpress-org/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.wordpress-org/icon.svg -------------------------------------------------------------------------------- /.wordpress-org/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.wordpress-org/screenshot-1.png -------------------------------------------------------------------------------- /.wordpress-version-checker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.wordpress-version-checker.json -------------------------------------------------------------------------------- /.wp-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/.wp-env.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/CREDITS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/README.md -------------------------------------------------------------------------------- /assets/js/simple-local-avatars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/assets/js/simple-local-avatars.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/composer.lock -------------------------------------------------------------------------------- /includes/class-simple-local-avatars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/includes/class-simple-local-avatars.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/package.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/readme.txt -------------------------------------------------------------------------------- /simple-local-avatars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/simple-local-avatars.php -------------------------------------------------------------------------------- /tests/bin/initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/tests/bin/initialize.sh -------------------------------------------------------------------------------- /tests/bin/set-wp-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/tests/bin/set-wp-config.js -------------------------------------------------------------------------------- /tests/bin/wp-cli.yml: -------------------------------------------------------------------------------- 1 | apache_modules: 2 | - mod_rewrite 3 | -------------------------------------------------------------------------------- /tests/cypress/config.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/tests/cypress/config.config.js -------------------------------------------------------------------------------- /tests/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/tests/cypress/fixtures/example.json -------------------------------------------------------------------------------- /tests/cypress/integration/admin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/tests/cypress/integration/admin.test.js -------------------------------------------------------------------------------- /tests/cypress/integration/avatars-migration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/tests/cypress/integration/avatars-migration.test.js -------------------------------------------------------------------------------- /tests/cypress/integration/check-avatar-fe.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/tests/cypress/integration/check-avatar-fe.test.js -------------------------------------------------------------------------------- /tests/cypress/integration/choose-default-avatar.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/tests/cypress/integration/choose-default-avatar.test.js -------------------------------------------------------------------------------- /tests/cypress/integration/clear-avatars-cache.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/tests/cypress/integration/clear-avatars-cache.test.js -------------------------------------------------------------------------------- /tests/cypress/integration/delete-avatar.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/tests/cypress/integration/delete-avatar.test.js -------------------------------------------------------------------------------- /tests/cypress/integration/set-avatar.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/tests/cypress/integration/set-avatar.test.js -------------------------------------------------------------------------------- /tests/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/tests/cypress/plugins/index.js -------------------------------------------------------------------------------- /tests/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/tests/cypress/support/commands.js -------------------------------------------------------------------------------- /tests/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/tests/cypress/support/index.js -------------------------------------------------------------------------------- /tests/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/tests/cypress/tsconfig.json -------------------------------------------------------------------------------- /tests/phpunit/SimpleLocalAvatarsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/tests/phpunit/SimpleLocalAvatarsTest.php -------------------------------------------------------------------------------- /tests/phpunit/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/tests/phpunit/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit/multisite/SimpleLocalAvatarsNetworkTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/tests/phpunit/multisite/SimpleLocalAvatarsNetworkTest.php -------------------------------------------------------------------------------- /tests/phpunit/multisite/multisite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/tests/phpunit/multisite/multisite.xml -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/simple-local-avatars/HEAD/webpack.config.js --------------------------------------------------------------------------------