Skip to content

Instantly share code, notes, and snippets.

@matdave
Created November 30, 2017 15:15
Show Gist options
  • Save matdave/6437bd5dafbe1fbb599b56a1124eda80 to your computer and use it in GitHub Desktop.
Save matdave/6437bd5dafbe1fbb599b56a1124eda80 to your computer and use it in GitHub Desktop.
MODX Formit Continental US State Validator
<?php
$nostate = array('Hawaii','Alaska','HI','AK');
$success = !(in_array($value,$nostate));
if(!$success){
$validator->addError($key, "Continental US only.");
}
return $success;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment