Last active
June 15, 2016 17:53
-
-
Save sbruner/ee6c91b1e73b15587a3e300c332554a4 to your computer and use it in GitHub Desktop.
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 | |
// required with Piklist | |
piklist('field', array( | |
'type' => 'text' | |
,'field' => 'text_required' | |
,'label' => 'Enter some required text' | |
,'required' => true | |
)); | |
// required with Piklist and HTML 5 | |
piklist('field', array( | |
'type' => 'text' | |
,'field' => 'text_required_2' | |
,'label' => 'Enter some required text' | |
,'required' => true | |
,'attributes' => array( | |
'required' => 'required' // HTML 5 validation | |
) | |
)); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment