Skip to content
This repository has been archived by the owner on Sep 12, 2019. It is now read-only.

Latest commit

 

History

History
24 lines (21 loc) · 577 Bytes

generate-routesubscriber.md

File metadata and controls

24 lines (21 loc) · 577 Bytes

generate:routesubscriber

RouteSubscriber उत्पन्न करे.

Usage:

drupal generate:routesubscriber [options]
gr

Available options

Option Details
--module मोड्यूल का नाम।
--name सेवा का नाम
--class कक्षा का नाम

Examples

  • Generate a route subscriber specifying the module name, the route name and its class
drupal generate:routesubscriber  \
  --module="modulename"  \
  --name="modulename.route_subscriber"  \
  --class="RouteSubscriber"