| Server IP : 87.98.154.146 / Your IP : 216.73.216.101 Web Server : Apache System : Linux webm005.cluster126.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : bsiadvisil ( 110003) PHP Version : 7.3.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/bsiadvisil/old/administrator/components/com_spsimpleportfolio/helpers/ |
Upload File : |
<?php
/**
* @package SP Simple Portfolio
*
* @copyright Copyright (C) 2010 - 2018 JoomShaper. All rights reserved.
* @license GNU General Public License version 2 or later.
*/
defined('_JEXEC') or die;
class SpsimpleportfolioHelper {
public static $extension = 'com_spsimpleportfolio';
public static function addSubmenu($submenu) {
JHtmlSidebar::addEntry(
JText::_('COM_SPSIMPLEPORTFOLIO_TITLE_ITEMS'),
'index.php?option=com_spsimpleportfolio',
$submenu == 'items'
);
JHtmlSidebar::addEntry(
JText::_('COM_SPSIMPLEPORTFOLIO_CATEGORIES'),
'index.php?option=com_categories&view=categories&extension=com_spsimpleportfolio',
$submenu == 'categories'
);
JHtmlSidebar::addEntry(
JText::_('COM_SPSIMPLEPORTFOLIO_TITLE_TAGS'),
'index.php?option=com_spsimpleportfolio&view=tags',
$submenu == 'tags'
);
}
public static function getActions($messageId = 0) {
$result = new JObject;
if (empty($messageId)) {
$assetName = 'com_spsimpleportfolio';
} else {
$assetName = 'com_spsimpleportfolio.item.'.(int) $messageId;
}
$actions = JAccess::getActions('com_spsimpleportfolio', 'component');
foreach ($actions as $action) {
$result->set($action->name, JFactory::getUser()->authorise($action->name, $assetName));
}
return $result;
}
// Create thumbs
public static function createThumbs($src, $sizes = array(), $folder, $base_name, $ext) {
list($originalWidth, $originalHeight) = getimagesize($src);
switch($ext) {
case 'bmp': $img = imagecreatefromwbmp($src); break;
case 'gif': $img = imagecreatefromgif($src); break;
case 'jpg': $img = imagecreatefromjpeg($src); break;
case 'jpeg': $img = imagecreatefromjpeg($src); break;
case 'png': $img = imagecreatefrompng($src); break;
}
if(count($sizes)) {
$output = array();
if($base_name) {
$output['original'] = $folder . '/' . $base_name . '.' . $ext;
}
foreach ($sizes as $key => $size) {
$targetWidth = $size[0];
$targetHeight = $size[1];
$ratio_thumb = $targetWidth/$targetHeight;
$ratio_original = $originalWidth/$originalHeight;
if ($ratio_original >= $ratio_thumb) {
$height = $originalHeight;
$width = ceil(($height*$targetWidth)/$targetHeight);
$x = ceil(($originalWidth-$width)/2);
$y = 0;
} else {
$width = $originalWidth;
$height = ceil(($width*$targetHeight)/$targetWidth);
$y = ceil(($originalHeight-$height)/2);
$x = 0;
}
$new = imagecreatetruecolor($targetWidth, $targetHeight);
if($ext == "gif" or $ext == "png") {
imagecolortransparent($new, imagecolorallocatealpha($new, 0, 0, 0, 127));
imagealphablending($new, false);
imagesavealpha($new, true);
}
imagecopyresampled($new, $img, 0, 0, $x, $y, $targetWidth, $targetHeight, $width, $height);
if($base_name) {
$dest = dirname($src) . '/' . $base_name . '_' . $key . '.' . $ext;
$output[$key] = $folder . '/' . $base_name . '_' . $key . '.' . $ext;
} else {
$dest = $folder . '/' . $key . '.' . $ext;
}
switch($ext) {
case 'bmp': imagewbmp($new, $dest); break;
case 'gif': imagegif($new, $dest); break;
case 'jpg': imagejpeg($new, $dest); break;
case 'jpeg': imagejpeg($new, $dest); break;
case 'png': imagepng($new, $dest); break;
}
}
return $output;
}
return false;
}
}