| Current Path : /home/poneycluc/www/plugins/system/jagooglemap/assets/elements/ |
| Current File : /home/poneycluc/www/plugins/system/jagooglemap/assets/elements/jamap.php |
<?php
/**
* ------------------------------------------------------------------------
* JA System Google Map plugin
* ------------------------------------------------------------------------
* Copyright (C) 2004-2018 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
* @license - GNU/GPL, http://www.gnu.org/licenses/gpl.html
* Author: J.O.O.M Solutions Co., Ltd
* Websites: http://www.joomlart.com - http://www.joomlancers.com
* ------------------------------------------------------------------------
*/
// Ensure this file is being included by a parent file
defined('_JEXEC') or die('Restricted access');
use Joomla\CMS\Factory;
use Joomla\CMS\Uri\Uri;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Form\FormField;
use Joomla\CMS\HTML\HTMLHelper;
jimport('joomla.form.formfield');
/**
*
* JA Fetch for Map
* @author JoomlArt
*
*/
class JFormFieldJamap extends FormField
{
/**
* Element name
*
* @access protected
* @var string
*/
var $_type = 'Jamap';
/**
*
* Construction Fetch
*/
function getInput()
{
$func = (string) $this->element['function'];
if(!$func) {
$func = 'mapkey';
}
if(method_exists($this, $func)) {
return call_user_func_array(array($this, $func), array());
}
return null;
}
/**
* return - map_key, function="@map_key"
*/
function mapkey()
{
//popup
HTMLHelper::_('jquery.framework');
if(version_compare(JVERSION, '4', 'ge')){
HTMLHelper::_('bootstrap.modal');
}else{
HTMLHelper::_('behavior.modal');
}
//
$doc = Factory::getDocument();
$path = Uri::root(true).'/plugins/system/jagooglemap/assets/';
$doc->addStyleSheet($path . 'style.css');
$doc->addScript($path . 'markcluster.js');
$doc->addScript($path . 'script.js');
$doc->addScript($path . 'jagencode.js');
$doc->addScript($path . 'tinglejs/tingle.min.js');
$doc->addStyleSheet($path . 'tinglejs/tingle.min.css');
//google map
$map_js = 'https://maps.googleapis.com/maps/api/js?key=' . $this->value;//v3
$doc->addScript($map_js);
//
$html = '<input type="text" class="form-control" name="' . $this->name . '" id="' . $this->id . '" class="input-xxlarge" value="'
. htmlspecialchars($this->value, ENT_COMPAT, 'UTF-8') . '" />';
return $html;
}
/**
* return - map_code, function="map_code"
*/
function mapcode()
{
$paramname = $this->name;
$id = 'jform_params_code_container';
$cols = (isset($this->element['cols']) && $this->element['cols'] != '') ? 'cols="' . intval($this->element['cols']) . '"' : '';
$rows = (isset($this->element['rows']) && $this->element['rows'] != '') ? 'rows="' . intval($this->element['rows']) . '"' : '';
$value = $this->value ? $this->value : (string) $this->element['default'];
$html = "";
$html .= "\n\t<div>";
$html .= "\n\t<a name=\"mapPreview\"></a>";
$html .= "\n\t<textarea name=\"{$paramname}\" class='form-control' id=\"{$id}\" style=\"width:100%; max-width:650px; height: 100px;\" >{$value}</textarea><br />";
$html .= "\n\t" . '<a href="javascript: CopyToClipboard(\'' . $id . '\');">' . Text::_('SELECT_ALL') . '</a>';
$html .= "\n\t" . ' | ';
$html .= "\n\t" . '<a id="jaMapPreview" href="#mapPreview" >' . Text::_('PREVIEW_MAP') . '</a>';
$html .= '</div>';
return $html;
}
}