*/
protected $_searchButtonName;
- /**
- * name of print button
- *
- * @var string
- * @access protected
- */
- protected $_printButtonName;
-
/**
* name of action button
*
));
}
- $this->add('select', 'task', ts('Actions:') . ' ', $taskValue);
- $this->setDefaults(array('task' => $currentTaskValue));
+ $this->add('select', 'task', ts('Actions:') . ' ', array('' => ts('- actions -')) + $taskValue);
$this->add('submit', $this->_actionButtonName, ts('Go'),
array(
)
);
- $this->add('submit', $this->_printButtonName, ts('Print'),
- array(
- 'class' => 'form-submit',
- 'onclick' => "return checkPerformAction('mark_x', '" . $this->getName() . "', 1);",
- )
- );
-
// need to perform tasks on all or selected items ? using radio_ts(task selection) for it
$this->addElement('radio', 'radio_ts', NULL, '', 'ts_sel', array('checked' => 'checked'));
$this->addElement('radio', 'radio_ts', NULL, '', 'ts_all', array('onclick' => $this->getName() . ".toggleSelect.checked = false; toggleCheckboxVals('mark_x_',this); toggleTaskAction( true );"));
$this->set('queryParams', $this->_queryParams);
$buttonName = $this->controller->getButtonName();
- if ($buttonName == $this->_actionButtonName || $buttonName == $this->_printButtonName) {
+ if ($buttonName == $this->_actionButtonName) {
// check actionName and if next, then do not repeat a search, since we are going to the next page
// hack, make sure we reset the task values
*/
function taskName($controller, $formName = 'Search') {
// total hack, check POST vars and then session to determine stuff
- // fix value if print button is pressed
- if (!empty($_POST['_qf_' . $formName . '_next_print'])) {
- $value = CRM_Campaign_Task::PRINT_VOTERS;
- }
- else {
- $value = CRM_Utils_Array::value('task', $_POST);
- }
+ $value = CRM_Utils_Array::value('task', $_POST);
if (!isset($value)) {
$value = $this->_controller->get('task');
}