You are here

function geofield_test_bounds_submit_page in Geofield 7.2

1 string reference to 'geofield_test_bounds_submit_page'
geofield_test_menu in tests/geofield_test.module
Implements hook_menu().

File

tests/geofield_test.module, line 126

Code

function geofield_test_bounds_submit_page() {
  $content = array();
  $simple = variable_get('geofield_test_simple_bounds', FALSE);
  if ($simple) {
    $content['header'] = array(
      '#markup' => '<h2>Results</h2>',
    );
    $content['simple'] = array(
      '#markup' => '<p>Simple - Top: ' . $simple['top'] . ' Right: ' . $simple['right'] . ' Bottom: ' . $simple['bottom'] . ' Left: ' . $simple['left'] . '</p>',
    );
  }
  return $content;
}