Advertisement
Guest User

Untitled

a guest
Jul 5th, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. drush create-denver-type --name="some title" --title="some title" --options="apple" --userid="myid"
  2.  
  3. foreach ($options as $opt => $value) {
  4. switch ($opt) {
  5. case 'Apples' :
  6. function1();
  7. break ;
  8. case 'Pears' :
  9. function2();
  10. break ;
  11. case 'Orange' :
  12. function2();
  13. break ;
  14. }
  15. }
  16.  
  17. $options = drush_get_option_list('options');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement