Your IP : 216.73.217.53


Current Path : /home/bonneesp/www/administrator/components/com_tabulizer/views/datasources/tmpl/
Upload File :
Current File : /home/bonneesp/www/administrator/components/com_tabulizer/views/datasources/tmpl/preview.php

<?php
/**
 * @version		6.5.0 tabulizer $
 * @package		tabulizer
 * @copyright	Copyright © 2011 - All rights reserved.
 * @license		GNU/GPL
 * @author		Dimitrios Mourloukos
 * @author mail	info@alterora.gr
 * @website		www.tabulizer.com
 * 
 */


// no direct access
defined('_JEXEC') or die('Restricted access');

$jinput = JFactory::getApplication()->input;
$option = $jinput->getCmd('option');

$title = JText::_('COM_TABULIZER_DATA_SOURCE' ) . ' <em>'.$this->data_source->tag.'</em>';

$return_url = $this->return_urls['data_sources'];

JHTML::_('behavior.tooltip');
JToolBarHelper::title($title);
JToolBarHelper::back(JText::_('COM_TABULIZER_BACK_TO_DATA_SOURCES'), $return_url);
JToolBarHelper::help( 'all_topics', true );

$table_html = TabulizerDataSource::getTableHTML($this->data_source->tag);

TabulizerPath::requireLib('tags_processor','common');
$processor = new TabulizerTagsProcessor();

$processor->init('system');
$processor->processTags($table_html);

echo "<h3>{$title}</h3>\n<hr>\n";
echo $table_html;

?>