telegram : @iamdarkcomedy i am hacker

path :/home/bisorgosof24/public_html/Backup23122024

upload file:

List of files:

name file size edit permission action
.env2733 KBDecember 22 2024 06:20:070644
404.html58370 KBNovember 20 2024 15:32:220644
502.html58368 KBNovember 20 2024 15:32:220644
Modules-December 11 2024 21:02:560755
README.md4158 KBFebruary 14 2023 12:31:560644
app-December 11 2024 17:57:480755
artisan1686 KBFebruary 14 2023 12:31:560644
bootstrap-December 11 2024 20:23:360755
composer.json3761 KBDecember 11 2024 22:15:000644
composer.lock512048 KBDecember 11 2024 22:13:280644
config-June 15 2025 02:09:360755
database-December 05 2024 20:18:120755
dfsdf dfds fd fds findex.html1420 KBNovember 20 2024 15:32:240644
error_log18795455 KBJuly 18 2025 20:00:240644
firoz-December 23 2024 13:24:460755
index.php1667 KBDecember 14 2024 05:20:360644
lang-December 11 2024 21:02:480755
modules_statuses.json472 KBNovember 20 2024 15:32:240644
mpos-March 31 2025 02:36:310755
package.json226 KBFebruary 14 2023 12:31:560644
phpunit.xml1146 KBFebruary 14 2023 12:31:560644
public-March 31 2025 02:36:310755
resources-December 11 2024 21:10:220755
routes-June 15 2025 02:09:310755
storage-December 11 2024 21:12:440755
tests-December 05 2024 20:18:120755
vendor-December 11 2024 22:13:300755
vite.config.js263 KBFebruary 14 2023 12:31:560644

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 227

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 228

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 229

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 230
menu = $menu; $this->config = $config; } /** * Get menu name. * * @return string */ public function getName() { return $this->menu; } /** * Find menu item by given its title. * * @param string $title * @param callable|null $callback * @return mixed */ public function whereTitle($title, callable $callback = null) { $item = $this->findBy('title', $title); if (is_callable($callback)) { return call_user_func($callback, $item); } return $item; } /** * Find menu item by given key and value. * * @param string $key * @param string $value * @return \Nwidart\Menus\MenuItem */ public function findBy($key, $value) { return collect($this->items)->filter(function ($item) use ($key, $value) { return $item->{$key} == $value; })->first(); } /** * Set view factory instance. * * @param ViewFactory $views * * @return $this */ public function setViewFactory(ViewFactory $views) { $this->views = $views; return $this; } /** * Set view. * * @param string $view * * @return $this */ public function setView($view) { $this->view = $view; return $this; } /** * Set Prefix URL. * * @param string $prefixUrl * * @return $this */ public function setPrefixUrl($prefixUrl) { $this->prefixUrl = $prefixUrl; return $this; } /** * Set styles. * * @param array $styles */ public function setStyles(array $styles) { $this->styles = $styles; } /** * Set new presenter class. * * @param string $presenter */ public function setPresenter($presenter) { $this->presenter = $presenter; } /** * Get presenter instance. * * @return \Nwidart\Menus\Presenters\PresenterInterface */ public function getPresenter() { return new $this->presenter(); } /** * Set new presenter class by given style name. * * @param string $name * * @return self */ public function style($name) { if ($this->hasStyle($name)) { $this->setPresenter($this->getStyle($name)); } return $this; } /** * Determine if the given name in the presenter style. * * @param $name * * @return bool */ public function hasStyle($name) { return array_key_exists($name, $this->getStyles()); } /** * Get style aliases. * * @return mixed */ public function getStyles() { return $this->styles ?: $this->config->get('menus.styles'); } /** * Get the presenter class name by given alias name. * * @param $name * * @return mixed */ public function getStyle($name) { $style = $this->getStyles(); return $style[$name]; } /** * Set new presenter class from given alias name. * * @param $name */ public function setPresenterFromStyle($name) { $this->setPresenter($this->getStyle($name)); } /** * Set the resolved item bindings * * @param array $bindings * @return $this */ public function setBindings(array $bindings) { $this->bindings = $bindings; return $this; } /** * Resolves a key from the bindings array. * * @param string|array $key * @return mixed */ public function resolve($key) { if (is_array($key)) { foreach ($key as $k => $v) { $key[$k] = $this->resolve($v); } } elseif (is_string($key)) { $matches = array(); preg_match_all('/{[\s]*?([^\s]+)[\s]*?}/i', $key, $matches, PREG_SET_ORDER); foreach ($matches as $match) { if (array_key_exists($match[1], $this->bindings)) { $key = preg_replace('/' . $match[0] . '/', $this->bindings[$match[1]], $key, 1); } } } return $key; } /** * Resolves an array of menu items properties. * * @param array &$items * @return void */ protected function resolveItems(array &$items) { $resolver = function ($property) { return $this->resolve($property) ?: $property; }; $totalItems = count($items); for ($i = 0; $i < $totalItems; $i++) { $items[$i]->fill(array_map($resolver, $items[$i]->getProperties())); } } /** * Add new child menu. * * @param array $attributes * * @return \Nwidart\Menus\MenuItem */ public function add(array $attributes = array()) { $item = MenuItem::make($attributes); $this->items[] = $item; return $item; } /** * Create new menu with dropdown. * * @param $title * @param callable $callback * @param array $attributes * * @return $this */ public function dropdown($title, \Closure $callback, $order = null, array $attributes = array()) { $properties = compact('title', 'order', 'attributes'); if (func_num_args() == 3) { $arguments = func_get_args(); $title = Arr::get($arguments, 0); $attributes = Arr::get($arguments, 2); $properties = compact('title', 'attributes'); } $item = MenuItem::make($properties); call_user_func($callback, $item); $this->items[] = $item; return $item; } /** * Register new menu item using registered route. * * @param $route * @param $title * @param array $parameters * @param array $attributes * * @return static */ public function route($route, $title, $parameters = array(), $order = null, $attributes = array()) { if (func_num_args() == 4) { $arguments = func_get_args(); return $this->add([ 'route' => [Arr::get($arguments, 0), Arr::get($arguments, 2)], 'title' => Arr::get($arguments, 1), 'attributes' => Arr::get($arguments, 3), ]); } $route = array($route, $parameters); $item = MenuItem::make( compact('route', 'title', 'parameters', 'attributes', 'order') ); $this->items[] = $item; return $item; } /** * Format URL. * * @param string $url * * @return string */ protected function formatUrl($url) { $uri = !is_null($this->prefixUrl) ? $this->prefixUrl . $url : $url; return $uri == '/' ? '/' : ltrim(rtrim($uri, '/'), '/'); } /** * Register new menu item using url. * * @param $url * @param $title * @param array $attributes * * @return static */ public function url($url, $title, $order = 0, $attributes = array()) { if (func_num_args() == 3) { $arguments = func_get_args(); return $this->add([ 'url' => $this->formatUrl(Arr::get($arguments, 0)), 'title' => Arr::get($arguments, 1), 'attributes' => Arr::get($arguments, 2), ]); } $url = $this->formatUrl($url); $item = MenuItem::make(compact('url', 'title', 'order', 'attributes')); $this->items[] = $item; return $item; } /** * Add new divider item. * * @param int $order * @return \Nwidart\Menus\MenuItem */ public function addDivider($order = null) { $this->items[] = new MenuItem(array('name' => 'divider', 'order' => $order)); return $this; } /** * Add new header item. * * @return \Nwidart\Menus\MenuItem */ public function addHeader($title, $order = null) { $this->items[] = new MenuItem(array( 'name' => 'header', 'title' => $title, 'order' => $order, )); return $this; } /** * Alias for "addHeader" method. * * @param string $title * * @return $this */ public function header($title) { return $this->addHeader($title); } /** * Alias for "addDivider" method. * * @return $this */ public function divider() { return $this->addDivider(); } /** * Get items count. * * @return int */ public function count() { return count($this->items); } /** * Empty the current menu items. */ public function destroy() { $this->items = array(); return $this; } /** * Render the menu to HTML tag. * * @param string $presenter * * @return string */ public function render($presenter = null) { $this->resolveItems($this->items); if (!is_null($this->view)) { return $this->renderView($presenter); } if ($this->hasStyle($presenter)) { $this->setPresenterFromStyle($presenter); } if (!is_null($presenter) && !$this->hasStyle($presenter)) { $this->setPresenter($presenter); } return $this->renderMenu(); } /** * Render menu via view presenter. * * @return \Illuminate\View\View */ public function renderView($presenter = null) { return $this->views->make($presenter ?: $this->view, [ 'items' => $this->getOrderedItems(), ]); } /** * Get original items. * * @return array */ public function getItems() { return $this->items; } /** * Get menu items as laravel collection instance. * * @return \Illuminate\Support\Collection */ public function toCollection() { return collect($this->items); } /** * Get menu items as array. * * @return array */ public function toArray() { return $this->toCollection()->toArray(); } /** * Enable menu ordering. * * @return self */ public function enableOrdering() { $this->ordering = true; return $this; } /** * Disable menu ordering. * * @return self */ public function disableOrdering() { $this->ordering = false; return $this; } /** * Get menu items and order it by 'order' key. * * @return array */ public function getOrderedItems() { if (config('menus.ordering') || $this->ordering) { return $this->toCollection()->sortBy(function ($item) { return $item->order; })->all(); } return $this->items; } /** * Render the menu. * * @return string */ protected function renderMenu() { $presenter = $this->getPresenter(); $menu = $presenter->getOpenTagWrapper(); foreach ($this->getOrderedItems() as $item) { if ($item->hidden()) { continue; } if ($item->hasSubMenu()) { $menu .= $presenter->getMenuWithDropDownWrapper($item); } elseif ($item->isHeader()) { $menu .= $presenter->getHeaderWrapper($item); } elseif ($item->isDivider()) { $menu .= $presenter->getDividerWrapper(); } else { $menu .= $presenter->getMenuWithoutDropdownWrapper($item); } } $menu .= $presenter->getCloseTagWrapper(); return $menu; } }