Project

General

Profile

1
<?php
2

    
3
defined('_JEXEC') or die('Access denied');
4

    
5
jimport('joomla.environment.uri');
6
jimport('joomla.html.html');
7

    
8
JHtml :: _('behavior.framework',true);
9
$document = JFactory :: getDocument();
10
$document -> addScript(JRoute :: _(JUri :: base() . 'components/com_openaire/js/tooltip.js'));
11
$document -> addScript(JRoute :: _(JUri :: base() . 'components/com_openaire/js/browse.js'));
12
$document -> addStyleSheet(JRoute :: _(JUri :: base() . 'components/com_openaire/css/tooltip/tooltip1.css'));
13
$document -> addStyleSheet(JRoute :: _(JUri :: base() . 'templates/' . JFactory :: getApplication() -> getTemplate() . '/styles/openaire/css/tooltip.css'));
14
JViewLegacy :: loadHelper('FilterHelper');
15
JViewLegacy :: loadHelper('StatisticHelper');
16
$document->setTitle(" OpenAIRE - Browse Datasets");
17

    
18
?>
19
<div id="main-column">
20
	<div id="left-column">
21
		<div id="left-column">
22
			<div class="refineBox">
23
				<?php $baseUrl = 'index.php?option=com_openaire&view=browsedatasets&Itemid=' . $this -> itemId . (($this -> project == NULL) ? '' : ('&project=' . $this -> project)) . (($this -> author == NULL) ? '' : ('&author=' . $this -> author));
24
				echo(FilterHelper :: formatFilters($this -> filters, $this -> result -> statistics, $baseUrl, ''));
25
				echo(StatisticHelper :: formatStatistics($this -> result -> statistics, $this -> filters, $baseUrl, '')); ?>
26
			</div>
27
		</div>
28
	</div>
29
	<div id="right-column">
30
		<?php echo($this -> loadTemplate('datasets')); ?>
31
	</div>
32
</div>
33

    
(1-1/3)