├── .gitignore ├── .travis.yml ├── LICENSE ├── assets └── js │ └── wc-custom-indexes-admin.js ├── bin └── install-wp-tests.sh ├── composer.json ├── composer.lock ├── includes ├── class-wc-custom-indexes-admin.php ├── class-wc-custom-indexes-cli.php ├── class-wc-custom-indexes-manager.php └── class-wc-custom-indexes.php ├── phpcs.xml ├── phpunit.xml ├── readme.txt ├── templates └── admin-page.php ├── tests ├── bootstrap.php └── test-class-wc-custom-indexes-manager.php └── woocommerce-custom-indexes.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-custom-indexes/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-custom-indexes/HEAD/LICENSE -------------------------------------------------------------------------------- /assets/js/wc-custom-indexes-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-custom-indexes/HEAD/assets/js/wc-custom-indexes-admin.js -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-custom-indexes/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-custom-indexes/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-custom-indexes/HEAD/composer.lock -------------------------------------------------------------------------------- /includes/class-wc-custom-indexes-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-custom-indexes/HEAD/includes/class-wc-custom-indexes-admin.php -------------------------------------------------------------------------------- /includes/class-wc-custom-indexes-cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-custom-indexes/HEAD/includes/class-wc-custom-indexes-cli.php -------------------------------------------------------------------------------- /includes/class-wc-custom-indexes-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-custom-indexes/HEAD/includes/class-wc-custom-indexes-manager.php -------------------------------------------------------------------------------- /includes/class-wc-custom-indexes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-custom-indexes/HEAD/includes/class-wc-custom-indexes.php -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-custom-indexes/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-custom-indexes/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-custom-indexes/HEAD/readme.txt -------------------------------------------------------------------------------- /templates/admin-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-custom-indexes/HEAD/templates/admin-page.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-custom-indexes/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/test-class-wc-custom-indexes-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-custom-indexes/HEAD/tests/test-class-wc-custom-indexes-manager.php -------------------------------------------------------------------------------- /woocommerce-custom-indexes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-custom-indexes/HEAD/woocommerce-custom-indexes.php --------------------------------------------------------------------------------