Ignore:
Timestamp:
Jan 19, 2011, 10:53:58 PM (13 years ago)
Author:
rvelices
Message:

rv_gmaps prepare for core 2.2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/rv_gmaps/trunk/main.inc.php

    r8304 r8776  
    4040}
    4141
    42 define('RVM_ACTION_MODEL', '<a href="%s" title="%s" rel="nofollow" class="pwg-state-default pwg-button" %s>
    43         <span class="pwg-icon pwg-icon-%s">&nbsp;</span><span class="pwg-button-text">%s</span>
    44 </a>');
     42define('RVM_ACTION_MODEL', '<a href="%s" title="%s" rel="nofollow" class="pwg-state-default pwg-button"%s><span class="pwg-icon pwg-icon-%s">&nbsp;</span><span class="pwg-button-text">%s</span></a>');
    4543
    4644function rvm_end_index()
     
    8078        {
    8179                $link_title = sprintf( l10n('displays %s on a map'), strip_tags($page['title']) );
    82                 $template->concat( 'PLUGIN_INDEX_ACTIONS' , '<li>'.sprintf(RVM_ACTION_MODEL,
     80                $template->concat( 'PLUGIN_INDEX_ACTIONS' , "\n<li>".sprintf(RVM_ACTION_MODEL,
    8381                        $map_url, $link_title, '', 'map', 'map'
    8482                        ).'</li>');
    85         }
     83        }
    8684
    8785        {
    8886                $kml_url = rvm_duplicate_kml_index_url( array(), array('start') );
    8987                $link_title = sprintf( l10n('opens %s in Google Earth'), strip_tags($page['title']) );
    90                 $template->concat( 'PLUGIN_INDEX_ACTIONS' , '<li>'.sprintf(RVM_ACTION_MODEL,
    91                         $kml_url, $link_title, 'type="application/vnd.google-earth.kml+xml"', 'globe', 'earth'
     88                $template->concat( 'PLUGIN_INDEX_ACTIONS' , "\n<li>".sprintf(RVM_ACTION_MODEL,
     89                        $kml_url, $link_title, ' type="application/vnd.google-earth.kml+xml"', 'globe', 'earth'
    9290                        ).'</li>');
    9391        }
     
    112110                                $link_title = sprintf( l10n('displays %s on a map'), strip_tags($pictures['current']['name']) );
    113111                                $template->concat( 'PLUGIN_PICTURE_ACTIONS' , sprintf(RVM_ACTION_MODEL,
    114                                         $map_url, $link_title, 'target="_top"', 'map', 'map'
     112                                        $map_url, $link_title, ' target="_top"', 'map', 'map'
    115113                                ));
    116114                        }
Note: See TracChangeset for help on using the changeset viewer.