droptica / d_application_api
Application helper classes and methods.
Installs: 5 587
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 2
Type:drupal-module
This package is not auto-updated.
Last update: 2025-03-06 06:16:06 UTC
README
Installation:
composer require droptica/d_application_api
Services:
Revert (Import) a feature programmatically - Drupal 8
\Drupal::service('d_application_api.features')->import($modules);
Example usage:
<?php /** * Update 8002 */ function mymodule_update_8002() { \Drupal::service('d_application_api.features')->import(['feature_module_1', 'feature_module_2']); }