Skip to content
  1. Dec 02, 2008
    • Brandon Bergren's avatar
      * Fix [#339471] (reported by theabacus) -- Make province search accept country names. · 8d595fb8
      Brandon Bergren authored
      * Implement multiple country autocomplete.
      * Allow location_province_code() to operate on an array of countries.
      * Extend autocomplete to handle setting specific classes to join country and province fields together -- should be more robust.
      * Switch to using views "force single" stuff for country and province filters.
        - If you are having trouble editing country or province filters, please see [#341827]!
      * Implement autocomplete for views province filter.
      8d595fb8
  2. 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
  3. Sep 17, 2008
  4. Sep 16, 2008
  5. Aug 18, 2008
  6. Aug 06, 2008
  7. Jul 24, 2008
  8. Jul 23, 2008
  9. Jul 07, 2008
  10. Jun 17, 2008
  11. Jun 06, 2008
  12. Jun 05, 2008
  13. May 30, 2008
  14. May 29, 2008
  15. Apr 28, 2008
  16. Mar 21, 2008
  17. Mar 08, 2008
  18. Mar 07, 2008
  19. Mar 06, 2008
  20. Feb 04, 2008
  21. Feb 03, 2008
  22. Jan 24, 2008
  23. Jan 22, 2008
    • Bruno Massa's avatar
      Misc: · c8ea5e7b
      Bruno Massa authored
      * location_field_names() renamed to location_field_names()
      c8ea5e7b
    • Bruno Massa's avatar
      Misc: · 4501256c
      Bruno Massa authored
      * _location_search_form() moved to location.inc
      4501256c
    • Bruno Massa's avatar
      Misc: · f6f4cbdb
      Bruno Massa authored
      * rename some functions to avoid be called by a external hook call
      * moved some functions to location.inc
      f6f4cbdb
    • Bruno Massa's avatar
      Misc: · 380a27ff
      Bruno Massa authored
      * location.address.inc will hold all address-related functions (that are not hook)
      380a27ff
    • Bruno Massa's avatar
      Misc: · ca0ecaee
      Bruno Massa authored
      * Rename the "supoported" directory to "countries" on code
      ca0ecaee
    • Bruno Massa's avatar
      Misc: · 52560246
      Bruno Massa authored
      * location_latlon_rough() renamed to _ocation_latlon_rough()
      * _location_country_configured() renamed to _location_country_enabled()
      * Code organization
      52560246