| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/visitevirtuelle/administrator/components/com_ovacomposer/views/item/tmpl/ |
Upload File : |
<?php
/**
* @version $Id$
* @author OvaTheme
* @package Joomla.Site
* @subpackage com_ovacomposer
* @copyright Copyright (C) 2013 OvaTheme. All rights reserved.
* @license License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.
*/
defined('_JEXEC') or die;
JHtml::_('behavior.tooltip');
JHtml::_('behavior.formvalidation');
?>
<div id="ova-debug"></div>
<div class="ova-design row-fluid">
<!-- Display sidebar: All Elments of OvaComposer ::START-->
<div class="span2 ova-items">
<div class="ova-title-layout"><strong><?php echo JText::_('COM_OVACOMPOSER_ALL_ELEMENTS'); ?></strong></div>
<ul id="draggable" class="sortable-list">
<?php foreach($this->item as $item){ ?>
<li class="ui-state-highlight <?php echo $item->class; ?>" data-type="<?php echo $item->type; ?>" data="<?php echo rawurlencode($item->defaultcode); ?>">
<div class="ova-header-title">
<span class="ova-name"><?php echo $item->name; ?></span>
<span href="#" class="ova-close" title="Close"><i class="icon-cancel-circle "></i></span>
<span href="#ova-navigation" title="Edit" data-type="<?php echo $item->type; ?>" class="ova-edit ovamodal"><i class="icon-cog-2"></i></span>
<?php if($item->type=='columns_desi' || $item->type=='tabs_desi'){ ?>
<span class="ova-hide"><i class="icon-eye-open"></i></span>
<?php } ?>
<span href="#" class="ova-duplicate" title="Duplicate"><i class="icon-copy"></i></span>
</div>
</li>
<?php } ?>
</ul>
</div>
<!-- Display sidebar: All Elments of OvaComposer ::END -->
<!-- Display Content of Page ::START -->
<div class="span8" style="width: 68.11%;">
<div id="content_page" style="margin-left: 10px;">
<div class="ova-desi">
<div class="ova-title-layout">
<h3 style="padding-top:10px; padding-left: 10px; margin-top:0; float:left;"><a style="color:#999999;" href="#content_page" data-toggle="tab"><?php echo JText::_('COM_OVACOMPOSER_PAGE_CONTENT'); ?></a></h3>
<span class="ova-design-title"><?php echo JText::_('COM_OVACOMPOSER_DRAG_AND_DROP_HERE'); ?></span>
<span class="config ovamodal" href="#pageconfig" data-type="page-config"><i class="icon-cog-2"></i></span>
</div>
<ul id="ova-page" class="sortable-list sortable">
<?php foreach($this->design as $item){ ?>
<li class="btn ui-state-highlight ui-draggable <?php echo $item->class; ?>" data-type="<?php echo $item->type; ?>" data="<?php echo rawurlencode($item->json); ?>" style="display:block;">
<div class="ova-header-title">
<span class="ova-name"><?php echo $item->name; ?></span>
<span href="#" class="ova-close" title="Close"><i class="icon-cancel-circle "></i></span>
<span href="#ova-navigation" title="Edit" data-type="<?php echo $item->type; ?>" class="ova-edit ovamodal"><i class="icon-cog-2"></i></span>
<?php if($item->type=='columns_desi' || $item->type=='tabs_desi'){ ?>
<span class="ova-hide"><i class="icon-eye-open"></i></span>
<?php } ?>
<span href="#" class="ova-duplicate" title="Duplicate"><i class="icon-copy"></i></span>
</div>
</li>
<?php } ?>
</ul>
</div>
</div>
<!-- Display Content of Page ::END -->
<!-- Display alert save success ::START -->
<div id="ova-save-eff">
<div class="over-message">
<i class="icon-spinner icon-spinning"></i>
<div class="message">
<i class="icon-checkmark-4"></i> <?php echo JText::_('COM_OVACOMPOSER_SAVE_SUCCESS'); ?>
</div>
</div>
<div class="over"></div>
</div>
<!-- Display alert save success ::END -->
</div>
<div class="span2">
<div class="" id="seo_page">
<h3 style="padding-top:10px; padding-left: 10px; margin-top:0; float:left;"><a style="color:#999999;" href="#seo_page" data-toggle="tab"><?php echo JText::_('COM_OVACOMPOSER_SEO_OPTIONS'); ?></a>
</h3>
<div class="control-group">
<label for="keyword" class="control-label"><?php echo JText::_('COM_OVACOMPOSER_META_KEYWORD'); ?>:</label>
<div class="controls">
<textarea id="keyword" name="keyword" cols="200" rows="3"><?php echo $this->keyword; ?></textarea>
</div>
</div>
<div class="control-group">
<label for="description" class="control-label"><?php echo JText::_('COM_OVACOMPOSER_META_DESCRIPTION'); ?>:</label>
<div class="controls">
<textarea id="description" name="description" cols="200" rows="7"><?php echo $this->description; ?></textarea>
</div>
</div>
<div class="control-group">
<label for="robots" class="control-label"><?php echo JText::_('COM_OVACOMPOSER_META_ROBOTS'); ?>:</label>
<div class="controls">
<select id="robots" name="robots" style="width: 97%;">
<option value="" <?php echo $this->robots == "" ? "Selected":"" ?>><?php echo JText::_('COM_OVACOMPOSER_META_USE_GLOBAL'); ?></option>
<option value="index,follow" <?php echo $this->robots == "index,follow" ? "Selected":"" ?>><?php echo JText::_('COM_OVACOMPOSER_META_USE_INDEX_FOLLOW'); ?></option>
<option value="noindex,follow" <?php echo $this->robots == "noindex,follow" ? "Selected":"" ?>><?php echo JText::_('COM_OVACOMPOSER_META_USE_NO_INDEX_FOLLOW'); ?></option>
<option value="index,nofollow" <?php echo $this->robots == "index,nofollow" ? "Selected":"" ?>><?php echo JText::_('COM_OVACOMPOSER_META_USE_INDEX_NO_FOLLOW'); ?></option>
<option value="noindex,nofollow" <?php echo $this->robots == "noindex,nofollow" ? "Selected":"" ?>><?php echo JText::_('COM_OVACOMPOSER_META_USE_NO_INDEX_NO_FOLLOW'); ?></option>
</select>
</div>
</div>
<div class="control-group">
<label for="author" class="control-label"><?php echo JText::_('COM_OVACOMPOSER_META_AUTHOR'); ?>:</label>
<div class="controls">
<input id="author" name="author" value="<?php echo $this->author; ?>" style="height: 25px; line-height: 25px; border: 1px solid #ccc; width: 97%; color:#666;padding-left:5px;" />
</div>
</div>
</div>
</div>
</div>
<br/>
<div class="copyright-ova text-center"><strong>Copyright © 2013 OvaTheme. All rights reserved.</strong></div>
<div id="ova-navigation" class="ova-navigation"></div>
<?php
$arrName ='{';
foreach($this->item as $key=>$item){
if($key!=0)
$arrName.=',';
$arrName.='"'.$item->type.'":{"name":"'.$item->name.'","class":"'.$item->class.'","type":"'.$item->type.'"}';
}
$arrName.='}';
?>
<div id="ova-arrName" data='<?php echo $arrName; ?>'></div>
<div class="namepage none">
<div class="ova-namepage form-horizontal">
<div class="control-group">
<label class="control-label" for="inputNamepage"><?php echo JText::_('COM_OVACOMPOSER_INPUTNAME'); ?>:</label>
<div class="controls">
<input type="text" id="inputNamepage" placeholder="<?php echo JText::_('COM_OVACOMPOSER_INPUTNAME'); ?>"
value="<?php echo $this->name; ?>" >
</div>
</div>
</div>
</div>
<!-- Display formfield in admin com_ovacomposer/models/forms/page.xml ::Start -->
<div id="ova-element" class="none">
<div id="ova-element-k2category">
<?php
//jimport( 'joomla.application.component.helper' );
if(JComponentHelper::isEnabled('com_k2')){
echo $this->form->getInput('k2category');
}else{
echo JText::_('COM_OVACOMPOSER_PLEASE_INSTALL_COMPONENT_K2');
}
?>
</div>
<div id="ova-element-k2extra">
<?php
if(JComponentHelper::isEnabled('com_k2')){
$sql = "SELECT id, name FROM #__k2_extra_fields AS a WHERE a.published = 1";
$db = JFactory::getDBO();
$db->setQuery($sql);
$result = $db->loadObjectList();
if($result){
$ele_k2extra = "<select id='k2_extrafilter' name='k2extra'>";
$ele_k2extra .= "<option value=''>".JText::_('COM_OVACOMPOSER_SELECT_AN_EXTRAFIELD_FILTER_K2')."</option>";
foreach ($result as $key => $value) {
$ele_k2extra .= "<option value='".$value->id."'>".$value->name."</option>";
}
$ele_k2extra .= '</select>';
echo $ele_k2extra;
}
}else{
echo JText::_('COM_OVACOMPOSER_PLEASE_INSTALL_COMPONENT_K2');
}
?>
</div>
<div id="ova-element-modules">
<?php echo $this->form->getInput('modules'); ?>
</div>
<div id="ova-element-contents">
<?php echo $this->form->getInput('contents'); ?>
</div>
<div id="ova-element-k2contents">
<?php
if(JComponentHelper::isEnabled('com_k2')){
echo $this->form->getInput('k2contents');
}else{
echo JText::_('COM_OVACOMPOSER_PLEASE_INSTALL_COMPONENT_K2');
}
?>
</div>
<div id="ova-element-category">
<?php echo $this->form->getInput('category'); ?>
</div>
<div id="ova-element-map">
<div class="map_canvas"></div>
<input id="geocomplete" type="text" class="ova-location" placeholder="Type in an address" size="90" />
<input id="find1" type="button" value="find" />
<input id="reset" type="reset" value="reset"/>
<div class="row-fluid">
<div class="span6">
<label>Latitude</label>
<input name="lat" class="ova-latgmap" type="text" value="">
</div>
<div class="span6">
<label>Longitude</label>
<input name="lng" class="ova-lnggmap" type="text" value="">
</div>
</div>
</div>
</div>
<!-- Display formfield in admin com_ovacomposer/models/forms/page.xml ::End -->
<!-- Config for page of ovacomposer :: Start -->
<div id="pageconfig" style="display:none;">
<div class="ova-nav-title">
<i class="icon-cogs-2"></i>
<?php echo JText::_('COM_OVACOMPOSER_PAGE_CONFIGS'); ?>
</div>
<div class="ova-nav-option ova-column">
<label><?php echo JText::_('COM_OVACOMPOSER_ID'); ?></label>
<div class="row-fluid">
<input type="text" id="page-id-config" value="<?php echo $this->configpage->id; ?>">
</div>
<label><label><?php echo JText::_('COM_OVACOMPOSER_CLASS'); ?></label></label>
<div class="row-fluid">
<input type="text" id="page-class-config" value="<?php echo $this->configpage->class; ?>">
</div>
<label><?php echo JText::_('COM_OVACOMPOSER_FULL_WIDTH'); ?></label>
<div class="row-fluid">
<div id="page-fullwidth" class="ova-radio">
<label class="radio inline">
<input type="radio" name="page-fullwidth" value="1" <?php echo ($this->configpage->fullwidth=='1')?'checked="checked"':"" ; ?>><?php echo JText::_('COM_OVACOMPOSER_FULL_YES'); ?>
</label>
<label class="radio inline">
<input type="radio" name="page-fullwidth" value="0" <?php echo ($this->configpage->fullwidth=='0')?'checked="checked"':"" ; ?>><?php echo JText::_('COM_OVACOMPOSER_FULL_NO'); ?>
</label>
</div>
</div>
<div class="ova-button-group">
<button id="pageconfig-submit" class="btn btn-primary"><?php echo JText::_('COM_OVACOMPOSER_FULL_SAVE'); ?></button>
</div>
</div>
</div>
<!-- Config for page of ovacomposer :: End-->
<input type="hidden" id="ovaid" value="<?php echo $this->id; ?>">
<div class="btn-group" id="toolbar-save"></div>