primo commit
This commit is contained in:
14
plugins/content/phocamaps/tmpl/custom_js.php
Normal file
14
plugins/content/phocamaps/tmpl/custom_js.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
/* @package Joomla
|
||||
* @copyright Copyright (C) Open Source Matters. All rights reserved.
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
|
||||
* @extension Phoca Extension
|
||||
* @copyright Copyright (C) Jan Pavelka www.phoca.cz
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
|
||||
*/
|
||||
|
||||
use Joomla\Language\Text;
|
||||
|
||||
defined( '_JEXEC' ) or die( 'Restricted access' );
|
||||
|
||||
?>
|
||||
33
plugins/content/phocamaps/tmpl/marker.php
Normal file
33
plugins/content/phocamaps/tmpl/marker.php
Normal file
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
/* @package Joomla
|
||||
* @copyright Copyright (C) Open Source Matters. All rights reserved.
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
|
||||
* @extension Phoca Extension
|
||||
* @copyright Copyright (C) Jan Pavelka www.phoca.cz
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
|
||||
*/
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
defined( '_JEXEC' ) or die( 'Restricted access' );
|
||||
|
||||
?>
|
||||
<div class="pmMarkerTitle"><?= addslashes($data->title);?></div>
|
||||
<div><?php echo PhocaMapsHelper::strTrimAll(addslashes($data->description)); ?></div>
|
||||
<?php
|
||||
if ($data->displaygps == 1) :
|
||||
?>
|
||||
<div class="pmgps">
|
||||
<table style="border:0">
|
||||
<tr>
|
||||
<td><strong><?php echo Text::_('PLG_CONTENT_PHOCAMAPS_GPS');?>: </strong></td>
|
||||
<td><?php echo PhocaMapsHelper::strTrimAll(addslashes($data->gpslatitude));?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td><?php echo PhocaMapsHelper::strTrimAll(addslashes($data->gpslongitude));?></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<?php
|
||||
endif;
|
||||
Reference in New Issue
Block a user