public static function LingotekJobId::validateJobId in Lingotek Translation 3.7.x
Same name and namespace in other branches
- 8.2 src/Element/LingotekJobId.php \Drupal\lingotek\Element\LingotekJobId::validateJobId()
- 4.0.x src/Element/LingotekJobId.php \Drupal\lingotek\Element\LingotekJobId::validateJobId()
- 3.0.x src/Element/LingotekJobId.php \Drupal\lingotek\Element\LingotekJobId::validateJobId()
- 3.1.x src/Element/LingotekJobId.php \Drupal\lingotek\Element\LingotekJobId::validateJobId()
- 3.2.x src/Element/LingotekJobId.php \Drupal\lingotek\Element\LingotekJobId::validateJobId()
- 3.3.x src/Element/LingotekJobId.php \Drupal\lingotek\Element\LingotekJobId::validateJobId()
- 3.4.x src/Element/LingotekJobId.php \Drupal\lingotek\Element\LingotekJobId::validateJobId()
- 3.5.x src/Element/LingotekJobId.php \Drupal\lingotek\Element\LingotekJobId::validateJobId()
- 3.6.x src/Element/LingotekJobId.php \Drupal\lingotek\Element\LingotekJobId::validateJobId()
- 3.8.x src/Element/LingotekJobId.php \Drupal\lingotek\Element\LingotekJobId::validateJobId()
Form element validation handler for job_id elements.
This checks that the submitted value:
- Does not contain disallowed characters.
File
- src/
Element/ LingotekJobId.php, line 143
Class
- LingotekJobId
- Provides a job id render element.
Namespace
Drupal\lingotek\ElementCode
public static function validateJobId(&$element, FormStateInterface $form_state, &$complete_form) {
// Verify that the job ID contains no disallowed characters.
if (preg_match('@' . $element['#job_id']['replace_pattern'] . '@', $element['#value'])) {
if (!isset($element['#job_id']['error'])) {
$form_state
->setError($element, t('The job ID name cannot contain invalid chars as "/" or "\\".'));
}
else {
$form_state
->setError($element, $element['#job_id']['error']);
}
}
}