%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/old/administrator/components/com_phocamaps/helpers/ |
Upload File : |
<?php /* * @package Joomla 3.8 * @copyright Copyright (C) 2005 Open Source Matters. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php * * @component Phoca Component * @copyright Copyright (C) Jan Pavelka www.phoca.cz * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL */ defined('_JEXEC') or die(); class PhocaMapsRenderAdmin { public static function quickIconButton( $link, $image, $text, $imgUrl ) { return '<div class="thumbnails ph-icon">' .'<a class="thumbnail ph-icon-inside" href="'.$link.'">' .JHTML::_('image', $imgUrl . $image, $text ) .'<br /><span>'.$text.'</span></a></div>'. "\n"; } public static function getLinks() { $app = JFactory::getApplication(); $option = $app->input->get('option'); $oT = strtoupper($option); $links = array(); switch ($option) { case 'com_phocamaps': $links[] = array('Phoca Maps site', 'https://www.phoca.cz/phocamaps'); $links[] = array('Phoca Maps documentation site', 'https://www.phoca.cz/documentation/category/53-phoca-maps-component'); $links[] = array('Phoca Maps download site', 'https://www.phoca.cz/download/category/81-phoca-maps'); break; } $links[] = array('Phoca News', 'https://www.phoca.cz/news'); $links[] = array('Phoca Forum', 'https://www.phoca.cz/forum'); $components = array(); $components[] = array('Phoca Gallery','phocagallery', 'pg'); $components[] = array('Phoca Guestbook','phocaguestbook', 'pgb'); $components[] = array('Phoca Download','phocadownload', 'pd'); $components[] = array('Phoca Documentation','phocadocumentation', 'pdc'); $components[] = array('Phoca Favicon','phocafavicon', 'pfv'); $components[] = array('Phoca SEF','phocasef', 'psef'); $components[] = array('Phoca PDF','phocapdf', 'ppdf'); $components[] = array('Phoca Restaurant Menu','phocamenu', 'prm'); $components[] = array('Phoca Maps','phocamaps', 'pm'); $components[] = array('Phoca Font','phocafont', 'pf'); $components[] = array('Phoca Email','phocaemail', 'pe'); $components[] = array('Phoca Install','phocainstall', 'pi'); $components[] = array('Phoca Template','phocatemplate', 'pt'); $components[] = array('Phoca Panorama','phocapanorama', 'pp'); $components[] = array('Phoca Commander','phocacommander', 'pcm'); $components[] = array('Phoca Photo','phocaphoto', 'pcm'); $banners = array(); $banners[] = array('Phoca Restaurant Menu','phocamenu', 'prm'); $banners[] = array('Phoca Cart','phocacart', 'pc'); $o = ''; $o .= '<p> </p>'; $o .= '<h4 style="margin-bottom:5px;">'.JText::_($oT.'_USEFUL_LINKS'). '</h4>'; $o .= '<ul>'; foreach ($links as $k => $v) { $o .= '<li><a style="text-decoration:underline" href="'.$v[1].'" target="_blank">'.$v[0].'</a></li>'; } $o .= '</ul>'; $o .= '<div>'; $o .= '<p> </p>'; $o .= '<h4 style="margin-bottom:5px;">'.JText::_($oT.'_USEFUL_TIPS'). '</h4>'; $m = mt_rand(0, 10); if ((int)$m > 3) { $o .= '<div>'; $num = range(0,(count($components) - 1 )); shuffle($num); for ($i = 0; $i<3; $i++) { $numO = $num[$i]; $o .= '<div style="float:left;width:33%;margin:0 auto;">'; $o .= '<div><a style="text-decoration:underline;" href="https://www.phoca.cz/'.$components[$numO][1].'" target="_blank">'.JHTML::_('image', 'media/'.$option.'/images/administrator/icon-box-'.$components[$numO][2].'.png', ''). '</a></div>'; $o .= '<div style="margin-top:-10px;"><small><a style="text-decoration:underline;" href="https://www.phoca.cz/'.$components[$numO][1].'" target="_blank">'.$components[$numO][0].'</a></small></div>'; $o .= '</div>'; } $o .= '<div style="clear:both"></div>'; $o .= '</div>'; } else { $num = range(0,(count($banners) - 1 )); shuffle($num); $numO = $num[0]; $o .= '<div><a href="https://www.phoca.cz/'.$banners[$numO][1].'" target="_blank">'.JHTML::_('image', 'media/'.$option.'/images/administrator/b-'.$banners[$numO][2].'.png', ''). '</a></div>'; } $o .= '<p> </p>'; $o .= '<h4 style="margin-bottom:5px;">'.JText::_($oT.'_PLEASE_READ'). '</h4>'; $o .= '<div><a style="text-decoration:underline" href="https://www.phoca.cz/phoca-needs-your-help/" target="_blank">'.JText::_($oT.'_PHOCA_NEEDS_YOUR_HELP'). '</a></div>'; $o .= '</div>'; return $o; } }