File manager - Edit - /home/jardides/www/Jardi-design/ZZZ/tmp/install_571ccebe3c29c/libraries/phocadownload/utils/utils.php
Back
<?php /* @package Joomla * @copyright Copyright (C) Open Source Matters. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php * @extension Phoca Extension * @copyright Copyright (C) Jan Pavelka www.phoca.cz * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL */ defined( '_JEXEC' ) or die( 'Restricted access' ); class PhocaDownloadUtils { public static function footer() { echo '<div>Powe'.'red b'.'y <a href="ht'.'tp://www.pho'.'ca.c'.'z/pho' .'cado'.'wn'.'load" tar'.'get="_bl'.'ank" title="Pho'.'ca Down' .'load">Pho' .'ca Downl'.'oad</a></div>'; } public static function getExtensionVersion($c = 'phocadownload') { $folder = JPATH_ADMINISTRATOR .DS. 'components'.DS.'com_'.$c; if (JFolder::exists($folder)) { $xmlFilesInDir = JFolder::files($folder, '.xml$'); } else { $folder = JPATH_SITE .DS. 'components'.DS.'com_'.$c; if (JFolder::exists($folder)) { $xmlFilesInDir = JFolder::files($folder, '.xml$'); } else { $xmlFilesInDir = null; } } $xml_items = ''; if (count($xmlFilesInDir)) { foreach ($xmlFilesInDir as $xmlfile) { if ($data = JApplicationHelper::parseXMLInstallFile($folder.DS.$xmlfile)) { foreach($data as $key => $value) { $xml_items[$key] = $value; } } } } if (isset($xml_items['version']) && $xml_items['version'] != '' ) { return $xml_items['version']; } else { return ''; } } public static function setVars( $task = '') { $a = array(); $app = JFactory::getApplication(); $a['o'] = htmlspecialchars(strip_tags($app->input->get('option'))); $a['c'] = str_replace('com_', '', $a['o']); $a['n'] = 'Phoca' . ucfirst(str_replace('com_phoca', '', $a['o'])); $a['l'] = strtoupper($a['o']); $a['i'] = 'media/'.$a['o'].'/images/administrator/'; $a['s'] = 'media/'.$a['o'].'/css/administrator/'.$a['c'].'.css'; $a['task'] = $a['c'] . htmlspecialchars(strip_tags($task)); $a['tasks'] = $a['task']. 's'; return $a; } public static function getAliasName($alias) { $alias = JApplication::stringURLSafe($alias); if (trim(str_replace('-', '', $alias)) == '') { $alias = JFactory::getDate()->format("Y-m-d-H-i-s"); } return $alias; } public static function strTrimAll($input) { $output = ''; $input = trim($input); for($i=0;$i<strlen($input);$i++) { if(substr($input, $i, 1) != " ") { $output .= trim(substr($input, $i, 1)); } else { $output .= " "; } } return $output; } public static function toArray($value = FALSE) { if ($value == FALSE) { return array(0 => 0); } else if (empty($value)) { return array(0 => 0); } else if (is_array($value)) { return $value; } else { return array(0 => $value); } } public static function isURLAddress($url) { return preg_match('|^http(s)?://[a-z0-9-]+(.[a-z0-9-]+)*(:[0-9]+)?(/.*)?$|i', $url); } public static function setQuestionmarkOrAmp($url) { $isThereQMR = false; $isThereQMR = preg_match("/\?/i", $url); if ($isThereQMR) { return '&'; } else { return '?'; } } public static function getToken($title = '') { $salt = md5($title . 'string '. date('s'). mt_rand(0,9999) . str_replace(mt_rand(0,9), mt_rand(0,9999), date('r')). 'end string'); $token = hash('sha256', $salt . time()); return $token; } public static function cleanFolderUrlName($string) { $string = str_replace('@', '-', $string); $string = str_replace('?', '-', $string); $string = str_replace('&', '-', $string); $string = str_replace('%', '-', $string); return $string; } } ?>
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings