123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458 |
- <?php
- /**
- * Implements hook_help().
- */
- function locationmap_help($path, $arg) {
- switch ($path) {
- case 'admin/help#locationmap':
- $output = '<p>' . t('The Location Map module displays a map of your geographic location with Google Maps.') . ' ' .
- l(t('The page for the map'), 'locationmap') . ' ' . t('is automatically generated.') . ' ' .
- t('A block is also created that displays a thumbnail of the map, linking to the map page.') . ' ' .
- t('This can be assigned to a page region on the') . ' ' . l(t('block administration page'), 'admin/structure/block') . '.</p>';
- return $output;
- }
- }
- /**
- * Implements hook_menu().
- */
- function locationmap_menu() {
- $items = array();
- $items['admin/config/locationmap'] = array(
- 'title' => 'Google Maps location',
- 'description' => 'Configure Location Map.',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('locationmap_admin_settings'),
- 'access callback' => 'user_access',
- 'access arguments' => array('administer locationmap'),
- 'type' => MENU_NORMAL_ITEM,
- );
- $items['locationmap'] = array('title' => 'Our Location',
- 'access callback' => TRUE,
- 'page callback' => 'locationmap_page',
- 'type' => MENU_SUGGESTED_ITEM,
- );
- $items['locationmap/view'] = array(
- 'title' => 'View',
- 'type' => MENU_DEFAULT_LOCAL_TASK,
- 'weight' => -10
- );
- $items['locationmap/edit'] = array(
- 'title' => 'Edit',
- 'description' => 'Configure Location Map.',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('locationmap_admin_settings'),
- 'access callback' => 'user_access',
- 'access arguments' => array('administer locationmap'),
- 'type' => MENU_LOCAL_TASK,
- );
- return $items;
- }
- /**
- * Callback for admin settings page
- */
- function locationmap_admin_settings($form, &$form_state) {
- drupal_add_js(drupal_get_path('module', 'locationmap') . '/locationmap_admin.js');
- $form['info'] = array(
- '#type' => 'fieldset',
- '#title' => t('Location information'),
- '#collapsible' => FALSE,
- );
- $form['info']['locationmap_title'] = array(
- '#type' => 'textfield',
- '#title' => t('Title'),
- '#default_value' => variable_get('locationmap_title', t('Our Location')),
- '#description' => t("The title of the automatically generated ") . l(t('map page'), 'locationmap') . '.',
- );
- $form['info']['locationmap_address'] = array('#type' => 'textfield',
- '#required' => TRUE,
- '#title' => t('Address of your location'),
- '#default_value' => variable_get('locationmap_address', ''),
- '#description' => t('Enter your address separated by commas. This will be sent to Google for geocoding to determine the geographical coordinates of your location. Include any suitable from: # Street, Suburb, City, Region/State, Postcode/Zip, Country.'),
- );
- $form['info']['locationmap_type'] = array(
- '#type' => 'select',
- '#title' => t('Map type'),
- '#default_value' => variable_get('locationmap_type', 'google.maps.MapTypeId.ROADMAP'),
- '#description' => NULL,
- '#options' => array(
- 'google.maps.MapTypeId.ROADMAP' => 'the default view',
- 'google.maps.MapTypeId.SATELLITE' => 'showing Google Earth satellite images',
- 'google.maps.MapTypeId.HYBRID' => 'showing a mixture of normal and satellite views',
- 'google.maps.MapTypeId.TERRAIN' => 'showing a physical map based on terrain information',
- ),
- );
- $zoom_levels = array('0' => t('0 - minimum zoom level, whole world'));
- for ($i = 1; $i < 17; $i++) {
- $zoom_levels["$i"] = "$i";
- }
- $zoom_levels['17'] = t('17 - maximum zoom level');
- $form['info']['locationmap_zoom'] = array('#type' => 'select',
- '#title' => t('Map zoom level'),
- '#default_value' => variable_get('locationmap_zoom', '15'),
- '#description' => NULL,
- '#options' => $zoom_levels,
- );
- $form['info']['locationmap_width'] = array('#type' => 'textfield',
- '#title' => t('Map Width'),
- '#default_value' => variable_get('locationmap_width', '500'),
- '#field_suffix' => 'px',
- '#description' => NULL,
- '#size' => 10,
- );
- $form['info']['locationmap_height'] = array('#type' => 'textfield',
- '#title' => t('Map Height'),
- '#default_value' => variable_get('locationmap_height', '500'),
- '#field_suffix' => 'px',
- '#description' => NULL,
- '#size' => 10,
- );
- $form['info']['latlng'] = array(
- '#type' => 'fieldset',
- '#title' => t('Geographical coordinates'),
- '#collapsible' => FALSE,
- '#description' => t('Geographical coordinates for your location. Location map will try to obtain this information from Google using the address above. You are also able to fine-tune this by dragging the marker on the' . ' ' . l(t('map page'), 'locationmap') . '. Under normal circumstances you would not set these coordinates manually.'),
- );
- $form['info']['latlng']['locationmap_lat'] = array(
- '#type' => 'textfield',
- '#title' => t('Latitude'),
- '#default_value' => variable_get('locationmap_lat', '-46.0868686'),
- );
- $form['info']['latlng']['locationmap_lng'] = array(
- '#type' => 'textfield',
- '#title' => t('Longitude'),
- '#default_value' => variable_get('locationmap_lng', '166.6822074'),
- );
- $form['info']['locationmap_info'] = array(
- '#type' => 'textarea',
- '#title' => t('Marker Information'),
- '#default_value' => variable_get('locationmap_info'),
- '#description' => t('The description that will be shown when a user clicks on the marker. If this field is empty, the address will be used.'),
- );
- $form['info']['locationmap_body'] = array(
- '#type' => 'textarea',
- '#title' => t('Additional information (displayed above map)'),
- '#required' => FALSE,
- '#default_value' => variable_get('locationmap_body'),
- '#description' => t('Any additional information that you would like to include above the map.'),
- );
- $form['info']['locationmap_footer'] = array(
- '#type' => 'textarea',
- '#title' => t('Additional information (displayed below map)'),
- '#required' => FALSE,
- '#default_value' => variable_get('locationmap_footer'),
- '#description' => t('Any additional information you would like to include below the map.'),
- );
- $form['#validate'][] = 'locationmap_admin_settings_validate';
- return system_settings_form($form);
- }
- /**
- * @todo Please document this function.
- * @see http://drupal.org/node/1354
- */
- function locationmap_admin_settings_validate($form, &$form_state) {
- if ($form_state['values']['locationmap_address']) {
- if ($form_state['values']['locationmap_address'] == variable_get('locationmap_address', '')) {
- drupal_set_message('Address has not changed. In order to preserve any location marker fine-tuning, coordinates have not been updated.', 'status');
- return;
- }
- $latlng = locationmap_geocode_for_address_recursive($form_state['values']['locationmap_address']);
- if ($latlng != FALSE) {
- list($lat, $lng) = $latlng;
- $form_state['values']['locationmap_lat'] = $lat;
- $form_state['values']['locationmap_lng'] = $lng;
- }
- else {
- switch ($form_state['values']['locationmap_lat']) {
- // If Geocoding fails and there are no previous coordinates, set to the default: Round Island in New Zealand's Fiordland National Park.
- case '':
- $form_state['values']['locationmap_lat'] = '-46.0868686';
- $form_state['values']['locationmap_lng'] = '166.6822074';
- drupal_set_message('Unable to Geocode address provided. As no previous coordinates were recorded, default values have been inserted. Try slightly modifying the address and resubmit, e.g. giving more or less detail, such as leaving out the suburb or state.', 'warning');
- break;
- // If Geocoding fails and there are previous coordinates, set to those coordinates.
- default:
- $form_state['values']['locationmap_lat'] = variable_get('locationmap_lat', '-46.0868686');
- $form_state['values']['locationmap_lng'] = variable_get('locationmap_lng', '166.6822074');
- drupal_set_message('Unable to Geocode address provided—previous coordinates will be used. Try slightly modifying the address and resubmit, e.g. giving more detail, or leaving out the suburb or state.', 'warning');
- break;
- }
- }
- }
- }
- /**
- * Implements hook_permission().
- */
- function locationmap_permission() {
- return array(
- 'administer locationmap' => array(
- 'title' => t('administer locationmap'),
- 'description' => t('Modify the address and change settings for the location map.'),
- ),
- );
- }
- /**
- * Menu callback; generate a page with Google Maps.
- */
- function locationmap_page() {
- $locationmap_title = variable_get('locationmap_title', t('Our Location'));
- $locationmap_body = variable_get('locationmap_body');
- $locationmap_footer = variable_get('locationmap_footer');
- $path = drupal_get_path('module', 'locationmap');
- drupal_add_js('http://maps.google.com/maps/api/js?v=3&sensor=false', array('type' => 'external', 'weight' => 5));
- drupal_add_js($path . '/locationmap.js', array('type' => 'file', 'weight' => 6, 'scope' => 'footer'));
- $locationmap_settings = array(
- 'address' => variable_get('locationmap_address', 'Fiordland, New Zealand'),
- 'info' => variable_get('locationmap_info', 'Fiordland, New Zealand'),
- 'lat' => variable_get('locationmap_lat', '-46.0868686'),
- 'lng' => variable_get('locationmap_lng', '166.6822074'),
- 'zoom' => variable_get('locationmap_zoom', 10),
- 'type' => variable_get('locationmap_type', 'google.maps.MapTypeId.ROADMAP'),
- 'admin' => user_access('administer locationmap'),
- );
- if (!$locationmap_settings['info']) {
- $locationmap_settings['info'] = $locationmap_settings['address'];
- }
- drupal_add_js(array('locationmap' => $locationmap_settings), 'setting');
- $output = '<div id="locationmap_body">' . $locationmap_body . '</div>';
- $output .= theme('locationmap_map');
- $output .= '<div id="locationmap_footer">' . $locationmap_footer . '</div>';
- if (user_access('administer locationmap')) {
- // TODO: Remove drupal_render and update to D7 desired behaviour. See http://drupal.org/update/modules/6/7#unrendered
- $form = drupal_get_form('locationmap_in_place_edit_form');
- $output .= drupal_render($form);
- }
- drupal_set_title($locationmap_title);
- return $output;
- }
- /**
- * Returns latitude and longitude for $address or NULL if it cannot be found.
- * @returns FALSE if address not found
- */
- function locationmap_geocode_for_address($address) {
- $address = urlencode($address);
- $url = "http://maps.google.com/maps/geo?q=$address&output=csv";
- $options = array(
- 'http' => array(
- 'max_redirects' => 10,
- 'timeout' => 120,
- )
- );
- $context = stream_context_create($options);
- $page = @file_get_contents( $url, false, $context );
- if (!$page) {
- return(FALSE);
- }
- $matches = explode(',', $page);
- if (!($matches[0] == '200')) {
- return(FALSE);
- }
- return (array($matches[2], $matches[3]));
- }
- /**
- * Try to get lat and lng information from address removing parts of address if not found.
- */
- function locationmap_geocode_for_address_recursive($address) {
- while (TRUE) {
- $latlng = locationmap_geocode_for_address($address);
- if ($latlng) {
- return($latlng);
- }
- if (strpos($address, ',') === FALSE) {
- return (FALSE);
- }
- $address = preg_replace('/[^,]+,/', '', $address, 1);
- }
- return (FALSE);
- }
- /**
- * @todo Please document this function.
- * @see http://drupal.org/node/1354
- */
- function locationmap_in_place_edit_form($form, &$form_state) {
- $form['#submit'][] = 'system_settings_form_submit';
- $form['description'] = array(
- '#prefix' => '<p>',
- '#markup' => t('Click and drag marker to fine tune position of your location. Set zoom level below.'),
- '#suffix' => '</p>',
- );
- $form['locationmap_lat'] = array('#type' => 'textfield',
- '#title' => t('Latitude'),
- '#default_value' => variable_get('locationmap_lat', ''),
- );
- $form['locationmap_lng'] = array('#type' => 'textfield',
- '#title' => t('Longitude'),
- '#default_value' => variable_get('locationmap_lng', ''),
- );
- $form['locationmap_zoom'] = array('#type' => 'textfield',
- '#title' => t('Zoom level'),
- '#default_value' => variable_get('locationmap_zoom', ''),
- );
- $form['submit'] = array(
- '#type' => 'submit',
- '#value' => t('Save new location and zoom level'),
- );
- return($form);
- }
- /**
- * Implements hook_simpletest().
- */
- function locationmap_simpletest() {
- // Scan through mymodule/tests directory for any .test files to tell SimpleTest module.
- $tests = file_scan_directory(drupal_get_path('module', 'locationmap') . '/tests', '/\.test/');
- return array_keys($tests);
- }
- /**
- * Implements hook_block_info().
- */
- function locationmap_block_info() {
- $blocks['image']['info'] = t('Location Map static image block');
- return $blocks;
- }
- /**
- * Implements hook_block_configure().
- */
- function locationmap_block_configure($delta) {
- $form = array();
- switch ($delta) {
- case 'image':
- $form['info']['locationmap_block_mapwidth'] = array(
- '#type' => 'textfield',
- '#title' => t('Block map width'),
- '#description' => t('Provide the width of the block map in pixels'),
- '#default_value' => variable_get('locationmap_block_mapwidth', '160'),
- '#field_suffix' => 'px',
- '#description' => NULL,
- '#size' => 10,
- );
- $form['info']['locationmap_block_mapheight'] = array(
- '#type' => 'textfield',
- '#title' => t('Block map height'),
- '#description' => t('Provide the height of the block map in pixels'),
- '#default_value' => variable_get('locationmap_block_mapheight', '120'),
- '#field_suffix' => 'px',
- '#description' => NULL,
- '#size' => 10,
- );
- $form['info']['locationmap_text_top'] = array(
- '#type' => 'text_format',
- '#title' => t('Additional text to show above the image'),
- '#default_value' => variable_get('locationmap_block_text_top'),
- '#format' => isset($edit['format']) ? $edit['format'] : NULL,
- );
- break;
- }
- return $form;
- }
- /**
- * Implements hook_block_save().
- */
- function locationmap_block_save($delta, $edit) {
- switch ($delta) {
- case 'image':
- variable_set('locationmap_block_mapheight', (int)$edit['locationmap_block_mapheight']);
- variable_set('locationmap_block_mapwidth', (int)$edit['locationmap_block_mapwidth']);
- variable_set('locationmap_block_text_top', $edit['locationmap_text_top']['value']);
- break;
- }
- }
- /**
- * Implements hook_block_view().
- */
- function locationmap_block_view($delta) {
- switch ($delta) {
- case 'image':
- $texttop = variable_get('locationmap_block_text_top');
- $blocktop = ($texttop) ? '<div id="locationmap-block-text-top">' . $texttop . '</div>' : '';
- $block = locationmap_block_image();
- $block['content'] = $blocktop . $block['content'];
- break;
- }
- return $block;
- }
- /**
- * @todo Please document this function.
- * @see http://drupal.org/node/1354
- */
- function locationmap_static_image_url($w = 200, $h = 150) {
- $image_url = 'http://maps.googleapis.com/maps/api/staticmap?zoom=' . variable_get('locationmap_zoom', 5);
- $image_url .= "&size={$w}x{$h}";
- $image_url .= '&markers=' . variable_get('locationmap_lat', 0) . ',' . variable_get('locationmap_lng', 0);
- $image_url .= "&sensor=false";
- return($image_url);
- }
- /**
- * @todo Please document this function.
- * @see http://drupal.org/node/1354
- */
- function locationmap_block_image() {
- $block = array();
- $block['subject'] = variable_get('locationmap_title', t('Our Location'));
- $block['content'] = theme('locationmap_block_image_link');
- return($block);
- }
- /**
- * Format static image for display in the block.
- * @ingroup themeable
- */
- function theme_locationmap_block_image_link() {
- $mapwidth = variable_get('locationmap_block_mapwidth', 160);
- $mapheight = variable_get('locationmap_block_mapheight', 120);
- return(l('<img src="' . locationmap_static_image_url($mapwidth, $mapheight) . '" alt="Location map" />', 'locationmap', array('html' => TRUE)));
- }
- /**
- * Format div for display Google Maps in it.
- *
- * @ingroup themeable
- */
- function theme_locationmap_map() {
- $width = variable_get('locationmap_width', '500') . 'px';
- $height = variable_get('locationmap_height', '500') . 'px';
- return ('<div id="locationmap_map" style="width: ' . $width . '; height: ' . $height . '"></div>');
- }
- /**
- * Implements hook_theme().
- */
- function locationmap_theme() {
- return array(
- 'locationmap_block_image_link' => array(),
- 'locationmap_map' => array(),
- );
- }
|