/usr/share/phpmyadmin/libraries/classes
NameSizeModeActions
Charsets/-0755rm
Command/-0755rm
Config/-0755rm
Controllers/-0755rm
Database/-0755rm
Dbal/-0755rm
Display/-0755rm
Engines/-0755rm
Exceptions/-0755rm
Export/-0755rm
Gis/-0755rm
Html/-0755rm
Import/-0755rm
Navigation/-0755rm
Plugins/-0755rm
Properties/-0755rm
Providers/-0755rm
Query/-0755rm
Server/-0755rm
Setup/-0755rm
Table/-0755rm
Twig/-0755rm
Utils/-0755rm
Advisor.php125170644editdlrm
Bookmark.php109440644editdlrm
BrowseForeigners.php110830644editdlrm
Charsets.php72670644editdlrm
CheckUserPrivileges.php122300644editdlrm
Config.php464560644editdlrm
Console.php34600644editdlrm
Core.php433440644editdlrm
CreateAddField.php179930644editdlrm
DatabaseInterface.php768020644editdlrm
DbTableExists.php32870644editdlrm
Encoding.php87150644editdlrm
Error.php143040644editdlrm
ErrorHandler.php175570644editdlrm
ErrorReport.php93640644editdlrm
Export.php473510644editdlrm
File.php217860644editdlrm
FileListing.php29230644editdlrm
Font.php57180644editdlrm
Footer.php107940644editdlrm
Git.php183810644editdlrm
Header.php219670644editdlrm
Import.php588400644editdlrm
Index.php154280644editdlrm
IndexColumn.php43310644editdlrm
InsertEdit.php1333090644editdlrm
InternalRelations.php177300644editdlrm
IpAllowDeny.php99970644editdlrm
Language.php45680644editdlrm
LanguageManager.php245320644editdlrm
Linter.php53740644editdlrm
ListAbstract.php18140644editdlrm
ListDatabase.php44020644editdlrm
Logging.php27810644editdlrm
Menu.php218120644editdlrm
Message.php195470644editdlrm
Mime.php9160644editdlrm
Normalization.php424750644editdlrm
OpenDocument.php86170644editdlrm
Operations.php387480644editdlrm
OutputBuffering.php40740644editdlrm
ParseAnalyze.php24290644editdlrm
Partition.php73400644editdlrm
Pdf.php44490644editdlrm
Plugins.php257830644editdlrm
Profiling.php23170644editdlrm
RecentFavoriteTable.php122970644editdlrm
Relation.php792470644editdlrm
RelationCleanup.php150510644editdlrm
Replication.php48430644editdlrm
ReplicationGui.php220380644editdlrm
ReplicationInfo.php49430644editdlrm
Response.php168640644editdlrm
Routing.php58450644editdlrm
Sanitize.php124180644editdlrm
SavedSearches.php122210644editdlrm
Scripts.php37260644editdlrm
Session.php81980644editdlrm
Sql.php682720644editdlrm
SqlQueryForm.php72860644editdlrm
StorageEngine.php128280644editdlrm
SubPartition.php33980644editdlrm
SystemDatabase.php37480644editdlrm
Table.php979610644editdlrm
TablePartitionDefinition.php66640644editdlrm
Template.php39620644editdlrm
Theme.php89690644editdlrm
ThemeManager.php98150644editdlrm
Tracker.php304970644editdlrm
Tracking.php381410644editdlrm
Transformations.php166850644editdlrm
TwoFactor.php69680644editdlrm
Types.php258050644editdlrm
Url.php89730644editdlrm
UserPassword.php72840644editdlrm
UserPreferences.php86570644editdlrm
Util.php1047680644editdlrm
Version.php5330644editdlrm
VersionInformation.php73190644editdlrm
ZipExtension.php110170644editdlrm
Edit: /usr/share/phpmyadmin/libraries/classes/Theme.php (8969B)
template = new Template(); } /** * Loads theme information * * @return bool whether loading them info was successful or not * * @access public */ public function loadInfo() { $infofile = $this->getFsPath() . 'theme.json'; if (! @file_exists($infofile)) { return false; } if ($this->mtimeInfo === filemtime($infofile)) { return true; } $content = @file_get_contents($infofile); if ($content === false) { return false; } $data = json_decode($content, true); // Did we get expected data? if (! is_array($data)) { return false; } // Check that all required data are there $members = [ 'name', 'version', 'supports', ]; foreach ($members as $member) { if (! isset($data[$member])) { return false; } } // Version check if (! is_array($data['supports'])) { return false; } if (! in_array(PMA_MAJOR_VERSION, $data['supports'])) { return false; } $this->mtimeInfo = filemtime($infofile); $this->filesizeInfo = filesize($infofile); $this->setVersion($data['version']); $this->setName($data['name']); return true; } /** * returns theme object loaded from given folder * or false if theme is invalid * * @param string $folder path to theme * @param string $fsPath file-system path to theme * * @return Theme|false * * @static * @access public */ public static function load(string $folder, string $fsPath) { $theme = new Theme(); $theme->setPath($folder); $theme->setFsPath($fsPath); if (! $theme->loadInfo()) { return false; } $theme->checkImgPath(); return $theme; } /** * checks image path for existence - if not found use img from fallback theme * * @return bool * * @access public */ public function checkImgPath() { // try current theme first if (is_dir($this->getFsPath() . 'img/')) { $this->setImgPath($this->getPath() . '/img/'); return true; } // try fallback theme $fallback = ThemeManager::getThemesDir() . ThemeManager::FALLBACK_THEME . '/img/'; if (is_dir(ThemeManager::getThemesFsDir() . ThemeManager::FALLBACK_THEME . '/img/')) { $this->setImgPath($fallback); return true; } // we failed trigger_error( sprintf( __('No valid image path for theme %s found!'), $this->getName() ), E_USER_ERROR ); return false; } /** * returns path to theme * * @return string path to theme * * @access public */ public function getPath() { return $this->path; } /** * returns file system path to the theme * * @return string file system path to theme */ public function getFsPath(): string { return $this->fsPath; } /** * set path to theme * * @param string $path path to theme * * @return void * * @access public */ public function setPath($path) { $this->path = trim($path); } /** * set file system path to the theme * * @param string $path path to theme */ public function setFsPath(string $path): void { $this->fsPath = trim($path); } /** * sets version * * @param string $version version to set * * @return void * * @access public */ public function setVersion($version) { $this->version = trim($version); } /** * returns version * * @return string version * * @access public */ public function getVersion() { return $this->version; } /** * checks theme version against $version * returns true if theme version is equal or higher to $version * * @param string $version version to compare to * * @return bool true if theme version is equal or higher to $version * * @access public */ public function checkVersion($version) { return version_compare($this->getVersion(), $version, 'lt'); } /** * sets name * * @param string $name name to set * * @return void * * @access public */ public function setName($name) { $this->name = trim($name); } /** * returns name * * @return string name * * @access public */ public function getName() { return $this->name; } /** * sets id * * @param string $id new id * * @return void * * @access public */ public function setId($id) { $this->id = trim($id); } /** * returns id * * @return string id * * @access public */ public function getId() { return $this->id; } /** * Sets path to images for the theme * * @param string $path path to images for this theme * * @return void * * @access public */ public function setImgPath($path) { $this->imgPath = $path; } /** * Returns the path to image for the theme. * If filename is given, it possibly fallbacks to fallback * theme for it if image does not exist. * * @param string $file file name for image * @param string $fallback fallback image * * @return string image path for this theme * * @access public */ public function getImgPath($file = null, $fallback = null) { if ($file === null) { return $this->imgPath; } if (is_readable($this->imgPath . $file)) { return $this->imgPath . $file; } if ($fallback !== null) { return $this->getImgPath($fallback); } return './themes/' . ThemeManager::FALLBACK_THEME . '/img/' . $file; } /** * Renders the preview for this theme * * @return string * * @access public */ public function getPrintPreview() { $url_params = ['set_theme' => $this->getId()]; $screen = null; if (@file_exists($this->getFsPath() . 'screen.png')) { $screen = $this->getPath() . '/screen.png'; } return $this->template->render('theme_preview', [ 'url_params' => $url_params, 'name' => $this->getName(), 'version' => $this->getVersion(), 'id' => $this->getId(), 'screen' => $screen, ]); } }