Skip to content

Commit

Permalink
deprecated base function
Browse files Browse the repository at this point in the history
  • Loading branch information
demeritcowboy committed Nov 22, 2020
1 parent f72d958 commit ba01af6
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions CRM/Case/Form/Task.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,22 @@ public function orderBy() {
return 'ORDER BY ' . implode(',', $order_array);
}

/**
* Get the name of the table for the relevant entity.
*
* @return string
*/
public function getTableName() {
return 'civicrm_case';
}

/**
* Get the entity alias field.
*
* @return string
*/
public function getEntityAliasField() {
return 'case_id';
}

}

0 comments on commit ba01af6

Please sign in to comment.