uawdijnntqw1x1x1
IP : 216.73.216.84
Hostname : webm003.cluster107.gra.hosting.ovh.net
Kernel : Linux webm003.cluster107.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
opticamezl
/
.
/
www
/
newok
/
tmp
/
..
/
images
/
..
/
helper.php.tar
/
/
home/opticamezl/www/newok/modules/mod_responsive_slider/helper.php000060400000030262151653554360021664 0ustar00<?php /** * @title Responsive Slider for Articles * @version 3.x * @copyright Copyright (C) 2011-2014 Minitek, All rights reserved. * @license GNU General Public License version 3 or later. * @author url http://www.minitek.gr/ * @author email info@minitek.gr * @developers Minitek.gr */ defined('_JEXEC') or die; jimport('joomla.filesystem.folder'); if(!defined('DS')) define('DS', DIRECTORY_SEPARATOR); if( !defined('PhpThumbFactoryLoaded') ) { require_once dirname(__FILE__).DS.'admin'.DS.'phpthumb/ThumbLib.inc.php'; define('PhpThumbFactoryLoaded',1); } $com_path = JPATH_SITE.'/components/com_content/'; require_once $com_path.'router.php'; require_once $com_path.'helpers/route.php'; JModelLegacy::addIncludePath($com_path . '/models', 'ContentModel'); /** * Helper for mod_articles_category * * @package Joomla.Site * @subpackage mod_articles_category */ abstract class ResponsiveSliderHelper { public static function getList(&$params) { // Get an instance of the generic articles model $articles = JModelLegacy::getInstance('Articles', 'ContentModel', array('ignore_request' => true)); // Set application parameters in model $app = JFactory::getApplication(); $appParams = $app->getParams(); $articles->setState('params', $appParams); // Set the filters based on the module params $articles->setState('list.start', 0); $articles->setState('list.limit', (int) $params->get('count', 0)); $articles->setState('filter.published', 1); // Access filter $access = !JComponentHelper::getParams('com_content')->get('show_noauth'); $authorised = JAccess::getAuthorisedViewLevels(JFactory::getUser()->get('id')); $articles->setState('filter.access', $access); // Prep for Normal or Dynamic Modes $mode = $params->get('mode', 'normal'); switch ($mode) { case 'dynamic': $option = $app->input->get('option'); $view = $app->input->get('view'); if ($option === 'com_content') { switch($view) { case 'category': $catids = array($app->input->getInt('id')); break; case 'categories': $catids = array($app->input->getInt('id')); break; case 'article': if ($params->get('show_on_article_page', 1)) { $article_id = $app->input->getInt('id'); $catid = $app->input->getInt('catid'); if (!$catid) { // Get an instance of the generic article model $article = JModelLegacy::getInstance('Article', 'ContentModel', array('ignore_request' => true)); $article->setState('params', $appParams); $article->setState('filter.published', 1); $article->setState('article.id', (int) $article_id); $item = $article->getItem(); $catids = array($item->catid); } else { $catids = array($catid); } } else { // Return right away if show_on_article_page option is off return; } break; case 'featured': default: // Return right away if not on the category or article views return; } } else { // Return right away if not on a com_content page return; } break; case 'normal': default: $catids = $params->get('catid'); $articles->setState('filter.category_id.include', (bool) $params->get('category_filtering_type', 1)); break; } // Category filter if ($catids) { if ($params->get('show_child_category_articles', 0) && (int) $params->get('levels', 0) > 0) { // Get an instance of the generic categories model $categories = JModelLegacy::getInstance('Categories', 'ContentModel', array('ignore_request' => true)); $categories->setState('params', $appParams); $levels = $params->get('levels', 1) ? $params->get('levels', 1) : 9999; $categories->setState('filter.get_children', $levels); $categories->setState('filter.published', 1); $categories->setState('filter.access', $access); $additional_catids = array(); foreach ($catids as $catid) { $categories->setState('filter.parentId', $catid); $recursive = true; $items = $categories->getItems($recursive); if ($items) { foreach ($items as $category) { $condition = (($category->level - $categories->getParent()->level) <= $levels); if ($condition) { $additional_catids[] = $category->id; } } } } $catids = array_unique(array_merge($catids, $additional_catids)); } $articles->setState('filter.category_id', $catids); } // Ordering $articles->setState('list.ordering', $params->get('article_ordering', 'a.ordering')); $articles->setState('list.direction', $params->get('article_ordering_direction', 'ASC')); // New Parameters $articles->setState('filter.featured', $params->get('show_front', 'show')); $articles->setState('filter.author_id', $params->get('created_by', "")); $articles->setState('filter.author_id.include', $params->get('author_filtering_type', 1)); $articles->setState('filter.author_alias', $params->get('created_by_alias', "")); $articles->setState('filter.author_alias.include', $params->get('author_alias_filtering_type', 1)); $excluded_articles = $params->get('excluded_articles', ''); if ($excluded_articles) { $excluded_articles = explode("\r\n", $excluded_articles); $articles->setState('filter.article_id', $excluded_articles); $articles->setState('filter.article_id.include', false); // Exclude } $date_filtering = $params->get('date_filtering', 'off'); if ($date_filtering !== 'off') { $articles->setState('filter.date_filtering', $date_filtering); $articles->setState('filter.date_field', $params->get('date_field', 'a.created')); $articles->setState('filter.start_date_range', $params->get('start_date_range', '1000-01-01 00:00:00')); $articles->setState('filter.end_date_range', $params->get('end_date_range', '9999-12-31 23:59:59')); $articles->setState('filter.relative_date', $params->get('relative_date', 30)); } // Filter by language $articles->setState('filter.language', $app->getLanguageFilter()); $items = $articles->getItems(); // Display options $show_date = $params->get('show_date', 0); $show_date_field = $params->get('show_date_field', 'created'); $show_date_format = $params->get('show_date_format', 'Y-m-d H:i:s'); $show_category = $params->get('show_category', 0); $show_hits = $params->get('show_hits', 0); $show_author = $params->get('show_author', 0); $show_introtext = $params->get('show_introtext', 0); $introtext_limit = $params->get('introtext_limit', 15); $title_limit = $params->get('title_limit', 15); $imageWidth = (int)$params->get( 'image_width', 864 ); $imageHeight = (int)$params->get( 'image_height', 354 ); $imageWidthth = (int)$params->get( 'thumb_width', 864 ); $imageHeightth = (int)$params->get( 'thumb_height', 354 ); // Find current Article ID if on an article page $option = $app->input->get('option'); $view = $app->input->get('view'); if ($option === 'com_content' && $view === 'article') { $active_article_id = $app->input->getInt('id'); } else { $active_article_id = 0; } // Prepare data for display using display options foreach ($items as &$item) { // General image $images = json_decode($item->images, true); if ($params->get('image_type')=='introtext') { $item->mainimage = $images['image_intro']; } else if ($params->get('image_type')=='fulltext') { $item->mainimage = $images['image_fulltext']; } else if ($params->get('image_type')=='inline') { preg_match('/<img.+src=[\'"](?P<src>.+)[\'"].*>/i', $item->introtext, $new_image); if (array_key_exists('src', $new_image)) { $item->mainimage = $new_image['src']; } else { $item->mainimage = $images['image_intro']; } } $item->slug = $item->id.':'.$item->alias; $item->catslug = $item->catid ? $item->catid .':'.$item->category_alias : $item->catid; if ($access || in_array($item->access, $authorised)) { // We know that user has the privilege to view the article $item->link = JRoute::_(ContentHelperRoute::getArticleRoute($item->slug, $item->catslug)); } else { $app = JFactory::getApplication(); $menu = $app->getMenu(); $menuitems = $menu->getItems('link', 'index.php?option=com_users&view=login'); if (isset($menuitems[0])) { $Itemid = $menuitems[0]->id; } elseif ($app->input->getInt('Itemid') > 0) { // Use Itemid from requesting page only if there is no existing menu $Itemid = $app->input->getInt('Itemid'); } $item->link = JRoute::_('index.php?option=com_users&view=login&Itemid='.$Itemid); } // Used for styling the active article $item->active = $item->id == $active_article_id ? 'active' : ''; $item->displayDate = ''; $item->displayDate = JHTML::_('date', $item->$show_date_field, $show_date_format); if ($item->catid) { $item->displayCategoryLink = JRoute::_(ContentHelperRoute::getCategoryRoute($item->catid)); $item->displayCategoryTitle = $show_category ? '<a href="'.$item->displayCategoryLink.'">'.$item->category_title.'</a>' : ''; } else { $item->displayCategoryTitle = $show_category ? $item->category_title : ''; } $item->displayHits = $show_hits ? $item->hits : ''; $item->displayAuthorName = $show_author ? $item->author : ''; $item->displayIntrotext = self::wordLimit($item->introtext, $introtext_limit); $item->title = self::wordLimit($item->title, $title_limit); // Crop images if ( $item->mainimage && $image = self::renderImages($item->mainimage, $imageWidth, $imageHeight, $item->title ) ) { $item->mainimage = $image; } if ( $item->mainimage && $image = self::renderImages($item->mainimage, $imageWidthth, $imageHeightth, $item->title ) ) { $item->mainimage_th = $image; } } return $items; } public static function _cleanIntrotext($introtext) { $introtext = str_replace('<p>', ' ', $introtext); $introtext = str_replace('</p>', ' ', $introtext); $introtext = strip_tags($introtext, '<a><em><strong>'); $introtext = trim($introtext); return $introtext; } public static function makeDir( $path ) { $folders = explode ( '/', ( $path ) ); $tmppath = JPATH_SITE.DS.'images'.DS.'reslidercon'.DS; if( !file_exists($tmppath) ) { JFolder::create( $tmppath, 0755 ); }; for( $i = 0; $i < count ( $folders ) - 1; $i ++) { if (! file_exists ( $tmppath . $folders [$i] ) && ! JFolder::create( $tmppath . $folders [$i], 0755) ) { return false; } $tmppath = $tmppath . $folders [$i] . DS; } return true; } public static function renderImages( $path, $width, $height, $title='' ) { $path = str_replace( JURI::base(), '', $path ); $imgSource = JPATH_SITE.DS. str_replace( '/', DS, $path ); if ( file_exists($imgSource) ) { $path = $width."x".$height.'/'.$path; $thumbPath = JPATH_SITE.DS.'images'.DS.'reslidercon'.DS. str_replace( '/', DS, $path ); if ( !file_exists($thumbPath) ) { $thumb = PhpThumbFactory::create( $imgSource ); if( !self::makeDir( $path ) ) { return ''; } $thumb->adaptiveResize( $width, $height); $thumb->save( $thumbPath ); } $path = JURI::base().'images/reslidercon/'.$path; } return $path; } public static function wordLimit($str, $limit = 100, $end_char = '…') { if (JString::trim($str) == '') return $str; // always strip tags for text $str = strip_tags($str); $find = array("/\r|\n/u", "/\t/u", "/\s\s+/u"); $replace = array(" ", " ", " "); $str = preg_replace($find, $replace, $str); preg_match('/\s*(?:\S*\s*){'.(int)$limit.'}/u', $str, $matches); if (JString::strlen($matches[0]) == JString::strlen($str)) $end_char = ''; return JString::rtrim($matches[0]).$end_char; } } home/opticamezl/www/newok/modules/mod_jdsimplecontactform/helper.php000060400000041456151653740630022200 0ustar00<?php /** * @package JD Simple Contact Form * @author JoomDev https://www.joomdev.com * @copyright Copyright (C) 2021 Joomdev, Inc. All rights reserved. * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ // no direct access defined('_JEXEC') or die; class ModJDSimpleContactFormHelper { public static function renderForm($params, $module) { $fields = $params->get('fields', []); foreach ($fields as $field) { $field->id = \JFilterOutput::stringURLSafe('jdscf-' . $module->id . '-' . $field->name); self::renderField($field, $module, $params); } } public static function renderField($field, $module, $params) { $label = new JLayoutFile('label', JPATH_SITE . '/modules/mod_jdsimplecontactform/layouts'); $field_layout = self::getFieldLayout($field->type); $input = new JLayoutFile('fields.' . $field_layout, JPATH_SITE . '/modules/mod_jdsimplecontactform/layouts'); $layout = new JLayoutFile('field', JPATH_SITE . '/modules/mod_jdsimplecontactform/layouts'); if ($field->type == 'checkbox' || $field->type == 'hidden') { $field->show_label = 0; } echo $layout->render(['field' => $field, 'label' => $label->render(['field' => $field]), 'input' => $input->render(['field' => $field, 'label' => self::getLabelText($field), 'module' => $module, 'params' => $params]), 'module' => $module]); } public static function getOptions($options) { $options = explode("\n", $options); $array = []; foreach ($options as $option) { if (!empty($option)) { $array[] = ['text' => $option, 'value' => trim( $option )]; } } return $array; } public static function getLabelText($field) { $label = $field->label; if (empty($label)) { $label = ucfirst($field->name); } else { $label = JText::_($label); } return $label; } public static function getFieldLayout($type) { $return = ''; if (file_exists(JPATH_SITE . '/modules/mod_jdsimplecontactform/layouts/fields/' . $type . '-custom.php')) { // For adding custom files $return = $type . '-custom'; } else if (file_exists(JPATH_SITE . '/modules/mod_jdsimplecontactform/layouts/fields/' . $type . '.php')) { $return = $type; } else { $return = 'text'; } return $return; } public static function submitForm($ajax = false) { if (!JSession::checkToken()) { throw new \Exception(JText::_("JINVALID_TOKEN")); } if ($_SERVER['REQUEST_METHOD'] !== 'POST') { throw new \Exception(JText::_('MOD_JDSCF_BAD_REQUEST'), 400); } $app = JFactory::getApplication(); $jinput = $app->input->post; $jdscf = $jinput->get('jdscf', [], 'ARRAY'); $id = $jinput->get('id', [], 'INT'); $params = self::getModuleParams(); if ($params->get('captcha', 0)) { $captchaType = $params->get('captchaPlugins') == "" ? JFactory::getConfig()->get('captcha') : $params->get('captchaPlugins'); JPluginHelper::importPlugin('captcha', $captchaType); $dispatcher = JEventDispatcher::getInstance(); if ( $captchaType == "recaptcha" ) { $check_captcha = $dispatcher->trigger('onCheckAnswer', $jinput->get('recaptcha_response_field')); if (!$check_captcha[0]) { throw new \Exception(JText::_('Invalid Captcha'), 0); } } elseif ( $captchaType == "recaptcha_invisible" ) { $check_captcha = $dispatcher->trigger('onCheckAnswer', $jinput->get('g-recaptcha-response')); } elseif (!empty($captchaType)) { $check_captcha = $dispatcher->trigger('onCheckAnswer'); } } $labels = []; foreach ($params->get('fields', []) as $field) { $labels[$field->name] = ['label' => self::getLabelText($field), 'type' => $field->type]; } $cc_emails = []; $values = []; foreach ($jdscf as $name => $value) { if(is_array($value)) { // Type email values if(isset($value['email'])) { $values[$name] = $value['email']; //single cc if(isset($value['single_cc']) && $value['single_cc'] == 1) { $cc_emails[] = $value['email']; } } // Type text values ( isset($value['text'] ) ? $values[$name] = $value['text'] : ''); // Type number values ( isset($value['number'] ) ? $values[$name] = $value['number'] : ''); // Type url values ( isset($value['url'] ) ? $values[$name] = $value['url'] : ''); // Type Hidden Value ( isset($value['hidden'] ) ? $values[$name] = $value['hidden'] : ''); } else { $values[$name] = $value; } } $contents = []; $attachments = []; $errors = []; // Get all error messages and add them to $errors variable $messages = $app->getMessageQueue(); if (!empty($messages)) { for ($i=0; $i < count($messages); $i++) { $errors[] = $messages[$i]["message"]; } } foreach ($labels as $name => $fld) { $value = isset($values[$name]) ? $values[$name] : ''; if ($fld['type'] == 'checkboxes') { if ( isset ($_POST['jdscf'][$name]['cbs'] ) ) { $value = $_POST['jdscf'][$name]['cbs']; } if (is_array($value)) { $value = implode(', ', $value); } else { $value = $value; } } if ($fld['type'] == 'checkbox') { if (isset($_POST['jdscf'][$name]['cb'])){ $value = $_POST['jdscf'][$name]['cb']; } if (is_array($value)) { $value = implode(',', $value); } else { $value = $value; } $value = empty($value) ? 'unchecked' : 'checked'; } if ($fld['type'] == 'file') { if(isset($_FILES['jdscf']['name'][$name])) { $value = $_FILES['jdscf']['name'][$name]; $uploaded = self::uploadFile($_FILES['jdscf']['name'][$name], $_FILES['jdscf']['tmp_name'][$name]); //filetype error if(!empty($value)) { if(!$uploaded) { $errors[] = JText::_('MOD_JDSCF_UNSUPPORTED_FILE_ERROR'); } } if(!empty($uploaded)) { $attachments[] = $uploaded; } } } if ($fld['type'] == 'textarea') { if ($value) { $value = nl2br($value); } } $contents[] = [ "value" => $value, "label" => $fld['label'], "name" => $name, ]; } // Fetches IP Address of Client if ( $params->get('ip_info' ) ) { if (!empty($_SERVER['HTTP_CLIENT_IP'])) { $ipAddress = $_SERVER['HTTP_CLIENT_IP']; } elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) { $ipAddress = $_SERVER['HTTP_X_FORWARDED_FOR']; } else { $ipAddress = $_SERVER['REMOTE_ADDR']; } $contents[] = array( "value" => "<a href='http://whois.domaintools.com/$ipAddress'>$ipAddress</a>", "label" => "IP Address", "name" => "ip" ); } if ($params->get('email_template', '') == 'custom') { $html = $params->get('email_custom', ''); if ( empty( $html ) ) { $layout = new JLayoutFile('emails.default', JPATH_SITE . '/modules/mod_jdsimplecontactform/layouts'); $html = $layout->render(['contents' => $contents]); } else { $html = self::renderVariables($contents, $html); } } else { $layout = new JLayoutFile('emails.default', JPATH_SITE . '/modules/mod_jdsimplecontactform/layouts'); $html = $layout->render(['contents' => $contents]); } // sending mail $mailer = JFactory::getMailer(); $config = JFactory::getConfig(); $title = $params->get('title', ''); if (!empty($title)) { $title = ' : ' . $title; } // Sender if (!empty($params->get('email_from', ''))) { $email_from = $params->get('email_from', ''); $email_from = self::renderVariables($contents, $email_from); if (!filter_var($email_from, FILTER_VALIDATE_EMAIL)) { $email_from = $config->get('mailfrom'); } } else { $email_from = $config->get('mailfrom'); } if (!empty($params->get('email_name', ''))) { $email_name = $params->get('email_name', ''); $email_name = self::renderVariables($contents, $email_name); if (empty($email_name)) { $email_name = $config->get('fromname'); } } else { $email_name = $config->get('fromname'); } $sender = array($email_from, $email_name); $mailer->setSender($sender); // Subject $email_subject = !empty($params->get('email_subject', '')) ? $params->get('email_subject') : JText::_('MOD_JDSCF_DEFAULT_SUBJECT', $title); $email_subject = self::renderVariables($contents, $email_subject); $mailer->setSubject($email_subject); // Recipient $recipients = !empty($params->get('email_to', '')) ? $params->get('email_to') : $config->get('mailfrom'); $recipients = explode(',', $recipients); if (!empty($recipients)) { $mailer->addRecipient($recipients); } // Reply-To if (!empty($params->get('reply_to', ''))) { $reply_to = $params->get('reply_to', ''); $reply_to = self::renderVariables($contents, $reply_to); if (!filter_var($reply_to, FILTER_VALIDATE_EMAIL)) { $reply_to = ''; } $mailer->addReplyTo($reply_to); } else { $reply_to = ''; } // CC $cc = !empty($params->get('email_cc', '')) ? $params->get('email_cc') : ''; $cc = empty($cc) ? [] : explode(",", $cc); if(!empty($cc_emails)){ $cc = array_merge($cc, $cc_emails); $cc = array_unique($cc); } if (!empty($cc)) { $mailer->addCc($cc); } // BCC $bcc = !empty($params->get('email_bcc', '')) ? $params->get('email_bcc') : ''; $bcc = empty($bcc) ? [] : explode(',', $bcc); if (!empty($bcc)) { $mailer->addBcc($bcc); } $mailer->isHtml(true); $mailer->Encoding = 'base64'; $mailer->setBody($html); foreach($attachments as $attachment){ $mailer->addAttachment($attachment); } if(!empty($errors)) { $app = JFactory::getApplication(); $send = false; // showing all the validation errors foreach ($errors as $error) { $app->enqueueMessage(\JText::_($error), 'error'); } } else { $send = $mailer->Send(); } if ($send !== true) { switch($params->get('ajaxsubmit')) { case 0: throw new \Exception(JText::_('MOD_JDSCFEMAIL_SEND_ERROR')); break; case 1: throw new \Exception(json_encode($errors)); break; } } $message = $params->get('thankyou_message', ''); if (empty($message)) { $message = JText::_('MOD_JDSCF_THANKYOU_DEFAULT'); } else { $template = $params->get('email_custom', ''); $message = self::renderVariables($contents, $message); } $redirect_url = $params->get('redirect_url', ''); $redirect_url = self::renderVariables($contents, $redirect_url); if (!$ajax) { $return = !empty($redirect_url) ? $redirect_url : urldecode($jinput->get('returnurl', '', 'RAW')); $session = JFactory::getSession(); if (empty($redirect_url)) { $session->set('jdscf-message-' . $id, $message); } else { $session->set('jdscf-message-' . $id, ''); } $app->redirect($return); } return ['message' => $message, 'redirect' => $redirect_url, 'errors' => json_encode($errors)]; } public static function renderVariables($variables, $source) { foreach ($variables as $content) { $value = is_array($content['value']) ? implode(', ', $content['value']) : $content['value']; $value = empty($value) ? '' : $value; $label = empty($content['label']) ? '' : $content['label']; $source = str_replace('{' . $content['name'] . ':label}', $label, $source); $source = str_replace('{' . $content['name'] . ':value}', $value, $source); } return $source; } public static function getModuleParams() { $app = JFactory::getApplication(); $jinput = $app->input->post; $id = $jinput->get('id', 0); $params = new JRegistry(); $db = JFactory::getDbo(); $query = "SELECT * FROM `#__modules` WHERE `id`='$id'"; $db->setQuery($query); $result = $db->loadObject(); if (!empty($result)) { $params->loadString($result->params, 'JSON'); } else { throw new \Exception(JText::_('MOD_JDSCF_MODULE_NOT_FOUND'), 404); } return $params; } public static function submitAjax() { try { self::submitForm(); } catch (\Exception $e) { $app = JFactory::getApplication(); $params = self::getModuleParams(); $jinput = $app->input->post; $app->enqueueMessage($e->getMessage(), 'error'); $redirect_url = $params->get('redirect_url', ''); $return = !empty($redirect_url) ? $redirect_url : urldecode($jinput->get('returnurl', '', 'RAW')); $app->redirect($return); } } public static function submitFormAjax() { header('Content-Type: application/json'); header('Access-Control-Allow-Origin: *'); $return = array(); try { $data = self::submitForm(true); $return['status'] = "success"; $return['code'] = 200; $return['data'] = $data; } catch (\Exception $e) { $return['status'] = "error"; $return['code'] = $e->getCode(); $return['message'] = $e->getMessage(); $return['line'] = $e->getLine(); $return['file'] = $e->getFile(); } echo \json_encode($return); exit; } public static function addJS($js, $moduleid) { if (!isset($GLOBALS['mod_jdscf_js_' . $moduleid])) { $GLOBALS['mod_jdscf_js_' . $moduleid] = []; } $GLOBALS['mod_jdscf_js_' . $moduleid][] = $js; } public static function getJS($moduleid) { if (!isset($GLOBALS['mod_jdscf_js_' . $moduleid])) { return []; } return $GLOBALS['mod_jdscf_js_' . $moduleid]; } //for single email field (at bottom) public static function isSingleCCMail($params) { $singlesendcopy_email = $params->get('single_sendcopy_email', 0); $singlesendcopyemail_field = $params->get('singleSendCopyEmail_field', ''); if($singlesendcopy_email && !empty($singlesendcopyemail_field)){ return true; } else { return false; } } public static function uploadFile($name, $src) { jimport('joomla.filesystem.file'); jimport('joomla.application.component.helper'); $fullFileName = JFile::stripExt($name); $filetype = JFile::getExt($name); $filename = JFile::makeSafe($fullFileName."_".mt_rand(10000000,99999999).".".$filetype); $params = JComponentHelper::getParams('com_media'); $allowable = array_map('trim', explode(',', $params->get('upload_extensions'))); if ($filetype == '' || $filetype == false || (!in_array($filetype, $allowable) )) { return false; } else { $tmppath = JPATH_SITE . '/tmp'; if (!file_exists($tmppath.'/jdscf')) { mkdir($tmppath.'/jdscf',0777); } $folder = md5(time().'-'.$filename.rand(0,99999)); if (!file_exists($tmppath.'/jdscf/'.$folder)) { mkdir($tmppath.'/jdscf/'.$folder,0777); } $dest = $tmppath.'/jdscf/'.$folder.'/'.$filename; $return = null; if (JFile::upload($src, $dest)) { $return = $dest; } return $return; } } }
/home/opticamezl/./www/newok/tmp/../images/../helper.php.tar