Form validation returns error on legal and illegal values entered

I am trying to validate my registration form in a custom module but even ‘allowed’ chars is returning the error message (Loggitobbogan is also installed). Am I making a rookie mistake in my script, please?

/**
 * Implements hook_form_FORM_ID_alter
 */
 
function myApp_registration_form_user_register_form_alter(&$form, &$form_state, $form_id) {
  $form['locale']['#access'] = ($form['#user_category'] == 'account' || ($form['#user_category'] == 'register'));

  $form['privacy'] = array(
    '#type' => 'checkbox',
    '#required' => TRUE,
    '#title' => t('Please accept ') . ' ' . l(t('Terms of Use and Privacy'), t('terms-use-and-privacy')),
    '#weight' => 10
  );

  $form['field_full_name']['und'][0]['value']['#attributes']['placeholder'] = t('Chose a user name');
  $form['account']['mail']['#attributes']['placeholder'] = t('Your email address');

  // Change the value of the submit button
  $form['actions']['submit']['#value'] = t('Register');

  //look for illegal chars in field_full_name
  $form['#validate'][] = 'myApp_fullname_registration_form_validate';
  
}


//function to look for illegal chars in field_full_name
function myApp_fullname_registration_form_validate(&$form, &$form_state) {
  $fullName = $form_state['values']['field_full_name']['und'][0];
  if (!preg_match( '/[^A-Z|a-z|0-9]*/', $fullName )) {
    form_set_error('field_full_name', t('Illegal chars used?!'));
  }
}

Any guidance, advice, pointers are gratefully accepted! Thank you.

This is the whole relevant section from myApp_registration.module file, where I can change placeholder text successfully, and where I believe I could add my form_validation script. It is cut and pasted and works fine, except the new form_validate function.

It is Drupal 7.

This article was republished from its original source.
Call Us: 1(800)730-2416

Pixeldust is a 20-year-old web development agency specializing in Drupal and WordPress and working with clients all over the country. With our best in class capabilities, we work with small businesses and fortune 500 companies alike. Give us a call at 1(800)730-2416 and let’s talk about your project.

FREE Drupal SEO Audit

Test your site below to see which issues need to be fixed. We will fix them and optimize your Drupal site 100% for Google and Bing. (Allow 30-60 seconds to gather data.)

Powered by

Form validation returns error on legal and illegal values entered

On-Site Drupal SEO Master Setup

We make sure your site is 100% optimized (and stays that way) for the best SEO results.

With Pixeldust On-site (or On-page) SEO we make changes to your site’s structure and performance to make it easier for search engines to see and understand your site’s content. Search engines use algorithms to rank sites by degrees of relevance. Our on-site optimization ensures your site is configured to provide information in a way that meets Google and Bing standards for optimal indexing.

This service includes:

  • Pathauto install and configuration for SEO-friendly URLs.
  • Meta Tags install and configuration with dynamic tokens for meta titles and descriptions for all content types.
  • Install and fix all issues on the SEO checklist module.
  • Install and configure XML sitemap module and submit sitemaps.
  • Install and configure Google Analytics Module.
  • Install and configure Yoast.
  • Install and configure the Advanced Aggregation module to improve performance by minifying and merging CSS and JS.
  • Install and configure Schema.org Metatag.
  • Configure robots.txt.
  • Google Search Console setup snd configuration.
  • Find & Fix H1 tags.
  • Find and fix duplicate/missing meta descriptions.
  • Find and fix duplicate title tags.
  • Improve title, meta tags, and site descriptions.
  • Optimize images for better search engine optimization. Automate where possible.
  • Find and fix the missing alt and title tag for all images. Automate where possible.
  • The project takes 1 week to complete.