https://github.com/phpmyadmin/themes
Third party phpMyAdmin themes
https://github.com/phpmyadmin/themes
php phpmyadmin theme
Last synced: 2 months ago
JSON representation
Third party phpMyAdmin themes
- Host: GitHub
- URL: https://github.com/phpmyadmin/themes
- Owner: phpmyadmin
- Created: 2012-02-05T09:49:43.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2024-09-10T09:49:51.000Z (9 months ago)
- Last Synced: 2025-04-02T04:04:00.530Z (3 months ago)
- Topics: php, phpmyadmin, theme
- Language: PHP
- Homepage: https://www.phpmyadmin.net/themes/
- Size: 92.7 MB
- Stars: 208
- Watchers: 28
- Forks: 155
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# phpMyAdmin themes
Various contributed themes.
## Download
Themes can be downloaded at .
## How to contribute
### Get started
- Go to the [phpmyadmin/themes](https://github.com/phpmyadmin/themes) repository
- "Fork" the repository (see: [GitHub tutorial on how to fork a repository](https://docs.github.com/en/get-started/quickstart/fork-a-repo#forking-a-repository))
- "Clone" your forked repository locally (see: [GitHub tutorial on how to clone a repository](https://docs.github.com/en/get-started/quickstart/fork-a-repo#cloning-your-forked-repository))### Updating/Creating themes
If you already have the theme in your local phpMyAdmin folder, then delete the theme folder here and replace it with your local version (folder).
For example:
```sh
rm -r /home/username/phpmyadmin/themes/mytheme
cp -r /var/www/phpMyAdmin/themes/mytheme /home/username/phpmyadmin/themes/
```#### Update the version
Update "version" in `/home/username/phpmyadmin/themes/mytheme/theme.json` with the new version (of your theme).
#### Create a branch and commit the changes
Learn more about what is a commit: [here](https://github.com/git-guides/git-commit)
For example:
```sh
# Go to the repository folder (your fork)
cd /home/username/phpmyadmin/themes/
# Create a new branch for your changes
git checkout -b mytheme-version-x.y.z
# Add your changes to git
git add ./mytheme
# Commit them
git commit -m "[mytheme] version x.y.z"
```#### Push the changes and open a pull-request
Make the push:
```sh
git push
```And then open a new pull-request: https://github.com/phpmyadmin/themes/pulls
## Releasing
There is a script `create-release.sh` which creates a zip file with the theme and optionally
tags the git repository and uploads it to the phpMyAdmin website.