array(), ); } /** * Builds extra settings for the block edit form. */ public function form($bean, $form, &$form_state) { $form['openlayers_map'] = array( '#type' => 'select', '#title' => t('Map'), '#description' => t('This is the map that will be rendered in the block.'), '#options' => openlayers_map_options(), '#default_value' => $bean->openlayers_map ); return $form; } /** * Displays the bean. */ public function view($bean, $content, $view_mode = 'default', $langcode = NULL) { $preset = openlayers_preset_load($bean->openlayers_map); $content['openlayers_map']['#markup'] = openlayers_render_map($preset->data); return $content; } }