https://github.com/ferrisx4/moduletheme_finder
Finds modules and themes with a drush command
https://github.com/ferrisx4/moduletheme_finder
drupal-10 drupal-11 drupal-module
Last synced: 10 months ago
JSON representation
Finds modules and themes with a drush command
- Host: GitHub
- URL: https://github.com/ferrisx4/moduletheme_finder
- Owner: Ferrisx4
- License: gpl-3.0
- Created: 2025-07-31T15:19:15.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-07-31T15:29:01.000Z (11 months ago)
- Last Synced: 2025-07-31T19:01:30.988Z (11 months ago)
- Topics: drupal-10, drupal-11, drupal-module
- Language: PHP
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Drupal Module Theme Finder
This module simply adds two drush commands to help you locate, on disk, your modules and themes.
Sometimes they are in unexpected places!
---
## Usage
### Install/Uninstall
This module is very light and is easy to add/remove.
```shell
# Install
drush pm-enable moduletheme_finder
# Uninstall
drush pm-uninstall moduletheme_finder
```
### Find a module.
Simply run the following drush command to find a module:
```shell
drush where:module
```
Example:
```shell
# Find this module:
drush where:module moduletheme_finder
# Example result:
modules/custom/moduletheme_finder
```
---
### Find a theme.
Simply run the following drush command to find a theme:
```shell
drush where:theme
```
Example:
```shell
# Find one of Drupal's default themes:
drush where:theme claro
# Example result:
core/themes/claro
```