An open API service indexing awesome lists of open source software.

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

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
```