Created
November 30, 2017 15:15
-
-
Save matdave/6437bd5dafbe1fbb599b56a1124eda80 to your computer and use it in GitHub Desktop.
MODX Formit Continental US State Validator
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
<?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