├── .craftplugin ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── entry-instructions.php.sample ├── resources └── img │ └── plugin-logo.png ├── src ├── EntryInstructions.php ├── fields │ └── EntryInstructionsField.php ├── icon.svg ├── models │ └── Settings.php └── templates │ └── _components │ └── fields │ ├── EntryInstructionsField_input.twig │ └── EntryInstructionsField_settings.twig └── translations └── de └── entry-instructions.php /.craftplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjelfull/craft-entry-instructions/HEAD/.craftplugin -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjelfull/craft-entry-instructions/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjelfull/craft-entry-instructions/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjelfull/craft-entry-instructions/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjelfull/craft-entry-instructions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjelfull/craft-entry-instructions/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjelfull/craft-entry-instructions/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjelfull/craft-entry-instructions/HEAD/composer.json -------------------------------------------------------------------------------- /entry-instructions.php.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjelfull/craft-entry-instructions/HEAD/entry-instructions.php.sample -------------------------------------------------------------------------------- /resources/img/plugin-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjelfull/craft-entry-instructions/HEAD/resources/img/plugin-logo.png -------------------------------------------------------------------------------- /src/EntryInstructions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjelfull/craft-entry-instructions/HEAD/src/EntryInstructions.php -------------------------------------------------------------------------------- /src/fields/EntryInstructionsField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjelfull/craft-entry-instructions/HEAD/src/fields/EntryInstructionsField.php -------------------------------------------------------------------------------- /src/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjelfull/craft-entry-instructions/HEAD/src/icon.svg -------------------------------------------------------------------------------- /src/models/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjelfull/craft-entry-instructions/HEAD/src/models/Settings.php -------------------------------------------------------------------------------- /src/templates/_components/fields/EntryInstructionsField_input.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjelfull/craft-entry-instructions/HEAD/src/templates/_components/fields/EntryInstructionsField_input.twig -------------------------------------------------------------------------------- /src/templates/_components/fields/EntryInstructionsField_settings.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjelfull/craft-entry-instructions/HEAD/src/templates/_components/fields/EntryInstructionsField_settings.twig -------------------------------------------------------------------------------- /translations/de/entry-instructions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjelfull/craft-entry-instructions/HEAD/translations/de/entry-instructions.php --------------------------------------------------------------------------------