protected function getRequestString()
 {
     $string = parent::getRequestString();
     foreach ($this->extraRequestParams as $param => $value) {
         $string .= '&' . $param . '=' . urlencode($value);
     }
     return $string;
 }
Example #2
0
 protected function getRequestString()
 {
     $requestString = parent::getRequestString();
     if ($this->processOnlyIdGoal > Piwik_DataTable_Filter_AddColumnsProcessedMetricsGoal::GOALS_FULL_TABLE) {
         $requestString .= "&filter_only_display_idgoal=" . $this->processOnlyIdGoal;
     }
     return $requestString . '&filter_update_columns_when_show_all_goals=1';
 }
Example #3
0
 protected function getRequestString()
 {
     $requestString = parent::getRequestString();
     return $requestString . '&filter_update_columns_when_show_all_goals=1';
 }