├── .editorconfig ├── .gitignore ├── .travis.yml ├── Gruntfile.js ├── README.md ├── assets └── js │ └── image-shortcake-admin.js ├── bin └── install-wp-tests.sh ├── composer.json ├── image-shortcake.php ├── inc ├── class-img-shortcode-data-migration.php ├── class-img-shortcode.php └── class-wp-cli-img-shortcode-command.php ├── languages ├── image-shortcake-ru_RU.mo ├── image-shortcake-ru_RU.po └── image-shortcake.pot ├── package.json ├── phpcs.ruleset.xml ├── phpunit.xml ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png └── tests ├── bootstrap.php ├── data ├── fusion_image_placeholder_16x9_h2000.png └── gin_joints.wav ├── test-img-shortcode-data-migration.php └── test-img-shortcode.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/README.md -------------------------------------------------------------------------------- /assets/js/image-shortcake-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/assets/js/image-shortcake-admin.js -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/composer.json -------------------------------------------------------------------------------- /image-shortcake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/image-shortcake.php -------------------------------------------------------------------------------- /inc/class-img-shortcode-data-migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/inc/class-img-shortcode-data-migration.php -------------------------------------------------------------------------------- /inc/class-img-shortcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/inc/class-img-shortcode.php -------------------------------------------------------------------------------- /inc/class-wp-cli-img-shortcode-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/inc/class-wp-cli-img-shortcode-command.php -------------------------------------------------------------------------------- /languages/image-shortcake-ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/languages/image-shortcake-ru_RU.mo -------------------------------------------------------------------------------- /languages/image-shortcake-ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/languages/image-shortcake-ru_RU.po -------------------------------------------------------------------------------- /languages/image-shortcake.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/languages/image-shortcake.pot -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/package.json -------------------------------------------------------------------------------- /phpcs.ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/phpcs.ruleset.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/readme.txt -------------------------------------------------------------------------------- /screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/screenshot-1.png -------------------------------------------------------------------------------- /screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/screenshot-2.png -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/data/fusion_image_placeholder_16x9_h2000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/tests/data/fusion_image_placeholder_16x9_h2000.png -------------------------------------------------------------------------------- /tests/data/gin_joints.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/tests/data/gin_joints.wav -------------------------------------------------------------------------------- /tests/test-img-shortcode-data-migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/tests/test-img-shortcode-data-migration.php -------------------------------------------------------------------------------- /tests/test-img-shortcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-shortcake/image-shortcake/HEAD/tests/test-img-shortcode.php --------------------------------------------------------------------------------