| Server IP : 180.180.241.3 / Your IP : 216.73.216.35 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /AppServ/www/news/tmp/install_5333cea8259e5/front/views/html/tmpl/ |
Upload File : |
<?php
/**
* @version $Id$
* @copyright Copyright (C) 2005 - 2009 Joomla! Vargas. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* @author Guillermo Vargas (guille@vargas.co.cr)
*/
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers');
// Create shortcut to parameters.
$params = $this->item->params;
if ($this->displayer->canEdit) {
$live_site = JURI::root();
JHTML::_('behavior.framework', true);
$ajaxurl = "{$live_site}index.php?option=com_xmap&format=json&task=ajax.editElement&action=toggleElement&".JSession::getFormToken().'=1';
$css = '.xmapexcl img{ border:0px; }'."\n";
$css .= '.xmapexcloff { text-decoration:line-through; }';
//$css .= "\n.".$this->item->classname .' li {float:left;}';
$js = "
window.addEvent('domready',function (){
$$('.xmapexcl').each(function(el){
el.onclick = function(){
if (this && this.rel) {
options = JSON.decode(this.rel);
this.onComplete = checkExcludeResult
var myAjax = new Request.JSON({
url:'{$ajaxurl}',
onSuccess: checkExcludeResult.bind(this)
}).get({id:{$this->item->id},uid:options.uid,itemid:options.itemid});
}
return false;
};
});
});
checkExcludeResult = function (response) {
//this.set('class','xmapexcl xmapexcloff');
var imgs = this.getElementsByTagName('img');
if (response.result == 'OK') {
var state = response.state;
if (state==0) {
imgs[0].src='{$live_site}/components/com_xmap/assets/images/unpublished.png';
} else {
imgs[0].src='{$live_site}/components/com_xmap/assets/images/tick.png';
}
} else {
alert('The element couldn\\'t be published or upublished!');
}
}";
$doc = JFactory::getDocument();
$doc->addStyleDeclaration ($css);
$doc->addScriptDeclaration ($js);
}
?>
<div id="xmap">
<?php if ($params->get('show_page_heading', 1) && $params->get('page_heading') != '') : ?>
<h1>
<?php echo $this->escape($params->get('page_heading')); ?>
</h1>
<?php endif; ?>
<?php if ($params->get('access-edit') || $params->get('show_title') || $params->get('show_print_icon') || $params->get('show_email_icon')) : ?>
<ul>
<?php if (!$this->print) : ?>
<?php if ($params->get('show_print_icon')) : ?>
<li>
<?php echo JHtml::_('icon.print_popup', $this->item, $params); ?>
</li>
<?php endif; ?>
<?php if ($params->get('show_email_icon')) : ?>
<li>
<?php echo JHtml::_('icon.email', $this->item, $params); ?>
</li>
<?php endif; ?>
<?php else : ?>
<li>
<?php echo JHtml::_('icon.print_screen', $this->item, $params); ?>
</li>
<?php endif; ?>
</ul>
<?php endif; ?>
<?php if ($params->get('showintro', 1) ) : ?>
<?php echo $this->item->introtext; ?>
<?php endif; ?>
<?php echo $this->loadTemplate('items'); ?>
<?php if ($params->get('include_link', 1) ) : ?>
<div class="muted" style="font-size:10px;width:100%;clear:both;text-align:center;">Powered by <a href="http://www.jooxmap.com/">Xmap</a></div>
<?php endif; ?>
<span class="article_separator"> </span>
</div>