You are here

function views_raw_sql_tokens_help in Views Raw SQL 7

3 calls to views_raw_sql_tokens_help()
views_handler_field_views_raw_sql::options_form in ./views_handler_field_views_raw_sql.inc
Default options form provides the label widget that all fields should have.
views_handler_filter_views_raw_sql::options_form in ./views_handler_filter_views_raw_sql.inc
Provide the basic form which calls through to subforms.
views_handler_sort_views_raw_sql::options_form in ./views_handler_sort_views_raw_sql.inc
Basic options for all sort criteria

File

./views_raw_sql.module, line 175

Code

function views_raw_sql_tokens_help() {
  return t('You can use placeholders like in field rewrite. If you use the views_fielddata module, you can also use tokens like [field:column], as due to views internals [field] only queries the entity ID.');
}