You are here

function finder_table_alias in Finder 6

Same name and namespace in other branches
  1. 7 finder.module \finder_table_alias()

Build table alias in consistent manner.

Deprecated. Use finder_alias('table', ...) instead.

1 call to finder_table_alias()
finder_views_plugin_display_finder::query in modules/finder_views/includes/finder_views_plugin_display_finder.inc

File

./finder.module, line 1777
The finder module.

Code

function finder_table_alias($feid, $table = NULL, $field = NULL, $delta = NULL) {
  return finder_alias('table', $feid, $table, $field, $delta);
}