function finder_table_alias in Finder 7
Same name and namespace in other branches
- 6 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 - Inject anything into the query that the display handler needs.
File
- ./
finder.module, line 1677 - The finder module.
Code
function finder_table_alias($feid, $table = NULL, $field = NULL, $delta = NULL) {
return finder_alias('table', $feid, $table, $field, $delta);
}