idea-php-drupal-symfony2-bridge
idea-php-drupal-symfony2-bridge copied to clipboard
PhpStorm plugin to support Symfony components inside Drupal 8
Extract from Symfony plugin
``` entity.search_page.edit_form: path: '/admin/config/search/pages/manage/{search_page}' defaults: _entity_form: 'search_page.edit' _title_callback: '\Drupal\search\Controller\SearchController::editTitle' op: 'enable' ``` ``` requirements: _entity_access: 'search_page.update' ```
``` Drupal\Core\Config\ConfigFactoryInterface::get core/modules/system/config/schema/system.schema.yml ``` ``` system.diff: type: config_object label: 'Diff settings' mapping: context: type: mapping label: 'Context' mapping: lines_leading: type: integer label: 'Number of leading lines in a diff' lines_trailing:...
First of all thank you for making this plugin. In drupal 8 `hook_theme` are defined like this. ``` php /** * Implements hook_theme(). */ function user_theme() { return array( 'user'...