├── LICENSE.md ├── assets ├── field.png └── time-slots.png ├── composer.json └── src ├── Field.php ├── Plugin.php ├── data ├── DayData.php └── FieldData.php ├── gql └── types │ ├── Day.php │ └── generators │ └── DayType.php ├── icon.svg ├── migrations └── m170515_192840_rename_field.php └── translations └── nl └── store-hours.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftcms/store-hours/HEAD/LICENSE.md -------------------------------------------------------------------------------- /assets/field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftcms/store-hours/HEAD/assets/field.png -------------------------------------------------------------------------------- /assets/time-slots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftcms/store-hours/HEAD/assets/time-slots.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftcms/store-hours/HEAD/composer.json -------------------------------------------------------------------------------- /src/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftcms/store-hours/HEAD/src/Field.php -------------------------------------------------------------------------------- /src/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftcms/store-hours/HEAD/src/Plugin.php -------------------------------------------------------------------------------- /src/data/DayData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftcms/store-hours/HEAD/src/data/DayData.php -------------------------------------------------------------------------------- /src/data/FieldData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftcms/store-hours/HEAD/src/data/FieldData.php -------------------------------------------------------------------------------- /src/gql/types/Day.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftcms/store-hours/HEAD/src/gql/types/Day.php -------------------------------------------------------------------------------- /src/gql/types/generators/DayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftcms/store-hours/HEAD/src/gql/types/generators/DayType.php -------------------------------------------------------------------------------- /src/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftcms/store-hours/HEAD/src/icon.svg -------------------------------------------------------------------------------- /src/migrations/m170515_192840_rename_field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftcms/store-hours/HEAD/src/migrations/m170515_192840_rename_field.php -------------------------------------------------------------------------------- /src/translations/nl/store-hours.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftcms/store-hours/HEAD/src/translations/nl/store-hours.php --------------------------------------------------------------------------------