-
EBT Blocks đź§±
-
EPT Paragraphs 🆕
-
Resources & Support
- Drupal Book
- Blog
- Case Studies
- Drupal Documentation
- JSON Drop API Documentation
- Forum
- What's New
- Download Drupal
- Contact
Extra Block Types (EBT) - New Layout Builder experienceâť—
Extra Block Types (EBT) - styled, customizable block types: Slideshows, Tabs, Cards, Accordions and many others. Built-in settings for background, DOM Box, javascript plugins. Experience the future of layout building today.
âť—Extra Paragraph Types (EPT) - New Paragraphs experience
Extra Paragraph Types (EPT) - analogical paragraph based set of modules.
GLightbox is a pure javascript lightbox (Colorbox alternative without jQuery)âť—
It can display images, iframes, inline content and videos with optional autoplay for YouTube, Vimeo and even self-hosted videos.
Installing modules from the command line
Menu
- Understanding Drupal
- Drupal System Requirements
- Installing Drupal 8
- Drupal 8 Update
- Drupal Site Administration
-
Drupal 8 Modules
- General information
- Search Drupal modules
- Installing Drupal 8 modules
- Installing module dependencies via Composer
- Installing modules from the command line
- Installing Drupal Themes
- Updating Drupal modules
- Drupal module configuration
- Documentation and Help Module
- Removing Drupal modules
- Installing Sandbox modules
- Fixing Drupal Module Errors
- Drupal Modules Comparison
- Drupal Themes
- Drupal field types
- Configuration Management
- Multisite Drupal
- Accessibility Features
- Troubleshooting in Drupal
- Creating modules for Drupal
- Drupal 8 API
- Theming in Drupal
- Upgrade to Drupal 11
In addition to installing modules via the user interface, you can also download and install modules from the command line:
- The recommended method for downloading modules (and themes) is via Composer. However, you can still use Drush 8 or Drupal Console to download modules, but they won’t update your composer.json file.
- Both Drush and Drupal Console can install modules and themes for you. (In Drupal 8, installing and enabling a module are the same step.)
Downloading and installing modules from the command line is the fastest way to extend your Drupal setup.
Drush
In Drush 8, you can download a module using the command:
drush dl module_name
To enable the module with Drush, run:
drush en module_name
Clear the cache using:
drush cr
Open your browser and refresh the page. You’ll see the module’s functionality added to the site.
Drupal Console
To enable a module using Drupal Console, run:
drupal moi module_name
To download a module using Drupal Console, use:
drupal mod module_name