![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/app/bundles/CoreBundle/Helper/ |
<?php namespace Mautic\CoreBundle\Helper; use Mautic\CoreBundle\Exception\BadConfigurationException; use Mautic\CoreBundle\Exception\FileExistsException; use Mautic\CoreBundle\Exception\FileNotFoundException; use Mautic\CoreBundle\Twig\Helper\ThemeHelper as twigThemeHelper; interface ThemeHelperInterface { /** * Get theme names which are stock Mautic. * * @return string[] */ public function getDefaultThemes(); /** * @param string $defaultTheme */ public function setDefaultTheme($defaultTheme): void; /** * @param string $themeName * * @return twigThemeHelper * * @throws BadConfigurationException * @throws FileNotFoundException */ public function createThemeHelper($themeName); /** * @param string $theme * * @return bool */ public function exists($theme); /** * @param string $theme original theme dir name * @param string $newName * @param string|null $newDirName if not set then it will be generated from the $newName param * * @throws FileExistsException * @throws FileNotFoundException */ public function copy($theme, $newName, $newDirName = null): void; /** * @param string $theme * @param string $newName * * @throws FileNotFoundException * @throws FileExistsException */ public function rename($theme, $newName): void; /** * @param string $theme * * @throws FileNotFoundException */ public function delete($theme): void; /** * Fetches the optional settings from the defined steps. * * @return mixed[] */ public function getOptionalSettings(); /** * @param string $template * * @return string The logical name for the template */ public function checkForTwigTemplate($template); /** * @param string $specificFeature * @param bool $extended returns extended information about the themes * @param bool $ignoreCache true to get the fresh info * @param bool $includeDirs true to get the theme dir details * * @return array<string[]>|string[] */ public function getInstalledThemes($specificFeature = 'all', $extended = false, $ignoreCache = false, $includeDirs = true); /** * @param string $theme * @param bool $throwException * * @return twigThemeHelper * * @throws FileNotFoundException * @throws BadConfigurationException */ public function getTheme($theme = 'current', $throwException = false); /** * Install a theme from a zip package. * * @param string $zipFile path * * @return bool * * @throws FileNotFoundException * @throws \Exception */ public function install($zipFile); /** * Get the error message from the zip archive. * * @param \ZipArchive::ER_* $archive * * @return string */ public function getExtractError(int $archive); /** * Creates a zip file from a theme and returns the path where it's stored. * * @param string $themeName * * @return string * * @throws \Exception */ public function zip($themeName); public function getCurrentTheme(string $template, string $specificFeature): string; public function toggleVisibility(string $themeName): void; }