function getlocations_leaflet_plugin_style::init in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_leaflet/views/getlocations_leaflet_plugin_style.inc \getlocations_leaflet_plugin_style::init()
If this view is displaying an entity, save the entity type and info.
Overrides views_plugin_style::init
File
- modules/
getlocations_leaflet/ views/ getlocations_leaflet_plugin_style.inc, line 17 - getlocations_leaflet_plugin_style.inc @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Class
- getlocations_leaflet_plugin_style
- @file getlocations_leaflet_plugin_style.inc @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function init(&$view, &$display, $options = NULL) {
parent::init($view, $display, $options);
foreach (entity_get_info() as $key => $info) {
if ($view->base_table == $info['base table']) {
$this->entity_type = $key;
$this->entity_info = $info;
break;
}
}
}