RishiShreshtha

Untitled

Jun 13th, 2013
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. function dreamzen_form_views_exposed_form_alter(&$form, &$form_state, $form_id) {
  2.     $fromdate = &$form['created'];
  3.     $fromdate['#type'] = 'select';
  4.     $fromdate['#options'] = array(
  5.       '' => 'All',
  6.       strtotime('-7 days') => '-7 days',
  7.       '-30' => 'Last month',
  8.     );
  9.     $fromdate['#default_value'] = '';
  10.     $fromdate['#size'] = 1;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment