}
/**
- * Setter for $_force,
+ * Setter for $_force.
*
* @param $isForce
*/
}
/**
+ * This adds the tab referred to as Title and Format, rendered through Instance.tpl.
*
+ * @todo call this tab into the report template in the same way as OrderBy etc, ie
+ * by adding a description of the tab to $this->tabs, causing the tab to be added in
+ * Criteria.tpl.
*/
public function buildInstanceAndButtons() {
CRM_Report_Form_Instance::buildForm($this);
}
}
+ /**
+ * Build the tag filter field to display on the filters tab.
+ */
public function buildTagFilter() {
$contactTags = CRM_Core_BAO_Tag::getTags($this->_tagFilterTable);
if (!empty($contactTags)) {
}
/**
+ * Get SQL operator from form text version.
+ *
* @param string $operator
*
* @return string
/**
* Generate where clause.
+ *
* This can be overridden in reports for special treatment of a field
*
* @param array $field Field specifications
}
/**
+ * Get SQL where clause for a date field.
+ *
* @param string $fieldName
* @param $relative
* @param string $from
* @param string $to
- * @param null $type
- * @param null $fromTime
- * @param null $toTime
+ * @param string $type
+ * @param string $fromTime
+ * @param string $toTime
*
* @return null|string
*/