├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── LICENSE.md ├── README.md ├── composer.json ├── resources └── img │ ├── craft5.png │ └── show-field-handles-preference.png └── src ├── CpFieldInspect.php ├── controllers └── DefaultController.php ├── helpers └── CpFieldInspectHelper.php ├── icon.svg ├── translations └── en │ └── cp-field-inspect.php └── web ├── CpFieldInspectBundle.php └── assets ├── cpfieldinspect.css └── cpfieldinspect.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmikkel/CpFieldInspect-Craft/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmikkel/CpFieldInspect-Craft/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmikkel/CpFieldInspect-Craft/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmikkel/CpFieldInspect-Craft/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmikkel/CpFieldInspect-Craft/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmikkel/CpFieldInspect-Craft/HEAD/composer.json -------------------------------------------------------------------------------- /resources/img/craft5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmikkel/CpFieldInspect-Craft/HEAD/resources/img/craft5.png -------------------------------------------------------------------------------- /resources/img/show-field-handles-preference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmikkel/CpFieldInspect-Craft/HEAD/resources/img/show-field-handles-preference.png -------------------------------------------------------------------------------- /src/CpFieldInspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmikkel/CpFieldInspect-Craft/HEAD/src/CpFieldInspect.php -------------------------------------------------------------------------------- /src/controllers/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmikkel/CpFieldInspect-Craft/HEAD/src/controllers/DefaultController.php -------------------------------------------------------------------------------- /src/helpers/CpFieldInspectHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmikkel/CpFieldInspect-Craft/HEAD/src/helpers/CpFieldInspectHelper.php -------------------------------------------------------------------------------- /src/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmikkel/CpFieldInspect-Craft/HEAD/src/icon.svg -------------------------------------------------------------------------------- /src/translations/en/cp-field-inspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmikkel/CpFieldInspect-Craft/HEAD/src/translations/en/cp-field-inspect.php -------------------------------------------------------------------------------- /src/web/CpFieldInspectBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmikkel/CpFieldInspect-Craft/HEAD/src/web/CpFieldInspectBundle.php -------------------------------------------------------------------------------- /src/web/assets/cpfieldinspect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmikkel/CpFieldInspect-Craft/HEAD/src/web/assets/cpfieldinspect.css -------------------------------------------------------------------------------- /src/web/assets/cpfieldinspect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmikkel/CpFieldInspect-Craft/HEAD/src/web/assets/cpfieldinspect.js --------------------------------------------------------------------------------