├── .github ├── dependabot.yml └── workflows │ └── tests.yml ├── .phpstorm.meta.php ├── LICENSE.txt ├── README.md ├── bin └── dcg ├── composer.json ├── psalm-autoloader.php ├── psalm.xml ├── resources └── service-meta.json ├── src ├── Application.php ├── Asset │ ├── Asset.php │ ├── AssetCollection.php │ ├── Assets.php │ ├── Directory.php │ ├── File.php │ ├── RenderableInterface.php │ ├── Resolver │ │ ├── AppendResolver.php │ │ ├── PrependResolver.php │ │ ├── PreserveResolver.php │ │ ├── ReplaceResolver.php │ │ ├── ResolverDefinition.php │ │ ├── ResolverFactoryInterface.php │ │ └── ResolverInterface.php │ └── Symlink.php ├── Attribute │ └── Generator.php ├── BootstrapHandler.php ├── Command │ ├── BaseGenerator.php │ ├── Composer.php │ ├── Controller.php │ ├── Drush │ │ └── SymfonyCommand.php │ ├── Entity │ │ ├── ConfigurationEntity.php │ │ ├── ContentEntity.php │ │ └── EntityBundleClass.php │ ├── Field.php │ ├── Form │ │ ├── Config.php │ │ ├── Confirm.php │ │ └── Simple.php │ ├── Hook.php │ ├── InstallFile.php │ ├── JavaScript.php │ ├── LabelInterface.php │ ├── Layout.php │ ├── Module.php │ ├── Navigation.php │ ├── PhpStormMeta │ │ ├── ConfigEntityIds.php │ │ ├── Configuration.php │ │ ├── Database.php │ │ ├── DateFormats.php │ │ ├── EntityBundles.php │ │ ├── EntityLinks.php │ │ ├── EntityTypes.php │ │ ├── Extensions.php │ │ ├── FieldDefinitions.php │ │ ├── Fields.php │ │ ├── FileSystem.php │ │ ├── Hooks.php │ │ ├── Miscellaneous.php │ │ ├── Permissions.php │ │ ├── PhpStormMeta.php │ │ ├── Plugins.php │ │ ├── Roles.php │ │ ├── Routes.php │ │ ├── Services.php │ │ ├── Settings.php │ │ └── States.php │ ├── Plugin │ │ ├── Action.php │ │ ├── Block.php │ │ ├── Condition.php │ │ ├── Constraint.php │ │ ├── EntityReferenceSelection.php │ │ ├── Field │ │ │ ├── Formatter.php │ │ │ ├── Type.php │ │ │ └── Widget.php │ │ ├── Filter.php │ │ ├── MenuLink.php │ │ ├── Migrate │ │ │ ├── Destination.php │ │ │ ├── Process.php │ │ │ └── Source.php │ │ ├── QueueWorker.php │ │ ├── RestResource.php │ │ └── Views │ │ │ ├── ArgumentDefault.php │ │ │ ├── Field.php │ │ │ └── Style.php │ ├── PluginManager.php │ ├── Readme.php │ ├── RenderElement.php │ ├── Service │ │ ├── AccessChecker.php │ │ ├── BreadcrumbBuilder.php │ │ ├── CacheContext.php │ │ ├── Custom.php │ │ ├── EventSubscriber.php │ │ ├── Logger.php │ │ ├── Middleware.php │ │ ├── ParamConverter.php │ │ ├── PathProcessor.php │ │ ├── RequestPolicy.php │ │ ├── ResponsePolicy.php │ │ ├── RouteSubscriber.php │ │ ├── ThemeNegotiator.php │ │ ├── TwigExtension.php │ │ └── UninstallValidator.php │ ├── ServiceProvider.php │ ├── SingleDirectoryComponent.php │ ├── Template.php │ ├── Test │ │ ├── Browser.php │ │ ├── Kernel.php │ │ ├── Nightwatch.php │ │ ├── Unit.php │ │ └── WebDriver.php │ ├── Theme.php │ ├── ThemeSettings.php │ └── Yml │ │ ├── Breakpoints.php │ │ ├── Links │ │ ├── Action.php │ │ ├── Contextual.php │ │ ├── Menu.php │ │ └── Task.php │ │ ├── Migration.php │ │ ├── ModuleLibraries.php │ │ ├── Permissions.php │ │ ├── Routing.php │ │ ├── Services.php │ │ └── ThemeLibraries.php ├── Event │ ├── AssetPostProcess.php │ ├── AssetPreProcess.php │ ├── GeneratorInfo.php │ └── GeneratorInfoAlter.php ├── Exception │ ├── ExceptionInterface.php │ ├── RuntimeException.php │ ├── SilentException.php │ └── UnexpectedValueException.php ├── GeneratorFactory.php ├── GeneratorType.php ├── Helper │ ├── Drupal │ │ ├── ConfigInfo.php │ │ ├── ExtensionInfoInterface.php │ │ ├── HookInfo.php │ │ ├── ModuleInfo.php │ │ ├── NullExtensionInfo.php │ │ ├── PermissionInfo.php │ │ ├── RouteInfo.php │ │ ├── ServiceInfo.php │ │ └── ThemeInfo.php │ ├── Dumper │ │ ├── BaseDumper.php │ │ ├── DryDumper.php │ │ ├── DumperInterface.php │ │ └── FileSystemDumper.php │ ├── Printer │ │ ├── ListPrinter.php │ │ ├── PrinterInterface.php │ │ └── TablePrinter.php │ ├── QuestionHelper.php │ └── Renderer │ │ ├── RendererInterface.php │ │ └── TwigRenderer.php ├── InputOutput │ ├── DefaultOptions.php │ ├── IO.php │ ├── IOAwareInterface.php │ ├── IOAwareTrait.php │ └── Interviewer.php ├── Logger │ └── ConsoleLogger.php ├── Test │ ├── Functional │ │ ├── FunctionalTestBase.php │ │ ├── GeneratorTestBase.php │ │ └── QuestionHelper.php │ └── GeneratorTest.php ├── Twig │ ├── TwigEnvironment.php │ ├── TwigSortSetNode.php │ └── TwigSortTokenParser.php ├── Utils.php └── Validator │ ├── Chained.php │ ├── Choice.php │ ├── ClassName.php │ ├── ExtensionExists.php │ ├── MachineName.php │ ├── Optional.php │ ├── PermissionId.php │ ├── RegExp.php │ ├── Required.php │ ├── RequiredClassName.php │ ├── RequiredMachineName.php │ ├── RequiredServiceName.php │ ├── ServiceExists.php │ └── ServiceName.php └── templates ├── Drush └── _symfony-command │ ├── command.twig │ └── services.twig ├── Entity ├── _configuration-entity │ ├── config │ │ └── schema │ │ │ └── model.schema.yml.twig │ ├── model.links.action.yml.twig │ ├── model.links.menu.yml.twig │ ├── model.permissions.yml.twig │ ├── model.routing.yml.twig │ └── src │ │ ├── Entity │ │ └── Example.php.twig │ │ ├── ExampleInterface.php.twig │ │ ├── ExampleListBuilder.php.twig │ │ └── Form │ │ └── ExampleForm.php.twig ├── _content-entity │ ├── config │ │ ├── install │ │ │ ├── system.action.example_delete_action.yml.twig │ │ │ └── system.action.example_save_action.yml.twig │ │ ├── optional │ │ │ └── rest.resource.entity.example.yml.twig │ │ └── schema │ │ │ └── model.entity_type.schema.yml.twig │ ├── model.links.action.yml.twig │ ├── model.links.contextual.yml.twig │ ├── model.links.menu.yml.twig │ ├── model.links.task.yml.twig │ ├── model.module.twig │ ├── model.permissions.yml.twig │ ├── model.routing.yml.twig │ ├── src │ │ ├── Entity │ │ │ ├── Example.php.twig │ │ │ └── ExampleType.php.twig │ │ ├── ExampleAccessControlHandler.php.twig │ │ ├── ExampleInterface.php.twig │ │ ├── ExampleListBuilder.php.twig │ │ ├── ExampleTypeListBuilder.php.twig │ │ ├── Form │ │ │ ├── ExampleForm.php.twig │ │ │ ├── ExampleSettingsForm.php.twig │ │ │ └── ExampleTypeForm.php.twig │ │ └── Routing │ │ │ └── ExampleHtmlRouteProvider.php.twig │ └── templates │ │ └── model-example.html.twig.twig └── _entity-bundle-class │ ├── bundle-base-class.twig │ ├── bundle-class.twig │ └── module.twig ├── Form ├── _config │ ├── form.twig │ ├── links.menu.twig │ ├── routing.twig │ └── schema.twig ├── _confirm │ ├── form.twig │ └── routing.twig └── _simple │ ├── form.twig │ └── routing.twig ├── Plugin ├── Field │ ├── _formatter │ │ ├── formatter.twig │ │ └── schema.twig │ ├── _type │ │ ├── schema.twig │ │ └── type.twig │ └── _widget │ │ ├── schema.twig │ │ └── widget.twig ├── Migrate │ ├── _destination │ │ └── destination.twig │ ├── _process │ │ └── process.twig │ └── _source │ │ └── source.twig ├── Views │ ├── _argument-default │ │ ├── argument-default-schema.twig │ │ └── argument-default.twig │ ├── _field │ │ ├── field.twig │ │ └── schema.twig │ └── _style │ │ ├── preprocess.twig │ │ ├── schema.twig │ │ ├── style.twig │ │ └── template.twig ├── _action │ ├── action.twig │ └── schema.twig ├── _block │ ├── block.twig │ └── schema.twig ├── _condition │ ├── condition.twig │ └── schema.twig ├── _constraint │ ├── constraint.twig │ └── validator.twig ├── _entity-reference-selection │ ├── entity-reference-selection.twig │ └── schema.twig ├── _filter │ ├── filter.twig │ └── schema.twig ├── _menu-link │ └── menu-link.twig ├── _queue-worker │ └── queue-worker.twig └── _rest-resource │ └── rest-resource.twig ├── Service ├── _access-checker │ ├── access-checker.twig │ └── services.twig ├── _breadcrumb-builder │ ├── breadcrumb-builder.twig │ └── services.twig ├── _cache-context │ ├── cache-context.twig │ └── services.twig ├── _custom │ ├── custom.twig │ ├── interface.twig │ └── services.twig ├── _event-subscriber │ ├── event-subscriber.twig │ └── services.twig ├── _logger │ ├── logger.twig │ └── services.twig ├── _middleware │ ├── middleware.twig │ └── services.twig ├── _param-converter │ ├── param-converter.twig │ └── services.twig ├── _path-processor │ ├── path-processor.twig │ └── services.twig ├── _request-policy │ ├── request-policy.twig │ └── services.twig ├── _response-policy │ ├── response-policy.twig │ └── services.twig ├── _route-subscriber │ ├── route-subscriber.twig │ └── services.twig ├── _theme-negotiator │ ├── services.twig │ └── theme-negotiator.twig ├── _twig-extension │ ├── services.twig │ └── twig-extension.twig └── _uninstall-validator │ ├── services.twig │ └── uninstall-validator.twig ├── Test ├── _browser │ └── browser.twig ├── _kernel │ └── kernel.twig ├── _nightwatch │ └── nightwatch.twig ├── _unit │ └── unit.twig └── _webdriver │ └── webdriver.twig ├── Yaml ├── Links │ ├── _action │ │ └── links.action.twig │ ├── _contextual │ │ └── links.contextual.twig │ ├── _menu │ │ └── links.menu.twig │ └── _task │ │ └── links.task.twig ├── _breakpoints │ └── breakpoints.twig ├── _migration │ └── migration.twig ├── _module-info │ └── module-info.twig ├── _module-libraries │ └── module-libraries.twig ├── _permissions │ └── permissions.twig ├── _routing │ └── routing.twig ├── _services │ └── services.twig ├── _theme-info │ └── theme-info.twig └── _theme-libraries │ └── theme-libraries.twig ├── _composer └── composer.twig ├── _controller ├── controller.twig └── route.twig ├── _field ├── default-formatter.twig ├── key-value-formatter.twig ├── libraries.twig ├── schema.twig ├── table-formatter.twig ├── type.twig ├── widget-css.twig └── widget.twig ├── _install-file └── install.twig ├── _javascript ├── javascript.twig └── libraries.twig ├── _layout ├── javascript.twig ├── layouts.twig ├── libraries.twig ├── styles.twig └── template.twig ├── _lib └── di.twig ├── _module ├── README.md.twig ├── model.info.yml.twig ├── model.install.twig └── model.module.twig ├── _phpstorm-meta ├── config_entity_ids.php.twig ├── configuration.php.twig ├── database.php.twig ├── date_formats.php.twig ├── entity_bundles.php.twig ├── entity_links.php.twig ├── entity_types.php.twig ├── extensions.php.twig ├── field_definitions.php.twig ├── fields.php.twig ├── file_system.php.twig ├── hooks.php.twig ├── miscellaneous.php.twig ├── permissions.php.twig ├── plugins.php.twig ├── roles.php.twig ├── routes.php.twig ├── services.php.twig ├── settings.php.twig └── states.php.twig ├── _plugin-manager ├── annotation │ ├── model.services.yml.twig │ └── src │ │ ├── Annotation │ │ └── Example.php.twig │ │ ├── ExampleInterface.php.twig │ │ ├── ExamplePluginBase.php.twig │ │ ├── ExamplePluginManager.php.twig │ │ └── Plugin │ │ └── Example │ │ └── Foo.php.twig ├── attribute │ ├── model.services.yml.twig │ └── src │ │ ├── Attribute │ │ └── Example.php.twig │ │ ├── ExampleInterface.php.twig │ │ ├── ExamplePluginBase.php.twig │ │ ├── ExamplePluginManager.php.twig │ │ └── Plugin │ │ └── Example │ │ └── Foo.php.twig ├── hook │ ├── model.module.twig │ ├── model.services.yml.twig │ └── src │ │ ├── ExampleDefault.php.twig │ │ ├── ExampleInterface.php.twig │ │ └── ExamplePluginManager.php.twig └── yaml │ ├── model.examples.yml.twig │ ├── model.services.yml.twig │ └── src │ ├── ExampleDefault.php.twig │ ├── ExampleInterface.php.twig │ └── ExamplePluginManager.php.twig ├── _readme └── readme.twig ├── _render-element └── render-element.twig ├── _sdc ├── component.twig ├── javascript.twig ├── readme.twig ├── styles.twig ├── template.twig └── thumbnail.png ├── _service-provider └── service-provider.twig ├── _template ├── module.twig └── template.twig ├── _theme-settings ├── config.twig ├── form.twig └── schema.twig └── _theme ├── config ├── install │ └── model.settings.yml.twig └── schema │ └── model.schema.yml.twig ├── js └── model.js.twig ├── logo.svg.twig ├── model.breakpoints.yml.twig ├── model.info.twig ├── model.libraries.yml.twig ├── model.theme.twig ├── package.json.twig └── theme-settings.php.twig /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.phpstorm.meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/.phpstorm.meta.php -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/README.md -------------------------------------------------------------------------------- /bin/dcg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/bin/dcg -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/composer.json -------------------------------------------------------------------------------- /psalm-autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/psalm-autoloader.php -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/psalm.xml -------------------------------------------------------------------------------- /resources/service-meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/resources/service-meta.json -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/Asset/Asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Asset/Asset.php -------------------------------------------------------------------------------- /src/Asset/AssetCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Asset/AssetCollection.php -------------------------------------------------------------------------------- /src/Asset/Assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Asset/Assets.php -------------------------------------------------------------------------------- /src/Asset/Directory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Asset/Directory.php -------------------------------------------------------------------------------- /src/Asset/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Asset/File.php -------------------------------------------------------------------------------- /src/Asset/RenderableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Asset/RenderableInterface.php -------------------------------------------------------------------------------- /src/Asset/Resolver/AppendResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Asset/Resolver/AppendResolver.php -------------------------------------------------------------------------------- /src/Asset/Resolver/PrependResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Asset/Resolver/PrependResolver.php -------------------------------------------------------------------------------- /src/Asset/Resolver/PreserveResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Asset/Resolver/PreserveResolver.php -------------------------------------------------------------------------------- /src/Asset/Resolver/ReplaceResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Asset/Resolver/ReplaceResolver.php -------------------------------------------------------------------------------- /src/Asset/Resolver/ResolverDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Asset/Resolver/ResolverDefinition.php -------------------------------------------------------------------------------- /src/Asset/Resolver/ResolverFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Asset/Resolver/ResolverFactoryInterface.php -------------------------------------------------------------------------------- /src/Asset/Resolver/ResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Asset/Resolver/ResolverInterface.php -------------------------------------------------------------------------------- /src/Asset/Symlink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Asset/Symlink.php -------------------------------------------------------------------------------- /src/Attribute/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Attribute/Generator.php -------------------------------------------------------------------------------- /src/BootstrapHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/BootstrapHandler.php -------------------------------------------------------------------------------- /src/Command/BaseGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/BaseGenerator.php -------------------------------------------------------------------------------- /src/Command/Composer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Composer.php -------------------------------------------------------------------------------- /src/Command/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Controller.php -------------------------------------------------------------------------------- /src/Command/Drush/SymfonyCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Drush/SymfonyCommand.php -------------------------------------------------------------------------------- /src/Command/Entity/ConfigurationEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Entity/ConfigurationEntity.php -------------------------------------------------------------------------------- /src/Command/Entity/ContentEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Entity/ContentEntity.php -------------------------------------------------------------------------------- /src/Command/Entity/EntityBundleClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Entity/EntityBundleClass.php -------------------------------------------------------------------------------- /src/Command/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Field.php -------------------------------------------------------------------------------- /src/Command/Form/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Form/Config.php -------------------------------------------------------------------------------- /src/Command/Form/Confirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Form/Confirm.php -------------------------------------------------------------------------------- /src/Command/Form/Simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Form/Simple.php -------------------------------------------------------------------------------- /src/Command/Hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Hook.php -------------------------------------------------------------------------------- /src/Command/InstallFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/InstallFile.php -------------------------------------------------------------------------------- /src/Command/JavaScript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/JavaScript.php -------------------------------------------------------------------------------- /src/Command/LabelInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/LabelInterface.php -------------------------------------------------------------------------------- /src/Command/Layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Layout.php -------------------------------------------------------------------------------- /src/Command/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Module.php -------------------------------------------------------------------------------- /src/Command/Navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Navigation.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/ConfigEntityIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/ConfigEntityIds.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/Configuration.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/Database.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/DateFormats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/DateFormats.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/EntityBundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/EntityBundles.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/EntityLinks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/EntityLinks.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/EntityTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/EntityTypes.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/Extensions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/Extensions.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/FieldDefinitions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/FieldDefinitions.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/Fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/Fields.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/FileSystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/FileSystem.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/Hooks.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/Miscellaneous.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/Miscellaneous.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/Permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/Permissions.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/PhpStormMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/PhpStormMeta.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/Plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/Plugins.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/Roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/Roles.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/Routes.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/Services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/Services.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/Settings.php -------------------------------------------------------------------------------- /src/Command/PhpStormMeta/States.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PhpStormMeta/States.php -------------------------------------------------------------------------------- /src/Command/Plugin/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Plugin/Action.php -------------------------------------------------------------------------------- /src/Command/Plugin/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Plugin/Block.php -------------------------------------------------------------------------------- /src/Command/Plugin/Condition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Plugin/Condition.php -------------------------------------------------------------------------------- /src/Command/Plugin/Constraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Plugin/Constraint.php -------------------------------------------------------------------------------- /src/Command/Plugin/EntityReferenceSelection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Plugin/EntityReferenceSelection.php -------------------------------------------------------------------------------- /src/Command/Plugin/Field/Formatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Plugin/Field/Formatter.php -------------------------------------------------------------------------------- /src/Command/Plugin/Field/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Plugin/Field/Type.php -------------------------------------------------------------------------------- /src/Command/Plugin/Field/Widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Plugin/Field/Widget.php -------------------------------------------------------------------------------- /src/Command/Plugin/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Plugin/Filter.php -------------------------------------------------------------------------------- /src/Command/Plugin/MenuLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Plugin/MenuLink.php -------------------------------------------------------------------------------- /src/Command/Plugin/Migrate/Destination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Plugin/Migrate/Destination.php -------------------------------------------------------------------------------- /src/Command/Plugin/Migrate/Process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Plugin/Migrate/Process.php -------------------------------------------------------------------------------- /src/Command/Plugin/Migrate/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Plugin/Migrate/Source.php -------------------------------------------------------------------------------- /src/Command/Plugin/QueueWorker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Plugin/QueueWorker.php -------------------------------------------------------------------------------- /src/Command/Plugin/RestResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Plugin/RestResource.php -------------------------------------------------------------------------------- /src/Command/Plugin/Views/ArgumentDefault.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Plugin/Views/ArgumentDefault.php -------------------------------------------------------------------------------- /src/Command/Plugin/Views/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Plugin/Views/Field.php -------------------------------------------------------------------------------- /src/Command/Plugin/Views/Style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Plugin/Views/Style.php -------------------------------------------------------------------------------- /src/Command/PluginManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/PluginManager.php -------------------------------------------------------------------------------- /src/Command/Readme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Readme.php -------------------------------------------------------------------------------- /src/Command/RenderElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/RenderElement.php -------------------------------------------------------------------------------- /src/Command/Service/AccessChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Service/AccessChecker.php -------------------------------------------------------------------------------- /src/Command/Service/BreadcrumbBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Service/BreadcrumbBuilder.php -------------------------------------------------------------------------------- /src/Command/Service/CacheContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Service/CacheContext.php -------------------------------------------------------------------------------- /src/Command/Service/Custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Service/Custom.php -------------------------------------------------------------------------------- /src/Command/Service/EventSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Service/EventSubscriber.php -------------------------------------------------------------------------------- /src/Command/Service/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Service/Logger.php -------------------------------------------------------------------------------- /src/Command/Service/Middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Service/Middleware.php -------------------------------------------------------------------------------- /src/Command/Service/ParamConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Service/ParamConverter.php -------------------------------------------------------------------------------- /src/Command/Service/PathProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Service/PathProcessor.php -------------------------------------------------------------------------------- /src/Command/Service/RequestPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Service/RequestPolicy.php -------------------------------------------------------------------------------- /src/Command/Service/ResponsePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Service/ResponsePolicy.php -------------------------------------------------------------------------------- /src/Command/Service/RouteSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Service/RouteSubscriber.php -------------------------------------------------------------------------------- /src/Command/Service/ThemeNegotiator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Service/ThemeNegotiator.php -------------------------------------------------------------------------------- /src/Command/Service/TwigExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Service/TwigExtension.php -------------------------------------------------------------------------------- /src/Command/Service/UninstallValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Service/UninstallValidator.php -------------------------------------------------------------------------------- /src/Command/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/ServiceProvider.php -------------------------------------------------------------------------------- /src/Command/SingleDirectoryComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/SingleDirectoryComponent.php -------------------------------------------------------------------------------- /src/Command/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Template.php -------------------------------------------------------------------------------- /src/Command/Test/Browser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Test/Browser.php -------------------------------------------------------------------------------- /src/Command/Test/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Test/Kernel.php -------------------------------------------------------------------------------- /src/Command/Test/Nightwatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Test/Nightwatch.php -------------------------------------------------------------------------------- /src/Command/Test/Unit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Test/Unit.php -------------------------------------------------------------------------------- /src/Command/Test/WebDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Test/WebDriver.php -------------------------------------------------------------------------------- /src/Command/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Theme.php -------------------------------------------------------------------------------- /src/Command/ThemeSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/ThemeSettings.php -------------------------------------------------------------------------------- /src/Command/Yml/Breakpoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Yml/Breakpoints.php -------------------------------------------------------------------------------- /src/Command/Yml/Links/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Yml/Links/Action.php -------------------------------------------------------------------------------- /src/Command/Yml/Links/Contextual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Yml/Links/Contextual.php -------------------------------------------------------------------------------- /src/Command/Yml/Links/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Yml/Links/Menu.php -------------------------------------------------------------------------------- /src/Command/Yml/Links/Task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Yml/Links/Task.php -------------------------------------------------------------------------------- /src/Command/Yml/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Yml/Migration.php -------------------------------------------------------------------------------- /src/Command/Yml/ModuleLibraries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Yml/ModuleLibraries.php -------------------------------------------------------------------------------- /src/Command/Yml/Permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Yml/Permissions.php -------------------------------------------------------------------------------- /src/Command/Yml/Routing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Yml/Routing.php -------------------------------------------------------------------------------- /src/Command/Yml/Services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Yml/Services.php -------------------------------------------------------------------------------- /src/Command/Yml/ThemeLibraries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Command/Yml/ThemeLibraries.php -------------------------------------------------------------------------------- /src/Event/AssetPostProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Event/AssetPostProcess.php -------------------------------------------------------------------------------- /src/Event/AssetPreProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Event/AssetPreProcess.php -------------------------------------------------------------------------------- /src/Event/GeneratorInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Event/GeneratorInfo.php -------------------------------------------------------------------------------- /src/Event/GeneratorInfoAlter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Event/GeneratorInfoAlter.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/Exception/SilentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Exception/SilentException.php -------------------------------------------------------------------------------- /src/Exception/UnexpectedValueException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Exception/UnexpectedValueException.php -------------------------------------------------------------------------------- /src/GeneratorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/GeneratorFactory.php -------------------------------------------------------------------------------- /src/GeneratorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/GeneratorType.php -------------------------------------------------------------------------------- /src/Helper/Drupal/ConfigInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Helper/Drupal/ConfigInfo.php -------------------------------------------------------------------------------- /src/Helper/Drupal/ExtensionInfoInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Helper/Drupal/ExtensionInfoInterface.php -------------------------------------------------------------------------------- /src/Helper/Drupal/HookInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Helper/Drupal/HookInfo.php -------------------------------------------------------------------------------- /src/Helper/Drupal/ModuleInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Helper/Drupal/ModuleInfo.php -------------------------------------------------------------------------------- /src/Helper/Drupal/NullExtensionInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Helper/Drupal/NullExtensionInfo.php -------------------------------------------------------------------------------- /src/Helper/Drupal/PermissionInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Helper/Drupal/PermissionInfo.php -------------------------------------------------------------------------------- /src/Helper/Drupal/RouteInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Helper/Drupal/RouteInfo.php -------------------------------------------------------------------------------- /src/Helper/Drupal/ServiceInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Helper/Drupal/ServiceInfo.php -------------------------------------------------------------------------------- /src/Helper/Drupal/ThemeInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Helper/Drupal/ThemeInfo.php -------------------------------------------------------------------------------- /src/Helper/Dumper/BaseDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Helper/Dumper/BaseDumper.php -------------------------------------------------------------------------------- /src/Helper/Dumper/DryDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Helper/Dumper/DryDumper.php -------------------------------------------------------------------------------- /src/Helper/Dumper/DumperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Helper/Dumper/DumperInterface.php -------------------------------------------------------------------------------- /src/Helper/Dumper/FileSystemDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Helper/Dumper/FileSystemDumper.php -------------------------------------------------------------------------------- /src/Helper/Printer/ListPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Helper/Printer/ListPrinter.php -------------------------------------------------------------------------------- /src/Helper/Printer/PrinterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Helper/Printer/PrinterInterface.php -------------------------------------------------------------------------------- /src/Helper/Printer/TablePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Helper/Printer/TablePrinter.php -------------------------------------------------------------------------------- /src/Helper/QuestionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Helper/QuestionHelper.php -------------------------------------------------------------------------------- /src/Helper/Renderer/RendererInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Helper/Renderer/RendererInterface.php -------------------------------------------------------------------------------- /src/Helper/Renderer/TwigRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Helper/Renderer/TwigRenderer.php -------------------------------------------------------------------------------- /src/InputOutput/DefaultOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/InputOutput/DefaultOptions.php -------------------------------------------------------------------------------- /src/InputOutput/IO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/InputOutput/IO.php -------------------------------------------------------------------------------- /src/InputOutput/IOAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/InputOutput/IOAwareInterface.php -------------------------------------------------------------------------------- /src/InputOutput/IOAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/InputOutput/IOAwareTrait.php -------------------------------------------------------------------------------- /src/InputOutput/Interviewer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/InputOutput/Interviewer.php -------------------------------------------------------------------------------- /src/Logger/ConsoleLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Logger/ConsoleLogger.php -------------------------------------------------------------------------------- /src/Test/Functional/FunctionalTestBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Test/Functional/FunctionalTestBase.php -------------------------------------------------------------------------------- /src/Test/Functional/GeneratorTestBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Test/Functional/GeneratorTestBase.php -------------------------------------------------------------------------------- /src/Test/Functional/QuestionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Test/Functional/QuestionHelper.php -------------------------------------------------------------------------------- /src/Test/GeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Test/GeneratorTest.php -------------------------------------------------------------------------------- /src/Twig/TwigEnvironment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Twig/TwigEnvironment.php -------------------------------------------------------------------------------- /src/Twig/TwigSortSetNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Twig/TwigSortSetNode.php -------------------------------------------------------------------------------- /src/Twig/TwigSortTokenParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Twig/TwigSortTokenParser.php -------------------------------------------------------------------------------- /src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Utils.php -------------------------------------------------------------------------------- /src/Validator/Chained.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Validator/Chained.php -------------------------------------------------------------------------------- /src/Validator/Choice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Validator/Choice.php -------------------------------------------------------------------------------- /src/Validator/ClassName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Validator/ClassName.php -------------------------------------------------------------------------------- /src/Validator/ExtensionExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Validator/ExtensionExists.php -------------------------------------------------------------------------------- /src/Validator/MachineName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Validator/MachineName.php -------------------------------------------------------------------------------- /src/Validator/Optional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Validator/Optional.php -------------------------------------------------------------------------------- /src/Validator/PermissionId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Validator/PermissionId.php -------------------------------------------------------------------------------- /src/Validator/RegExp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Validator/RegExp.php -------------------------------------------------------------------------------- /src/Validator/Required.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Validator/Required.php -------------------------------------------------------------------------------- /src/Validator/RequiredClassName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Validator/RequiredClassName.php -------------------------------------------------------------------------------- /src/Validator/RequiredMachineName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Validator/RequiredMachineName.php -------------------------------------------------------------------------------- /src/Validator/RequiredServiceName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Validator/RequiredServiceName.php -------------------------------------------------------------------------------- /src/Validator/ServiceExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Validator/ServiceExists.php -------------------------------------------------------------------------------- /src/Validator/ServiceName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/src/Validator/ServiceName.php -------------------------------------------------------------------------------- /templates/Drush/_symfony-command/command.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Drush/_symfony-command/command.twig -------------------------------------------------------------------------------- /templates/Drush/_symfony-command/services.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Drush/_symfony-command/services.twig -------------------------------------------------------------------------------- /templates/Entity/_configuration-entity/config/schema/model.schema.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_configuration-entity/config/schema/model.schema.yml.twig -------------------------------------------------------------------------------- /templates/Entity/_configuration-entity/model.links.action.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_configuration-entity/model.links.action.yml.twig -------------------------------------------------------------------------------- /templates/Entity/_configuration-entity/model.links.menu.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_configuration-entity/model.links.menu.yml.twig -------------------------------------------------------------------------------- /templates/Entity/_configuration-entity/model.permissions.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_configuration-entity/model.permissions.yml.twig -------------------------------------------------------------------------------- /templates/Entity/_configuration-entity/model.routing.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_configuration-entity/model.routing.yml.twig -------------------------------------------------------------------------------- /templates/Entity/_configuration-entity/src/Entity/Example.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_configuration-entity/src/Entity/Example.php.twig -------------------------------------------------------------------------------- /templates/Entity/_configuration-entity/src/ExampleInterface.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_configuration-entity/src/ExampleInterface.php.twig -------------------------------------------------------------------------------- /templates/Entity/_configuration-entity/src/ExampleListBuilder.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_configuration-entity/src/ExampleListBuilder.php.twig -------------------------------------------------------------------------------- /templates/Entity/_configuration-entity/src/Form/ExampleForm.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_configuration-entity/src/Form/ExampleForm.php.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/config/install/system.action.example_delete_action.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/config/install/system.action.example_delete_action.yml.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/config/install/system.action.example_save_action.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/config/install/system.action.example_save_action.yml.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/config/optional/rest.resource.entity.example.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/config/optional/rest.resource.entity.example.yml.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/config/schema/model.entity_type.schema.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/config/schema/model.entity_type.schema.yml.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/model.links.action.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/model.links.action.yml.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/model.links.contextual.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/model.links.contextual.yml.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/model.links.menu.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/model.links.menu.yml.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/model.links.task.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/model.links.task.yml.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/model.module.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/model.module.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/model.permissions.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/model.permissions.yml.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/model.routing.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/model.routing.yml.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/src/Entity/Example.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/src/Entity/Example.php.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/src/Entity/ExampleType.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/src/Entity/ExampleType.php.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/src/ExampleAccessControlHandler.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/src/ExampleAccessControlHandler.php.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/src/ExampleInterface.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/src/ExampleInterface.php.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/src/ExampleListBuilder.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/src/ExampleListBuilder.php.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/src/ExampleTypeListBuilder.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/src/ExampleTypeListBuilder.php.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/src/Form/ExampleForm.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/src/Form/ExampleForm.php.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/src/Form/ExampleSettingsForm.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/src/Form/ExampleSettingsForm.php.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/src/Form/ExampleTypeForm.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/src/Form/ExampleTypeForm.php.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/src/Routing/ExampleHtmlRouteProvider.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/src/Routing/ExampleHtmlRouteProvider.php.twig -------------------------------------------------------------------------------- /templates/Entity/_content-entity/templates/model-example.html.twig.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_content-entity/templates/model-example.html.twig.twig -------------------------------------------------------------------------------- /templates/Entity/_entity-bundle-class/bundle-base-class.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_entity-bundle-class/bundle-base-class.twig -------------------------------------------------------------------------------- /templates/Entity/_entity-bundle-class/bundle-class.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_entity-bundle-class/bundle-class.twig -------------------------------------------------------------------------------- /templates/Entity/_entity-bundle-class/module.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Entity/_entity-bundle-class/module.twig -------------------------------------------------------------------------------- /templates/Form/_config/form.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Form/_config/form.twig -------------------------------------------------------------------------------- /templates/Form/_config/links.menu.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Form/_config/links.menu.twig -------------------------------------------------------------------------------- /templates/Form/_config/routing.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Form/_config/routing.twig -------------------------------------------------------------------------------- /templates/Form/_config/schema.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Form/_config/schema.twig -------------------------------------------------------------------------------- /templates/Form/_confirm/form.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Form/_confirm/form.twig -------------------------------------------------------------------------------- /templates/Form/_confirm/routing.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Form/_confirm/routing.twig -------------------------------------------------------------------------------- /templates/Form/_simple/form.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Form/_simple/form.twig -------------------------------------------------------------------------------- /templates/Form/_simple/routing.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Form/_simple/routing.twig -------------------------------------------------------------------------------- /templates/Plugin/Field/_formatter/formatter.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/Field/_formatter/formatter.twig -------------------------------------------------------------------------------- /templates/Plugin/Field/_formatter/schema.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/Field/_formatter/schema.twig -------------------------------------------------------------------------------- /templates/Plugin/Field/_type/schema.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/Field/_type/schema.twig -------------------------------------------------------------------------------- /templates/Plugin/Field/_type/type.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/Field/_type/type.twig -------------------------------------------------------------------------------- /templates/Plugin/Field/_widget/schema.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/Field/_widget/schema.twig -------------------------------------------------------------------------------- /templates/Plugin/Field/_widget/widget.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/Field/_widget/widget.twig -------------------------------------------------------------------------------- /templates/Plugin/Migrate/_destination/destination.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/Migrate/_destination/destination.twig -------------------------------------------------------------------------------- /templates/Plugin/Migrate/_process/process.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/Migrate/_process/process.twig -------------------------------------------------------------------------------- /templates/Plugin/Migrate/_source/source.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/Migrate/_source/source.twig -------------------------------------------------------------------------------- /templates/Plugin/Views/_argument-default/argument-default-schema.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/Views/_argument-default/argument-default-schema.twig -------------------------------------------------------------------------------- /templates/Plugin/Views/_argument-default/argument-default.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/Views/_argument-default/argument-default.twig -------------------------------------------------------------------------------- /templates/Plugin/Views/_field/field.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/Views/_field/field.twig -------------------------------------------------------------------------------- /templates/Plugin/Views/_field/schema.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/Views/_field/schema.twig -------------------------------------------------------------------------------- /templates/Plugin/Views/_style/preprocess.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/Views/_style/preprocess.twig -------------------------------------------------------------------------------- /templates/Plugin/Views/_style/schema.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/Views/_style/schema.twig -------------------------------------------------------------------------------- /templates/Plugin/Views/_style/style.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/Views/_style/style.twig -------------------------------------------------------------------------------- /templates/Plugin/Views/_style/template.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/Views/_style/template.twig -------------------------------------------------------------------------------- /templates/Plugin/_action/action.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/_action/action.twig -------------------------------------------------------------------------------- /templates/Plugin/_action/schema.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/_action/schema.twig -------------------------------------------------------------------------------- /templates/Plugin/_block/block.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/_block/block.twig -------------------------------------------------------------------------------- /templates/Plugin/_block/schema.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/_block/schema.twig -------------------------------------------------------------------------------- /templates/Plugin/_condition/condition.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/_condition/condition.twig -------------------------------------------------------------------------------- /templates/Plugin/_condition/schema.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/_condition/schema.twig -------------------------------------------------------------------------------- /templates/Plugin/_constraint/constraint.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/_constraint/constraint.twig -------------------------------------------------------------------------------- /templates/Plugin/_constraint/validator.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/_constraint/validator.twig -------------------------------------------------------------------------------- /templates/Plugin/_entity-reference-selection/entity-reference-selection.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/_entity-reference-selection/entity-reference-selection.twig -------------------------------------------------------------------------------- /templates/Plugin/_entity-reference-selection/schema.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/_entity-reference-selection/schema.twig -------------------------------------------------------------------------------- /templates/Plugin/_filter/filter.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/_filter/filter.twig -------------------------------------------------------------------------------- /templates/Plugin/_filter/schema.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/_filter/schema.twig -------------------------------------------------------------------------------- /templates/Plugin/_menu-link/menu-link.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/_menu-link/menu-link.twig -------------------------------------------------------------------------------- /templates/Plugin/_queue-worker/queue-worker.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/_queue-worker/queue-worker.twig -------------------------------------------------------------------------------- /templates/Plugin/_rest-resource/rest-resource.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Plugin/_rest-resource/rest-resource.twig -------------------------------------------------------------------------------- /templates/Service/_access-checker/access-checker.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_access-checker/access-checker.twig -------------------------------------------------------------------------------- /templates/Service/_access-checker/services.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_access-checker/services.twig -------------------------------------------------------------------------------- /templates/Service/_breadcrumb-builder/breadcrumb-builder.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_breadcrumb-builder/breadcrumb-builder.twig -------------------------------------------------------------------------------- /templates/Service/_breadcrumb-builder/services.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_breadcrumb-builder/services.twig -------------------------------------------------------------------------------- /templates/Service/_cache-context/cache-context.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_cache-context/cache-context.twig -------------------------------------------------------------------------------- /templates/Service/_cache-context/services.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_cache-context/services.twig -------------------------------------------------------------------------------- /templates/Service/_custom/custom.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_custom/custom.twig -------------------------------------------------------------------------------- /templates/Service/_custom/interface.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_custom/interface.twig -------------------------------------------------------------------------------- /templates/Service/_custom/services.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_custom/services.twig -------------------------------------------------------------------------------- /templates/Service/_event-subscriber/event-subscriber.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_event-subscriber/event-subscriber.twig -------------------------------------------------------------------------------- /templates/Service/_event-subscriber/services.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_event-subscriber/services.twig -------------------------------------------------------------------------------- /templates/Service/_logger/logger.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_logger/logger.twig -------------------------------------------------------------------------------- /templates/Service/_logger/services.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_logger/services.twig -------------------------------------------------------------------------------- /templates/Service/_middleware/middleware.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_middleware/middleware.twig -------------------------------------------------------------------------------- /templates/Service/_middleware/services.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_middleware/services.twig -------------------------------------------------------------------------------- /templates/Service/_param-converter/param-converter.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_param-converter/param-converter.twig -------------------------------------------------------------------------------- /templates/Service/_param-converter/services.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_param-converter/services.twig -------------------------------------------------------------------------------- /templates/Service/_path-processor/path-processor.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_path-processor/path-processor.twig -------------------------------------------------------------------------------- /templates/Service/_path-processor/services.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_path-processor/services.twig -------------------------------------------------------------------------------- /templates/Service/_request-policy/request-policy.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_request-policy/request-policy.twig -------------------------------------------------------------------------------- /templates/Service/_request-policy/services.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_request-policy/services.twig -------------------------------------------------------------------------------- /templates/Service/_response-policy/response-policy.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_response-policy/response-policy.twig -------------------------------------------------------------------------------- /templates/Service/_response-policy/services.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_response-policy/services.twig -------------------------------------------------------------------------------- /templates/Service/_route-subscriber/route-subscriber.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_route-subscriber/route-subscriber.twig -------------------------------------------------------------------------------- /templates/Service/_route-subscriber/services.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_route-subscriber/services.twig -------------------------------------------------------------------------------- /templates/Service/_theme-negotiator/services.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_theme-negotiator/services.twig -------------------------------------------------------------------------------- /templates/Service/_theme-negotiator/theme-negotiator.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_theme-negotiator/theme-negotiator.twig -------------------------------------------------------------------------------- /templates/Service/_twig-extension/services.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_twig-extension/services.twig -------------------------------------------------------------------------------- /templates/Service/_twig-extension/twig-extension.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_twig-extension/twig-extension.twig -------------------------------------------------------------------------------- /templates/Service/_uninstall-validator/services.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_uninstall-validator/services.twig -------------------------------------------------------------------------------- /templates/Service/_uninstall-validator/uninstall-validator.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Service/_uninstall-validator/uninstall-validator.twig -------------------------------------------------------------------------------- /templates/Test/_browser/browser.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Test/_browser/browser.twig -------------------------------------------------------------------------------- /templates/Test/_kernel/kernel.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Test/_kernel/kernel.twig -------------------------------------------------------------------------------- /templates/Test/_nightwatch/nightwatch.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Test/_nightwatch/nightwatch.twig -------------------------------------------------------------------------------- /templates/Test/_unit/unit.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Test/_unit/unit.twig -------------------------------------------------------------------------------- /templates/Test/_webdriver/webdriver.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Test/_webdriver/webdriver.twig -------------------------------------------------------------------------------- /templates/Yaml/Links/_action/links.action.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Yaml/Links/_action/links.action.twig -------------------------------------------------------------------------------- /templates/Yaml/Links/_contextual/links.contextual.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Yaml/Links/_contextual/links.contextual.twig -------------------------------------------------------------------------------- /templates/Yaml/Links/_menu/links.menu.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Yaml/Links/_menu/links.menu.twig -------------------------------------------------------------------------------- /templates/Yaml/Links/_task/links.task.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Yaml/Links/_task/links.task.twig -------------------------------------------------------------------------------- /templates/Yaml/_breakpoints/breakpoints.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Yaml/_breakpoints/breakpoints.twig -------------------------------------------------------------------------------- /templates/Yaml/_migration/migration.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Yaml/_migration/migration.twig -------------------------------------------------------------------------------- /templates/Yaml/_module-info/module-info.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Yaml/_module-info/module-info.twig -------------------------------------------------------------------------------- /templates/Yaml/_module-libraries/module-libraries.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Yaml/_module-libraries/module-libraries.twig -------------------------------------------------------------------------------- /templates/Yaml/_permissions/permissions.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Yaml/_permissions/permissions.twig -------------------------------------------------------------------------------- /templates/Yaml/_routing/routing.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Yaml/_routing/routing.twig -------------------------------------------------------------------------------- /templates/Yaml/_services/services.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Yaml/_services/services.twig -------------------------------------------------------------------------------- /templates/Yaml/_theme-info/theme-info.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Yaml/_theme-info/theme-info.twig -------------------------------------------------------------------------------- /templates/Yaml/_theme-libraries/theme-libraries.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/Yaml/_theme-libraries/theme-libraries.twig -------------------------------------------------------------------------------- /templates/_composer/composer.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_composer/composer.twig -------------------------------------------------------------------------------- /templates/_controller/controller.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_controller/controller.twig -------------------------------------------------------------------------------- /templates/_controller/route.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_controller/route.twig -------------------------------------------------------------------------------- /templates/_field/default-formatter.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_field/default-formatter.twig -------------------------------------------------------------------------------- /templates/_field/key-value-formatter.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_field/key-value-formatter.twig -------------------------------------------------------------------------------- /templates/_field/libraries.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_field/libraries.twig -------------------------------------------------------------------------------- /templates/_field/schema.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_field/schema.twig -------------------------------------------------------------------------------- /templates/_field/table-formatter.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_field/table-formatter.twig -------------------------------------------------------------------------------- /templates/_field/type.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_field/type.twig -------------------------------------------------------------------------------- /templates/_field/widget-css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_field/widget-css.twig -------------------------------------------------------------------------------- /templates/_field/widget.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_field/widget.twig -------------------------------------------------------------------------------- /templates/_install-file/install.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_install-file/install.twig -------------------------------------------------------------------------------- /templates/_javascript/javascript.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_javascript/javascript.twig -------------------------------------------------------------------------------- /templates/_javascript/libraries.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_javascript/libraries.twig -------------------------------------------------------------------------------- /templates/_layout/javascript.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_layout/javascript.twig -------------------------------------------------------------------------------- /templates/_layout/layouts.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_layout/layouts.twig -------------------------------------------------------------------------------- /templates/_layout/libraries.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_layout/libraries.twig -------------------------------------------------------------------------------- /templates/_layout/styles.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_layout/styles.twig -------------------------------------------------------------------------------- /templates/_layout/template.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_layout/template.twig -------------------------------------------------------------------------------- /templates/_lib/di.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_lib/di.twig -------------------------------------------------------------------------------- /templates/_module/README.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_module/README.md.twig -------------------------------------------------------------------------------- /templates/_module/model.info.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_module/model.info.yml.twig -------------------------------------------------------------------------------- /templates/_module/model.install.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_module/model.install.twig -------------------------------------------------------------------------------- /templates/_module/model.module.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_module/model.module.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/config_entity_ids.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/config_entity_ids.php.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/configuration.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/configuration.php.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/database.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/database.php.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/date_formats.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/date_formats.php.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/entity_bundles.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/entity_bundles.php.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/entity_links.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/entity_links.php.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/entity_types.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/entity_types.php.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/extensions.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/extensions.php.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/field_definitions.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/field_definitions.php.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/fields.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/fields.php.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/file_system.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/file_system.php.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/hooks.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/hooks.php.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/miscellaneous.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/miscellaneous.php.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/permissions.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/permissions.php.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/plugins.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/plugins.php.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/roles.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/roles.php.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/routes.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/routes.php.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/services.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/services.php.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/settings.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/settings.php.twig -------------------------------------------------------------------------------- /templates/_phpstorm-meta/states.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_phpstorm-meta/states.php.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/annotation/model.services.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/annotation/model.services.yml.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/annotation/src/Annotation/Example.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/annotation/src/Annotation/Example.php.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/annotation/src/ExampleInterface.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/annotation/src/ExampleInterface.php.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/annotation/src/ExamplePluginBase.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/annotation/src/ExamplePluginBase.php.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/annotation/src/ExamplePluginManager.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/annotation/src/ExamplePluginManager.php.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/annotation/src/Plugin/Example/Foo.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/annotation/src/Plugin/Example/Foo.php.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/attribute/model.services.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/attribute/model.services.yml.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/attribute/src/Attribute/Example.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/attribute/src/Attribute/Example.php.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/attribute/src/ExampleInterface.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/attribute/src/ExampleInterface.php.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/attribute/src/ExamplePluginBase.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/attribute/src/ExamplePluginBase.php.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/attribute/src/ExamplePluginManager.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/attribute/src/ExamplePluginManager.php.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/attribute/src/Plugin/Example/Foo.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/attribute/src/Plugin/Example/Foo.php.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/hook/model.module.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/hook/model.module.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/hook/model.services.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/hook/model.services.yml.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/hook/src/ExampleDefault.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/hook/src/ExampleDefault.php.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/hook/src/ExampleInterface.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/hook/src/ExampleInterface.php.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/hook/src/ExamplePluginManager.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/hook/src/ExamplePluginManager.php.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/yaml/model.examples.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/yaml/model.examples.yml.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/yaml/model.services.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/yaml/model.services.yml.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/yaml/src/ExampleDefault.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/yaml/src/ExampleDefault.php.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/yaml/src/ExampleInterface.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/yaml/src/ExampleInterface.php.twig -------------------------------------------------------------------------------- /templates/_plugin-manager/yaml/src/ExamplePluginManager.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_plugin-manager/yaml/src/ExamplePluginManager.php.twig -------------------------------------------------------------------------------- /templates/_readme/readme.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_readme/readme.twig -------------------------------------------------------------------------------- /templates/_render-element/render-element.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_render-element/render-element.twig -------------------------------------------------------------------------------- /templates/_sdc/component.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_sdc/component.twig -------------------------------------------------------------------------------- /templates/_sdc/javascript.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_sdc/javascript.twig -------------------------------------------------------------------------------- /templates/_sdc/readme.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_sdc/readme.twig -------------------------------------------------------------------------------- /templates/_sdc/styles.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_sdc/styles.twig -------------------------------------------------------------------------------- /templates/_sdc/template.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_sdc/template.twig -------------------------------------------------------------------------------- /templates/_sdc/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_sdc/thumbnail.png -------------------------------------------------------------------------------- /templates/_service-provider/service-provider.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_service-provider/service-provider.twig -------------------------------------------------------------------------------- /templates/_template/module.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_template/module.twig -------------------------------------------------------------------------------- /templates/_template/template.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_template/template.twig -------------------------------------------------------------------------------- /templates/_theme-settings/config.twig: -------------------------------------------------------------------------------- 1 | # Default settings of {{ name }} theme. 2 | example: 'foo' 3 | -------------------------------------------------------------------------------- /templates/_theme-settings/form.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_theme-settings/form.twig -------------------------------------------------------------------------------- /templates/_theme-settings/schema.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_theme-settings/schema.twig -------------------------------------------------------------------------------- /templates/_theme/config/install/model.settings.yml.twig: -------------------------------------------------------------------------------- 1 | # Default settings of {{ name }} theme. 2 | example: 'foo' 3 | -------------------------------------------------------------------------------- /templates/_theme/config/schema/model.schema.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_theme/config/schema/model.schema.yml.twig -------------------------------------------------------------------------------- /templates/_theme/js/model.js.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_theme/js/model.js.twig -------------------------------------------------------------------------------- /templates/_theme/logo.svg.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_theme/logo.svg.twig -------------------------------------------------------------------------------- /templates/_theme/model.breakpoints.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_theme/model.breakpoints.yml.twig -------------------------------------------------------------------------------- /templates/_theme/model.info.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_theme/model.info.twig -------------------------------------------------------------------------------- /templates/_theme/model.libraries.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_theme/model.libraries.yml.twig -------------------------------------------------------------------------------- /templates/_theme/model.theme.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_theme/model.theme.twig -------------------------------------------------------------------------------- /templates/_theme/package.json.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_theme/package.json.twig -------------------------------------------------------------------------------- /templates/_theme/theme-settings.php.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chi-teck/drupal-code-generator/HEAD/templates/_theme/theme-settings.php.twig --------------------------------------------------------------------------------