Project

General

Profile

1 17220 thanos.pap
<?php
2
3
defined('_JEXEC') or die('Access denied');
4
5 19084 thanos.pap
jimport('joomla.environment.uri');
6 17220 thanos.pap
jimport('joomla.methods');
7
8 18305 thanos.pap
$document = JFactory :: getDocument();
9 19084 thanos.pap
$document -> addStyleSheet(JRoute :: _(JURI :: base() . 'components/com_openaire/css/tabcontent.css'));
10
$document -> addScript(JRoute :: _(JURI :: base() . 'components/com_openaire/js/tabcontent.js'));
11 18305 thanos.pap
12 17220 thanos.pap
?>
13
14
<div class="searchBox">
15 27140 yannis.str
	<ul class="tabs">
16 30864 yannis.str
		<li><a href="<?php echo(JRoute :: _('index.php?option=com_openaire&view=search&Itemid=' . $this -> itemId . '&noscroll=true')); ?>"><?php echo(JText :: _('ALL')); ?></a></li>
17
		<li><a href="<?php echo(JRoute :: _('index.php?option=com_openaire&view=searchpublications&Itemid=' . $this -> itemId . '&noscroll=true')); ?>"><?php echo(JText :: _('PUBLICATIONS')); ?></a></li>
18
		<li><a href="<?php echo(JRoute :: _('index.php?option=com_openaire&view=searchdatasets&Itemid=' . $this -> itemId . '&noscroll=true')); ?>"><?php echo(JText :: _('DATA')); ?></a></li>
19
		<li><a href="<?php echo(JRoute :: _('index.php?option=com_openaire&view=searchprojects&Itemid=' . $this -> itemId . '&noscroll=true')); ?>"><?php echo(JText :: _('PROJECTS')); ?></a></li>
20 27140 yannis.str
		<li class="selected"><a rel="peopletab"><?php echo(JText :: _('PEOPLE')); ?></a></li>
21 30864 yannis.str
		<li><a href="<?php echo(JRoute :: _('index.php?option=com_openaire&view=searchorganizations&Itemid=' . $this -> itemId . '&noscroll=true')); ?>"><?php echo(JText :: _('ORGANIZATIONS')); ?></a></li>
22
		<li><a href="<?php echo(JRoute :: _('index.php?option=com_openaire&view=searchdatasources&Itemid=' . $this -> itemId . '&noscroll=true')); ?>"><?php echo(JText :: _('DATASOURCES')); ?></a></li>
23 18305 thanos.pap
	</ul>
24
	<div class="tabcontents">
25
		<div id="peopletab" class="tabcontent">
26 35497 argiro.kok
			<form action="<?php echo(JRoute :: _('index.php?option=com_openaire&view=searchpeople')); ?>" method="post">
27 31274 yannis.str
				<input type="hidden" name="Itemid" value="<?php echo($this -> itemId); ?>" />
28
				<input type="hidden" name="noscroll" value="true" />
29 18305 thanos.pap
				<div class="flowWrapper">
30
					<div class="srchNavText">
31 19042 thanos.pap
						<input name="keyword" type="text" class="textsearch" value="<?php echo(htmlspecialchars($this -> keyword)); ?>" placeholder="<?php echo(JText :: _('SEARCH_KEYWORDS')); ?>" /><input type="submit" value="<?php echo(JText :: _('SEARCH')); ?>" class="search-button" />
32 18305 thanos.pap
						<input type="hidden" name="page" value="1" />
33
						<input type="hidden" name="noscroll" value="true" />
34 19042 thanos.pap
35 18305 thanos.pap
					</div>
36
				</div>
37
				<div class="flowWrapper">
38
					<div class="advancedSearchOpt">
39 30864 yannis.str
						<a href="<?php echo(JRoute :: _('index.php?option=com_openaire&view=advancedsearchpeople&Itemid=' . $this -> itemId . '&noscroll=true')); ?>" class="advancedSearch"><?php echo(JText :: _('MORE_SEARCH_OPTIONS_')); ?></a>
40 18305 thanos.pap
					</div>
41
				</div>
42
			</form>
43 17220 thanos.pap
		</div>
44 18305 thanos.pap
	</div>
45 17220 thanos.pap
</div>