Created
January 16, 2016 03:51
-
-
Save sbruner/4e0ea64f8174d66a1ba1 to your computer and use it in GitHub Desktop.
Piklist: field: checkbox
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 | |
piklist('field', array( | |
'type' => 'checkbox', | |
'field' => 'checkbox', | |
'label' => 'Checkbox', | |
'value' => 'third', // set default value | |
'choices' => array( | |
'first' => 'First Choice', | |
,'second' => 'Second Choice', | |
,'third' => 'Third Choice' | |
) | |
)); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
there is an extra comma at line 10/11 :)