Created
October 24, 2014 15:25
-
-
Save daum/28ac60633d957eda951e to your computer and use it in GitHub Desktop.
This file contains 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 | |
$choices = [ | |
'Permission 1' => 'Permission 1', | |
'Permission 1 Sub-Permissions' => [ | |
'Permission 1a' => '1a', | |
'Permission 1b' => '1b' | |
], | |
'Permission 2' => 'Permission 2', | |
'Permission 3' => 'Permission 3', | |
'Permission 3 Sub-Permissions' => [ | |
'Permission 3a' => '3a', | |
'Permission 3b' => '3b' | |
] | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment