Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Drupal 7: how to get the modules list

Tags:

How to get the modules list in Drupal as in admin/build/modules?

like image 266
sultan Avatar asked Nov 20 '10 09:11

sultan


People also ask

How many modules are there in Drupal?

Installing and running Drupal is completely free. This includes the 40,000+ modules available to extend site functionality and the 2500+ themes used for modifying site appearance.

Where are Drupal modules stored?

Core Folder Directories /core/includes - Base-level functionality that Drupal uses through other /core folders. /core/lib - Drupal core classes. /core/misc - Frontend code that Drupal core depends on. /core/modules - Drupal's core modules.

What are the modules in Drupal?

There are three different types of Drupal modules – core, contributed, and custom.


1 Answers

You can use drush pm-list --type=Module --status=enabled command for getting a list of installed modules.

For further options, please check out http://www.drupaltonight.com/drupal-articles/using-drush-get-list-enabled-modules

like image 109
Gokul N K Avatar answered Sep 28 '22 06:09

Gokul N K