Skip to content

Commit

Permalink
Use the full namespaced classname in the forms
Browse files Browse the repository at this point in the history
  • Loading branch information
Bakual committed Dec 3, 2023
1 parent ff0a03f commit 0c4a9e5
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
3 changes: 2 additions & 1 deletion com_sermonspeaker/admin/models/forms/serie.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@
label="JGLOBAL_DESCRIPTION"
buttons="true"
hide="pagebreak,readmore"
filter="ComponentHelper::filterText"/>
filter="\Joomla\CMS\Component\ComponentHelper::filterText"
/>

<field
name="language"
Expand Down
2 changes: 1 addition & 1 deletion com_sermonspeaker/admin/models/forms/sermon.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
description="COM_SERMONSPEAKER_FIELD_NOTES_DESC"
buttons="true"
hide="pagebreak,readmore"
filter="ComponentHelper::filterText"
filter="\Joomla\CMS\Component\ComponentHelper::filterText"
/>

<field name="state"
Expand Down
6 changes: 4 additions & 2 deletions com_sermonspeaker/admin/models/forms/speaker.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,15 @@
label="COM_SERMONSPEAKER_FIELD_INTRO_LABEL"
buttons="true"
hide="pagebreak,readmore"
filter="ComponentHelper::filterText"/>
filter="\Joomla\CMS\Component\ComponentHelper::filterText"
/>

<field name="bio" type="editor"
label="COM_SERMONSPEAKER_FIELD_BIO_LABEL"
buttons="true"
hide="pagebreak,readmore"
filter="ComponentHelper::filterText"/>
filter="\Joomla\CMS\Component\ComponentHelper::filterText"
/>

<field
name="language"
Expand Down
2 changes: 1 addition & 1 deletion com_sermonspeaker/site/models/forms/serie.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
label="JGLOBAL_DESCRIPTION"
hiddenLabel="true"
buttons="true"
filter="ComponentHelper::filterText"
filter="\Joomla\CMS\Component\ComponentHelper::filterText"
hide="pagebreak,readmore"
/>

Expand Down
2 changes: 1 addition & 1 deletion com_sermonspeaker/site/models/forms/sermon.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
label="COM_SERMONSPEAKER_FIELD_NOTES_LABEL"
buttons="true"
hide="pagebreak,readmore"
filter="ComponentHelper::filterText"
filter="\Joomla\CMS\Component\ComponentHelper::filterText"
/>

<field
Expand Down
4 changes: 2 additions & 2 deletions com_sermonspeaker/site/models/forms/speaker.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
label="COM_SERMONSPEAKER_FIELD_INTRO_LABEL"
buttons="true"
hide="pagebreak,readmore"
filter="ComponentHelper::filterText"
filter="\Joomla\CMS\Component\ComponentHelper::filterText"
/>

<field
Expand All @@ -65,7 +65,7 @@
label="COM_SERMONSPEAKER_FIELD_BIO_LABEL"
buttons="true"
hide="pagebreak,readmore"
filter="ComponentHelper::filterText"
filter="\Joomla\CMS\Component\ComponentHelper::filterText"
/>

<field
Expand Down

0 comments on commit 0c4a9e5

Please sign in to comment.