Skip to content
  1. Oct 27, 2014
  2. Sep 07, 2014
  3. Aug 19, 2014
  4. Oct 11, 2013
  5. May 11, 2013
  6. Feb 25, 2011
  7. Jan 21, 2011
  8. Jan 20, 2011
  9. Jan 17, 2011
  10. Jan 11, 2011
  11. Jan 04, 2011
  12. May 27, 2010
  13. Apr 29, 2010
  14. Apr 17, 2009
  15. Mar 02, 2009
  16. Feb 24, 2009
  17. Dec 11, 2008
  18. Oct 09, 2008
    • Brandon Bergren's avatar
      * Add function location_province_code(). · 42e9eb5c
      Brandon Bergren authored
      * Fix $op 'delete' on hook_locationapi().
      * API CHANGE: Use location_save_locations() with an empty array instead of deleting rows from {location_instance}. This lets us have "real" deletion instead of relying on garbage collection.
      
      Before:
      <code>
      db_query("DELETE FROM {location_instance} WHERE genid = '%s'", 'mykey:'. $obj->id);
      </code>
      
      After:
      <code>
      $locations = array();
      location_save_locations($locations, array('genid' => 'mykey:'. $obj->id));
      </code>
      
      * Remove garbage collection routine and UI from settings page. References are checked automatically now.
      42e9eb5c
  19. Sep 29, 2008
  20. Sep 17, 2008
  21. Sep 10, 2008
  22. Sep 08, 2008
  23. Aug 06, 2008
  24. Jul 24, 2008
  25. Jul 07, 2008
  26. Jun 06, 2008
    • Brandon Bergren's avatar
      Don't use variable_get('gmap_user_map',... · 9424777a
      Brandon Bergren authored
      Don't use variable_get('gmap_user_map', '[gmap|center=0,30|zoom=16|width=100%|height=400px]') for the location chooser map. That's just stupid.
      
      Give it its own variable and set the default to '[gmap]' (i.e. inherit everything).
      9424777a
  27. Jun 05, 2008
  28. Mar 06, 2008
  29. Feb 27, 2008