Skip to content

phpmyadmin/themes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

4d44bbd · Sep 10, 2024
Sep 10, 2024
Jan 1, 2023
Oct 25, 2022
Oct 17, 2023
Feb 17, 2022
Jan 1, 2023
Jul 23, 2020
Sep 10, 2024
Jul 5, 2024
Nov 15, 2020
Jan 1, 2023
Jun 5, 2019
Jan 12, 2023
May 11, 2022
Aug 23, 2022
Apr 19, 2018
Jan 1, 2023

Repository files navigation

phpMyAdmin themes

Various contributed themes.

Download

Themes can be downloaded at https://www.phpmyadmin.net/themes/.

How to contribute

Get started

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:

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

For example:

# 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:

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.