-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[5.1] Form: Add regex validation rule #42657
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| <?php | ||
|
|
||
| /** | ||
| * Joomla! Content Management System | ||
| * | ||
| * @copyright (C) 2024 Open Source Matters, Inc. <https://www.joomla.org> | ||
| * @license GNU General Public License version 2 or later; see LICENSE.txt | ||
| */ | ||
|
|
||
| namespace Joomla\CMS\Form\Rule; | ||
|
|
||
| use Joomla\CMS\Form\Form; | ||
| use Joomla\CMS\Form\FormRule; | ||
| use Joomla\Registry\Registry; | ||
|
|
||
| // phpcs:disable PSR1.Files.SideEffects | ||
| \defined('_JEXEC') or die; | ||
| // phpcs:enable PSR1.Files.SideEffects | ||
|
|
||
| /** | ||
| * Form Rule class for the Joomla Platform. | ||
| * | ||
| * @since __DEPLOY_VERSION__ | ||
| */ | ||
| class RegexRule extends FormRule | ||
| { | ||
| /** | ||
| * Method to test the value. | ||
| * | ||
| * @param \SimpleXMLElement $element The SimpleXMLElement object representing the `<field>` tag for the form field object. | ||
| * @param mixed $value The form field value to validate. | ||
| * @param string $group The field name group control value. This acts as as an array container for the field. | ||
| * For example if the field has name="foo" and the group value is set to "bar" then the | ||
| * full field name would end up being "bar[foo]". | ||
| * @param ?Registry $input An optional Registry object with the entire data set to validate against the entire form. | ||
| * @param ?Form $form The form object for which the field is being tested. | ||
| * | ||
| * @return boolean True if the value is valid, false otherwise. | ||
| * | ||
| * @since __DEPLOY_VERSION__ | ||
| * @throws \UnexpectedValueException if rule is invalid. | ||
| */ | ||
| public function test(\SimpleXMLElement $element, $value, $group = null, Registry $input = null, Form $form = null) | ||
| { | ||
| if ((string) $element['validate_regex']) { | ||
| $this->regex = (string) $element['validate_regex']; | ||
| } | ||
|
|
||
| if ((string) $element['validate_modifier']) { | ||
Hackwar marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| $this->modifiers = (string) $element['validate_modifier']; | ||
| } | ||
|
|
||
| return parent::test($element, $value, $group, $input, $form); | ||
| } | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.