Import from SVN (r45945, r596)
[civicrm-core.git] / CRM / Mailing / Form / Search.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2013
32 * $Id$
33 *
34 */
35class CRM_Mailing_Form_Search extends CRM_Core_Form {
36
37 public function preProcess() {
38 parent::preProcess();
39 }
40
41 public function buildQuickForm() {
42 $parent = $this->controller->getParent();
43 $nameTextLabel = ($parent->_sms) ? ts('SMS Name') : ts('Mailing Name');
44
45 $this->add('text', 'mailing_name', $nameTextLabel,
46 CRM_Core_DAO::getAttribute('CRM_Mailing_DAO_Mailing', 'title')
47 );
48
49 CRM_Core_Form_Date::buildDateRange($this, 'mailing', 1, '_from', '_to', ts('From'), FALSE, FALSE);
50
51 $this->add('text', 'sort_name', ts('Created or Sent by'),
52 CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'sort_name')
53 );
54
55 CRM_Campaign_BAO_Campaign::addCampaignInComponentSearch($this);
56
57 foreach (array(
58 'Scheduled', 'Complete', 'Running') as $status) {
59 $this->addElement('checkbox', "mailing_status[$status]", NULL, $status);
60 }
61
62 if ($parent->_sms) {
63 $this->addElement('hidden', 'sms', $parent->_sms);
64 }
65
66 $this->addButtons(array(
67 array(
68 'type' => 'refresh',
69 'name' => ts('Search'),
70 'isDefault' => TRUE,
71 ),
72 ));
73 }
74
75 function setDefaultValues() {
76 $defaults = array();
77 foreach (array(
78 'Scheduled', 'Complete', 'Running') as $status) {
79 $defaults['mailing_status'][$status] = 1;
80 }
81
82 $parent = $this->controller->getParent();
83 if ($parent->_sms) {
84 $defaults['sms'] = 1;
85 }
86 return $defaults;
87 }
88
89 function postProcess() {
90 $params = $this->controller->exportValues($this->_name);
91
92 CRM_Contact_BAO_Query::fixDateValues($params["mailing_relative"], $params['mailing_from'], $params['mailing_to']);
93
94 $parent = $this->controller->getParent();
95 if (!empty($params)) {
96 $fields = array('mailing_name', 'mailing_from', 'mailing_to', 'sort_name', 'campaign_id', 'mailing_status', 'sms');
97 foreach ($fields as $field) {
98 if (isset($params[$field]) &&
99 !CRM_Utils_System::isNull($params[$field])
100 ) {
101 if (in_array($field, array(
102 'mailing_from', 'mailing_to')) && !$params["mailing_relative"]) {
103 $time = ($field == 'mailing_to') ? '235959' : NULL;
104 $parent->set($field, CRM_Utils_Date::processDate($params[$field], $time));
105 }
106 else {
107 $parent->set($field, $params[$field]);
108 }
109 }
110 else {
111 $parent->set($field, NULL);
112 }
113 }
114 }
115 }
116}
117