function getlocations_mapquest_plugin_style::render in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_mapquest/views/getlocations_mapquest_plugin_style.inc \getlocations_mapquest_plugin_style::render()
Render the display in this style.
Overrides views_plugin_style::render
File
- modules/
getlocations_mapquest/ views/ getlocations_mapquest_plugin_style.inc, line 486 - getlocations_mapquest_plugin_style.inc @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Class
- getlocations_mapquest_plugin_style
- @file getlocations_mapquest_plugin_style.inc @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function render() {
if (isset($this->view->live_preview) && $this->view->live_preview) {
return t('Getlocations Mapquest views are not compatible with live preview.');
}
return parent::render();
}