Server IP : 180.180.241.3 / Your IP : 216.73.216.252 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /AppServ/www/news/components/com_jevents/views/geraint/helpers/ |
Upload File : |
<?php defined('_JEXEC') or die('Restricted access'); JLoader::register('DefaultViewNavTableBarIconic',JEV_VIEWS."/default/helpers/defaultviewnavtablebariconic.php"); class GeraintViewNavTableBarIconic extends DefaultViewNavTableBarIconic { var $view = null; function __construct($view, $today_date, $view_date, $dates, $alts, $option, $task, $Itemid ){ //parent::DefaultViewNavTableBarIconic($view, $today_date, $view_date, $dates, $alts, $option, $task, $Itemid); $this->view = $view ; $this->transparentGif = JURI::root() . "components/".JEV_COM_COMPONENT."/views/".$this->view->getViewName()."/assets/images/transp.gif"; $this->Itemid = JEVHelper::getItemid(); $this->cat = $this->view->datamodel->getCatidsOutLink(); $this->task = $task; if (JRequest::getInt( 'pop', 0 )) return; ?> <div class="ev_navigation"> <table > <tr align="center" valign="top"> <?php echo $this->_lastYearIcon($dates, $alts); echo $this->_lastMonthIcon($dates, $alts); echo $this->_viewYearIcon($today_date); echo $this->_viewMonthIcon($today_date); echo $this->_viewWeekIcon($today_date); echo $this->_viewSearchIcon($today_date); echo $this->_viewJumptoIcon($today_date); echo $this->_nextMonthIcon($dates, $alts); echo $this->_nextYearIcon($dates, $alts); ?> </tr> <tr class="icon_labels" align="center" valign="top"> <td colspan="2"></td> <td><?php echo JText::_('JEV_VIEWBYYEAR');?></td> <td><?php echo JText::_('JEV_VIEWBYMONTH');?></td> <td><?php echo JText::_('JEV_VIEWBYWEEK');?></td> <td><?php echo JText::_('_JEV_SEARCH_TITLE');?></td> <td><?php echo JText::_('JEV_JUMPTO');?></td> <td colspan="2"></td> </tr> <?php echo $this->_viewHiddenJumpto($view_date); ?> </table> </div> <?php } }