_geo_field_tablename

geo/modules/geo_field/geo_field.module, line 345

Versions
6
_geo_field_tablename($field)

▾ 6 functions call _geo_field_tablename()

geo_field in geo/modules/geo_field/geo_field.module
Implementation of hook_field().
geo_field in geo/modules/geo_field/geo_field.module
Implementation of hook_field().
_geo_field_init in geo/modules/geo_field/geo_field.module
_geo_field_init in geo/modules/geo_field/geo_field.module
_geo_field_save in geo/modules/geo_field/geo_field.module
Save function for Geo fields. Because the storage function includes some calls to database functions, they include quotes that are escaped by the default query substitutions. Save the value manually instead.
_geo_field_save in geo/modules/geo_field/geo_field.module
Save function for Geo fields. Because the storage function includes some calls to database functions, they include quotes that are escaped by the default query substitutions. Save the value manually instead.

Code

<?php
function _geo_field_tablename($field) {
  return _content_tablename($field['field_name'], CONTENT_DB_STORAGE_PER_FIELD);
}
?>