├── .coveralls.yml ├── .david-dev ├── .dev-lib ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .gitmodules ├── .jscsrc ├── .jshintignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── composer.json ├── contributing.md ├── css ├── customize-snapshots-admin.css ├── customize-snapshots-compat.css ├── customize-snapshots-dashboard.css ├── customize-snapshots-preview.css └── customize-snapshots.css ├── customize-snapshots.php ├── instance.php ├── js ├── customize-snapshots-admin.js ├── customize-snapshots-compat.js ├── customize-snapshots-frontend.js └── customize-snapshots.js ├── package.json ├── php ├── class-customize-snapshot-manager-compat.php ├── class-customize-snapshot-manager.php ├── class-dashboard-widget.php ├── class-exception.php ├── class-plugin-base.php ├── class-plugin.php ├── class-post-type.php └── class-snapshot-rest-api-controller.php ├── phpcs.xml.dist ├── phpunit.xml.dist ├── readme.md ├── readme.txt ├── tests ├── php │ ├── test-class-customize-snapshot-manager-compat.php │ ├── test-class-customize-snapshot-manager.php │ ├── test-class-dashboard-widget.php │ ├── test-class-plugin-base.php │ ├── test-class-plugin.php │ ├── test-class-post-type.php │ ├── test-class-snapshot-ajax.php │ └── test-class-snapshot-rest-api-controller.php └── test-customize-snapshots.php └── wp-assets ├── banner-1544x500.png ├── banner-772x250.png ├── banner.svg ├── icon-128x128.png ├── icon-256x256.png ├── icon.svg ├── screenshot-1.png ├── screenshot-10.png ├── screenshot-11.png ├── screenshot-12.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png ├── screenshot-5.png ├── screenshot-6.png ├── screenshot-7.png ├── screenshot-8.png └── screenshot-9.png /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | -------------------------------------------------------------------------------- /.david-dev: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.dev-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/.dev-lib -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dev-lib/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/.gitmodules -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- 1 | dev-lib/.jscsrc -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/.jshintignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | dev-lib/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/composer.json -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/contributing.md -------------------------------------------------------------------------------- /css/customize-snapshots-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/css/customize-snapshots-admin.css -------------------------------------------------------------------------------- /css/customize-snapshots-compat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/css/customize-snapshots-compat.css -------------------------------------------------------------------------------- /css/customize-snapshots-dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/css/customize-snapshots-dashboard.css -------------------------------------------------------------------------------- /css/customize-snapshots-preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/css/customize-snapshots-preview.css -------------------------------------------------------------------------------- /css/customize-snapshots.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/css/customize-snapshots.css -------------------------------------------------------------------------------- /customize-snapshots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/customize-snapshots.php -------------------------------------------------------------------------------- /instance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/instance.php -------------------------------------------------------------------------------- /js/customize-snapshots-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/js/customize-snapshots-admin.js -------------------------------------------------------------------------------- /js/customize-snapshots-compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/js/customize-snapshots-compat.js -------------------------------------------------------------------------------- /js/customize-snapshots-frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/js/customize-snapshots-frontend.js -------------------------------------------------------------------------------- /js/customize-snapshots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/js/customize-snapshots.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/package.json -------------------------------------------------------------------------------- /php/class-customize-snapshot-manager-compat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/php/class-customize-snapshot-manager-compat.php -------------------------------------------------------------------------------- /php/class-customize-snapshot-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/php/class-customize-snapshot-manager.php -------------------------------------------------------------------------------- /php/class-dashboard-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/php/class-dashboard-widget.php -------------------------------------------------------------------------------- /php/class-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/php/class-exception.php -------------------------------------------------------------------------------- /php/class-plugin-base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/php/class-plugin-base.php -------------------------------------------------------------------------------- /php/class-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/php/class-plugin.php -------------------------------------------------------------------------------- /php/class-post-type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/php/class-post-type.php -------------------------------------------------------------------------------- /php/class-snapshot-rest-api-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/php/class-snapshot-rest-api-controller.php -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/readme.md -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/readme.txt -------------------------------------------------------------------------------- /tests/php/test-class-customize-snapshot-manager-compat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/tests/php/test-class-customize-snapshot-manager-compat.php -------------------------------------------------------------------------------- /tests/php/test-class-customize-snapshot-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/tests/php/test-class-customize-snapshot-manager.php -------------------------------------------------------------------------------- /tests/php/test-class-dashboard-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/tests/php/test-class-dashboard-widget.php -------------------------------------------------------------------------------- /tests/php/test-class-plugin-base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/tests/php/test-class-plugin-base.php -------------------------------------------------------------------------------- /tests/php/test-class-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/tests/php/test-class-plugin.php -------------------------------------------------------------------------------- /tests/php/test-class-post-type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/tests/php/test-class-post-type.php -------------------------------------------------------------------------------- /tests/php/test-class-snapshot-ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/tests/php/test-class-snapshot-ajax.php -------------------------------------------------------------------------------- /tests/php/test-class-snapshot-rest-api-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/tests/php/test-class-snapshot-rest-api-controller.php -------------------------------------------------------------------------------- /tests/test-customize-snapshots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/tests/test-customize-snapshots.php -------------------------------------------------------------------------------- /wp-assets/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/wp-assets/banner-1544x500.png -------------------------------------------------------------------------------- /wp-assets/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/wp-assets/banner-772x250.png -------------------------------------------------------------------------------- /wp-assets/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/wp-assets/banner.svg -------------------------------------------------------------------------------- /wp-assets/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/wp-assets/icon-128x128.png -------------------------------------------------------------------------------- /wp-assets/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/wp-assets/icon-256x256.png -------------------------------------------------------------------------------- /wp-assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/wp-assets/icon.svg -------------------------------------------------------------------------------- /wp-assets/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/wp-assets/screenshot-1.png -------------------------------------------------------------------------------- /wp-assets/screenshot-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/wp-assets/screenshot-10.png -------------------------------------------------------------------------------- /wp-assets/screenshot-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/wp-assets/screenshot-11.png -------------------------------------------------------------------------------- /wp-assets/screenshot-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/wp-assets/screenshot-12.png -------------------------------------------------------------------------------- /wp-assets/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/wp-assets/screenshot-2.png -------------------------------------------------------------------------------- /wp-assets/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/wp-assets/screenshot-3.png -------------------------------------------------------------------------------- /wp-assets/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/wp-assets/screenshot-4.png -------------------------------------------------------------------------------- /wp-assets/screenshot-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/wp-assets/screenshot-5.png -------------------------------------------------------------------------------- /wp-assets/screenshot-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/wp-assets/screenshot-6.png -------------------------------------------------------------------------------- /wp-assets/screenshot-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/wp-assets/screenshot-7.png -------------------------------------------------------------------------------- /wp-assets/screenshot-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/wp-assets/screenshot-8.png -------------------------------------------------------------------------------- /wp-assets/screenshot-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwp/wp-customize-snapshots/HEAD/wp-assets/screenshot-9.png --------------------------------------------------------------------------------