Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

fix: datetimeselect pattern fixes #185

Merged
merged 1 commit into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions module/Admin/src/Form/Model/Fieldset/PermitWindowDetails.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ class PermitWindowDetails
* "max_year_delta": "+1",
* "min_year_delta": "0",
* "display_every_minute": true,
* "pattern": "d MMMM y '</fieldset><fieldset><div class=""field""><label for=""startDate"">Time</label>'HH:mm:ss'</div>'",
* "render_delimiters": false
* })
* @Form\Filter({"name": "DateTimeSelectNullifier"})
Expand Down Expand Up @@ -77,7 +76,6 @@ class PermitWindowDetails
* "max_year_delta": "+10",
* "min_year_delta": "0",
* "display_every_minute": true,
* "pattern": "d MMMM y '</fieldset><fieldset><div class=""field""><label for=""endDate"">Time</label>'HH:mm:ss'</div>'",
* "render_delimiters": false
* })
* @Form\Filter({"name": "DateTimeSelectNullifier"})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ class SystemInfoMessageDetails
* "create_empty_option": true,
* "max_year_delta": "+1",
* "min_year_delta": "0",
* "pattern": "d MMMM y '</fieldset><fieldset><div class=""field""><label>Time</label>'HH:mm:ss'</div>'"
* })
* @Form\Filter({"name": "DateTimeSelectNullifier"})
* @Form\Validator({"name": "\Common\Validator\Date"})
Expand All @@ -84,7 +83,6 @@ class SystemInfoMessageDetails
* "create_empty_option": true,
* "max_year_delta": "+10",
* "min_year_delta": "0",
* "pattern": "d MMMM y '</fieldset><fieldset><div class=""field""><label>Time</label>'HH:mm:ss'</div>'"
* })
* @Form\Filter({"name": "DateTimeSelectNullifier"})
* @Form\Validator({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ class LicenceStatusDecisionCurtail
* "create_empty_option": true,
* "max_year_delta": "+10",
* "min_year_delta": "-5",
* "pattern": "d MMMM y '</fieldset><fieldset><div class=""field""><label>Time</label>'HH:mm:ss'</div>'"
* })
* @Form\Attributes({"required":false})
*/
Expand Down Expand Up @@ -77,7 +76,6 @@ class LicenceStatusDecisionCurtail
* "create_empty_option": true,
* "max_year_delta": "+10",
* "min_year_delta": "0",
* "pattern": "d MMMM y '</fieldset><fieldset><div class=""field""><label>Time</label>'HH:mm:ss'</div>'"
* })
*/
public $curtailTo = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ class LicenceStatusDecisionRevoke
* "create_empty_option": true,
* "max_year_delta": "+5",
* "min_year_delta": "-5",
* "pattern": "d MMMM y '</fieldset><fieldset><div class=""field""><label>Time</label>'HH:mm:ss'</div>'"
* })
* @Form\Attributes({"required":false})
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ class LicenceStatusDecisionSuspend
* "create_empty_option": true,
* "max_year_delta": "+10",
* "min_year_delta": "-5",
* "pattern": "d MMMM y '</fieldset><fieldset><div class=""field""><label>Time</label>'HH:mm:ss'</div>'"
* })
* @Form\Attributes({"required":false})
*/
Expand Down Expand Up @@ -77,7 +76,6 @@ class LicenceStatusDecisionSuspend
* "create_empty_option": true,
* "max_year_delta": "+10",
* "min_year_delta": "0",
* "pattern": "d MMMM y '</fieldset><fieldset><div class=""field""><label>Time</label>'HH:mm:ss'</div>'"
* })
*/
public $suspendTo = null;
Expand Down
Loading