Changeset 3441965
- Timestamp:
- 01/18/2026 02:58:17 PM (8 weeks ago)
- Location:
- locatoraid/trunk
- Files:
-
- 6 edited
-
locatoraid.php (modified) (2 diffs)
-
modules/app.conf/view.php (modified) (1 diff)
-
modules/coordinates/view.php (modified) (1 diff)
-
modules/directions.front/_config_after.php (modified) (1 diff)
-
modules/directions.locations/_config_after.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
locatoraid/trunk/locatoraid.php
r3412866 r3441965 4 4 Plugin URI: https://www.locatoraid.com/ 5 5 Description: Store locator plugin 6 Version: 3.9.6 56 Version: 3.9.66 7 7 Author: plainware.com 8 8 Author URI: https://www.locatoraid.com/ … … 12 12 13 13 if( ! defined('LC3_VERSION') ){ 14 define( 'LC3_VERSION', 396 5);14 define( 'LC3_VERSION', 3966 ); 15 15 } 16 16 -
locatoraid/trunk/modules/app.conf/view.php
r2859421 r3441965 7 7 $to = '/app.conf/update'; 8 8 9 return $this->app->make('/conf/view') 10 ->render( $form, $to ) 11 ; 9 return $this->app->make('/conf/view')->render($form, $to); 12 10 } 13 11 } -
locatoraid/trunk/modules/coordinates/view.php
r3370713 r3441965 4 4 public function render($address) 5 5 { 6 $out = $this->app->make('/html/list') 7 ->set_gutter(2) 8 ; 9 $out 10 ->add( $address ) 11 ; 6 $out = $this->app->make('/html/list')->set_gutter(2); 7 $out->add( $address ); 12 8 13 9 return $out; -
locatoraid/trunk/modules/directions.front/_config_after.php
r3370713 r3441965 1 1 <?php if (! defined('ABSPATH')) exit; // Exit if accessed directly 2 $config['after']['/front/view'][] = function( $app, $ret)2 $config['after']['/front/view'][] = function($app, $ret) 3 3 { 4 4 $app_settings = $app->make('/app/settings'); -
locatoraid/trunk/modules/directions.locations/_config_after.php
r3370713 r3441965 1 1 <?php if (! defined('ABSPATH')) exit; // Exit if accessed directly 2 $config['after']['/locations/presenter->fields'][] = function( $app, $ret)2 $config['after']['/locations/presenter->fields'][] = function($app, $ret) 3 3 { 4 4 $ret['directions'] = __('Directions', 'locatoraid'); … … 6 6 }; 7 7 8 $config['after']['/locations/presenter->present_front'][] = function( $app, $ret, $search, $search_coordinates)8 $config['after']['/locations/presenter->present_front'][] = function($app, $ret, $search, $search_coordinates) 9 9 { 10 10 if( ! ($ret['latitude'] && $ret['longitude']) ){ -
locatoraid/trunk/readme.txt
r3412866 r3441965 2 2 Plugin URI: https://www.locatoraid.com 3 3 Contributors: Plainware 4 Tags: map, store locator, store finder, google maps, zip code4 Tags: dealer locator, geocoding, store locator, location finder, zip code 5 5 License: GPLv2 or later 6 Stable tag: 3.9.6 56 Stable tag: 3.9.66 7 7 Requires at least: 3.3 8 8 Tested up to: 6.9 9 9 Requires PHP: 5.3 10 10 11 A lightweight, easy-to-use store locator plugin. Premium version adds CSV imports, custom fields, custom map markers, location categories and more.11 A lightweight, reliable store locator plugin backed by ongoing maintenance, updates, and support. Premium version adds CSV imports, custom fields, custom map markers, location categories and more. 12 12 13 13 == Description == … … 89 89 90 90 == Changelog == 91 92 = 3.9.66 = 93 Code cleanup and minor fixes. 91 94 92 95 = 3.9.65 =
Note: See TracChangeset
for help on using the changeset viewer.