Skip to content

Instantly share code, notes, and snippets.

@tonyarnold
Created December 2, 2010 14:27
Show Gist options
  • Select an option

  • Save tonyarnold/725385 to your computer and use it in GitHub Desktop.

Select an option

Save tonyarnold/725385 to your computer and use it in GitHub Desktop.
<?php
$filters = is_array($fields['filters']) ? $fields['filters'] : array();
$options = array(
array('admin-only', @in_array('admin-only', $filters]), __('Admin Only')),
array('send-email', @in_array('send-email', $filters), __('Send Email')),
array('expect-multiple', @in_array('expect-multiple', $filters), __('Allow Multiple')),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment