| Current Path : /home/annegardxb/www/so-assurances/administrator/components/com_sitemap/views/sitemap/tmpl/ |
| Current File : /home/annegardxb/www/so-assurances/administrator/components/com_sitemap/views/sitemap/tmpl/edit.php |
<?php
/**
* Qlue Sitemap
*
* @author Jon Boutell
* @package QMap
* @license GNU/GPL
* @version 1.0
*
* This component gathers information from various Joomla Components and
* compiles them into a sitemap, supporting both an HTML view and an XML
* format for search engines.
*
*/
defined('_JEXEC') or die('Restricted Access');
require_once JPATH_ROOT . '/components/com_content/helpers/route.php';
JHtml::_('behavior.tooltip');
?>
<form action="<?php echo JRoute::_('index.php'); ?>" class="form-validate" name="adminForm" method="post" id="adminForm">
<div class="form-horizontal">
<div class="row-fluid">
<div class="span6">
<div class="form-vertical">
<div class="control-group">
<?php echo $this->form->getLabel('id'); ?>
<?php echo $this->form->getInput('id'); ?>
</div>
<div class="control-group">
<?php echo $this->form->getLabel('title'); ?>
<?php echo $this->form->getInput('title'); ?>
</div>
<div class="control-group">
<?php echo $this->form->getLabel('alias'); ?>
<?php echo $this->form->getInput('alias'); ?>
</div>
<div class="control-group">
<?php echo $this->form->getLabel('published'); ?>
<?php echo $this->form->getInput('published'); ?>
</div>
</div>
</div>
<div class="span6">
<fieldset class="adminform">
<legend><?php echo JText::_(COM_SITEMAP_TITLE_LINKS); ?></legend>
<?php if (!empty($this->item->event->onNewSitemap)): ?>
<?php foreach ($this->item->event->onNewSitemap as $item): ?>
<?php foreach ($item as $key => $value): ?>
<?php echo $value->link; ?>
<br />
<?php endforeach; ?>
<br />
<?php endforeach; ?>
<?php else: ?>
<p><?php echo JText::_(COM_SITEMAP_DESC_LINKS); ?></p>
<?php endif; ?>
</fieldset>
</div>
</div>
</div>
<input type="hidden" name="option" value="com_sitemap" />
<input type="hidden" name="view" value="sitemap" />
<input type="hidden" name="task" value="" />
<input type="hidden" name="id" value="<?php echo (int)$this->item->id; ?>" />
<?php echo JHtml::_('form.token'); ?>
</form>