X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;ds=sidebyside;f=CRM%2FCore%2FForm%2FDate.php;h=66f25e183439c82a677b8e201b4ab13026e68ee9;hb=61ac5f959d775677c6eadffed193fde1d815eac4;hp=7693b97eae1d965d598c1246062d6b1e787876fb;hpb=d0f466d1aec3f5f2f9f24635470a7df8d15b9b11;p=civicrm-core.git diff --git a/CRM/Core/Form/Date.php b/CRM/Core/Form/Date.php index 7693b97eae..66f25e1834 100644 --- a/CRM/Core/Form/Date.php +++ b/CRM/Core/Form/Date.php @@ -1,9 +1,9 @@ ts('- any -'), - 0 => ts('Choose Date Range'), - 'this.year' => ts('This Year'), - 'this.fiscal_year' => ts('This Fiscal Year'), - 'this.quarter' => ts('This Quarter'), - 'this.month' => ts('This Month'), - 'this.week' => ts('This Week'), - 'this.day' => ts('This Day'), - 'previous.year' => ts('Previous Year'), - 'previous.fiscal_year' => ts('Previous Fiscal Year'), - 'previous.quarter' => ts('Previous Quarter'), - 'previous.month' => ts('Previous Month'), - 'previous.week' => ts('Previous Week'), - 'previous.day' => ts('Previous Day'), - 'previous_before.year' => ts('Prior to Previous Year'), - 'previous_before.quarter' => ts('Prior to Previous Quarter'), - 'previous_before.month' => ts('Prior to Previous Month'), - 'previous_before.week' => ts('Prior to Previous Week'), - 'previous_before.day' => ts('Prior to Previous Day'), - 'previous_2.year' => ts('Previous 2 Years'), - 'previous_2.quarter' => ts('Previous 2 Quarters'), - 'previous_2.month' => ts('Previous 2 Months'), - 'previous_2.week' => ts('Previous 2 Weeks'), - 'previous_2.day' => ts('Previous 2 Days'), - 'earlier.year' => ts('To End of Prior Year'), - 'earlier.quarter' => ts('To End of Prior Quarter'), - 'earlier.month' => ts('To End of Prior Month'), - 'earlier.week' => ts('To End of Prior Week'), - 'earlier.day' => ts('To End of Prior Day'), - 'greater.year' => ts('Current Year to-date'), - 'greater.quarter' => ts('Current Quarter to-date'), - 'greater.month' => ts('Current Month to-date'), - 'greater.week' => ts('Current Week to-date'), - 'greater.day' => ts('Current Day'), - 'ending.year' => ts('From 12 Months Ago'), - 'ending.quarter' => ts('From 3 Months Ago'), - 'ending.month' => ts('From 1 Month Ago'), - 'ending.week' => ts('From 1 Week Ago'), - ); - $selector += $operators; + static function returnDateRangeSelector( + &$form, $fieldName, $count = 1, + $from = '_from', $to = '_to', $fromLabel = 'From:', + $required = FALSE, $operators = array(), + $dateFormat = 'searchDate', $displayTime = FALSE + ) { + $selector = + array( + '' => ts('- any -'), + 0 => ts('Choose Date Range'), + 'this.year' => ts('This Year'), + 'this.fiscal_year' => ts('This Fiscal Year'), + 'this.quarter' => ts('This Quarter'), + 'this.month' => ts('This Month'), + 'this.week' => ts('This Week'), + 'this.day' => ts('This Day'), + 'previous.year' => ts('Previous Year'), + 'previous.fiscal_year' => ts('Previous Fiscal Year'), + 'previous.quarter' => ts('Previous Quarter'), + 'previous.month' => ts('Previous Month'), + 'previous.week' => ts('Previous Week'), + 'previous.day' => ts('Previous Day'), + 'previous_before.year' => ts('Prior to Previous Year'), + 'previous_before.quarter' => ts('Prior to Previous Quarter'), + 'previous_before.month' => ts('Prior to Previous Month'), + 'previous_before.week' => ts('Prior to Previous Week'), + 'previous_before.day' => ts('Prior to Previous Day'), + 'previous_2.year' => ts('Previous 2 Years'), + 'previous_2.quarter' => ts('Previous 2 Quarters'), + 'previous_2.month' => ts('Previous 2 Months'), + 'previous_2.week' => ts('Previous 2 Weeks'), + 'previous_2.day' => ts('Previous 2 Days'), + 'earlier.year' => ts('To End of Prior Year'), + 'earlier.quarter' => ts('To End of Prior Quarter'), + 'earlier.month' => ts('To End of Prior Month'), + 'earlier.week' => ts('To End of Prior Week'), + 'earlier.day' => ts('To End of Prior Day'), + 'greater.year' => ts('From Start of Current Year'), + 'greater.quarter' => ts('From Start of Current Quarter'), + 'greater.month' => ts('From Start of Current Month'), + 'greater.week' => ts('From Start of Current Week'), + 'greater.day' => ts('From Start of Current Day'), + 'current.year' => ts('Current Year to-date'), + 'current.quarter' => ts('Current Quarter to-date'), + 'current.month' => ts('Current Month to-date'), + 'current.week' => ts('Current Week to-date'), + 'ending_3.year' => ts('Last 3 Years'), + 'ending_2.year' => ts('Last 2 Years'), + 'ending.year' => ts('Last 12 Months'), + 'ending.quarter' => ts('Last 3 Months'), + 'ending.month' => ts('Last Month'), + 'ending.week' => ts('Last 7 days'), + ); + + if (is_array($operators)) { + $selector = array_merge($selector, $operators); + } $config = CRM_Core_Config::singleton(); //if fiscal year start on 1 jan then remove fiscal year task @@ -165,7 +196,7 @@ Class CRM_Core_Form_Date { /** * This function is to build the date range - relative or absolute * - * @param Object $form the form object that we are operating on + * @param CRM_Core_Form $form the form object that we are operating on * @param string $fieldName * @param Array $selector array of option values to add * @param integer $count @@ -181,8 +212,9 @@ Class CRM_Core_Form_Date { $form->add('select', "{$fieldName}_relative", ts('Relative Date Range'), - $selector, - $required + $selector, + $required, + array('class' => 'crm-select2') ); $form->addDateRange($fieldName, $from, $to, $fromLabel, $dateFormat, FALSE, $displayTime);