Available Commands
Command | Использование |
---|---|
about Отображение основных сведений о проекте Drupal Console | |
chain Последовательное выполнение команд | drupal chain \
--file="/path/to/file/chain-file.yml"
|
check Проверка системных требований | |
composerize Converts Drupal codebase to composer. | |
exec Выполнить внешнюю команду. | |
help Показывает справку для команды | |
init Копирует конфигурационные файлы в домашний каталог пользователя. | |
list Списки всех доступных команд | |
shell Открывает оболочку предоставляющую интерактивный REPL (цикл-чтение-вычисление-вывод). | |
server Запускает встроенный PHP вебсервер | drupal server drupal server 127.0.0.1:8089 drupal --root=/var/www/drupal8.dev server |
snippet Runs PHP code | drupal snippet --file=/path/to/file drupal snippet --code=codeToExecute drupal snippet --show-code --file=/path/to/file |
cache:rebuild Перестроить и очистить весь кеш сайта. | drupal cr all drupal cr discovery |
cache:tag:invalidate Invalidate cache tags. | drupal cti routes drupal cti node:1 node_list |
config:delete Удалить конфигурацию | drupal config:delete active all |
config:diff Выводит элементы активной конфигурации, которые отличаются в сравнении с каталогом. | drupal config:diff ../config/path |
config:edit Редактирование выбранной конфигурации. | drupal config:edit system.cron drupal config:edit system.cron gedit |
config:export Экспорт текущей конфигурации приложения. | drupal config:export \
--directory="path/to/export" drupal config:export \
--directory="path/to/export" \
--tar \
--remove-uuid \
--remove-config-hash
|
config:export:content:type Экспорт выбранного типа материала и его полей. | drupal config:export:content:type page \
--module="demo" drupal config:export:content:type page \
--module="demo" \
--optional-config
|
config:export:entity Export a specific config entity and their fields. | drupal config:export:entity node_type page \
--module="demo" drupal config:export:entity node_type page \
--module="demo" \
--optional-config \
--remove-uuid \
--remove-config-hash
|
config:export:single Экспорт конфигурации в yml файл. | drupal config:export:single \
--name=config.settings.name drupal config:export:single \
--name=config.settings.name \
--remove-uuid \
--remove-config-hash
|
config:export:view Экспорт представления в YAML формат внутри модуля для повторного использования на другом сайте. | drupal config:export:view viewid drupal config:export:view viewid \
--module="modulename" \
--optional-config \
--include-module-dependencies
drupal config:export:view viewid \
--module="modulename" \
--optional-config \
--include-module-dependencies |
config:import Импорт конфигурации в текущее приложение. | drupal config:import \
--file=/path/to/config/file drupal config:import \
--directory=/path/to/config/dir
|
config:import:single Импорт выбранной конфигурации. | drupal config:import:single \
--file="/path/to/file/block.block.default_block.yml" drupal config:import:single \
--file="block.block.default_block.yml" \
--directory="/path/to/directory"
|
config:override Переопределить значение конфигурации в активной конфигурации. | drupal config:override contact.settings flood.limit 10 |
config:validate Валидирует Drupal конфигурацию на основе его схемы | drupal config:validate configuration.name |
create:comments Создание фиктивных комментариев для Drupal 8. | drupal create:comments node-id drupal create:comments node-id \
--limit="2" \
--title-words="5" \
--time-range="1"
|
create:nodes Создание фиктивных материалов для Drupal 8. | drupal create:nodes content-name drupal create:nodes content-name \
--limit="5" \
--title-words="5" \
--time-range="1" \
--language="und"
|
create:roles Create dummy roles for your Drupal 8 application. | drupal create:roles drupal create:roles
|
create:terms Создание фиктивных терминов для Drupal 8. | drupal create:terms vocabulary drupal create:terms tags \
--limit="10" \
--name-words="5"
|
create:users Создание фиктивных пользователей для Drupal 8. | drupal create:users role drupal create:users role \
--limit="5" \
--password="usersnewpassword" \
--time-range="1"
|
create:vocabularies Создание фиктивных словарей для Drupal 8. | drupal create:vocabularies \
--limit="5" \
--name-words="5"
|
cron:execute Выполнить cron реализацию для модуля иои выполнить все cron-задачи | drupal cron:execute
drupal cron:execute \
<module>
|
cron:release Снимает блокировку с cron-а для повторного запуска | drupal cron:execute
|
database:add Добавить базу данных в settings.php | drupal database:add \
--database=DATABASE \
--username=USERNAME \
--password=PASSWORD
|
database:client Запуск клиента базы данных, если он доступен | drupal database:client <database>
|
database:connect Показывает соединение с базой данных | drupal database:connect \
<database>
|
database:drop Удалить все таблицы в данной базе данных. | drupal database:drop \
<database>
|
database:dump Дамп структуры и содержимого базы данных | drupal database:dump \
<database> drupal database:dump \
--gz |
database:log:clear Удалить события из таблицы DBLog, фильтры доступны | drupal database:log:clear \
<database> drupal database:log:clear \
<database> \
--type=TYPE \
--severity=SEVERITY |
database:log:poll Опрашивает watchdog и распечатывает новые записи в логе каждые x секунд | drupal database:log:poll \
100
|
database:query Выполняет SQL выражение, напрямую из аргумента | drupal database:query 'select * from node limit 0,1'
|
database:restore Восстановление структуры и содержимого базы данных | drupal database:restore \
--file='/srv/dump/db.sql'
|
debug:breakpoints Отображает брейкпоинты досутпные в приложении | drupal debug:breakpoints bartik |
debug:cache:context Отображает текущий кеш контекст для приложения. | drupal debug:cache:context
|
debug:chain Список доступных chain файлов. | |
debug:config Показывает текущую конфигурацию. | drupal config:debug drupal config:debug system.site drupal config:debug | grep system drupal debug:config --show-overridden |
debug:config:settings Отображает текущий Ключ:значение в файле настроек. | drupal debug:config:settings
|
debug:config:validate Валидирует схему имплементации перед установкой модуля. | drupal debug:config:validate \
/path/to/file \
/path/to/schema-filepath
|
debug:container Отображает текущие сервисы для приложения. | drupal debug:container views.views_data_helper
|
debug:cron Список модулей реализующих cron | drupal debug:cron
|
debug:database:log Показать текущий журнал событий приложения | drupal debug:database:log drupal debug:database:log 21228
|
debug:database:table Показать все таблицы в данной базе данных. | drupal debug:database:table drupal debug:database:table node
|
debug:dotenv Debug Dotenv debug values. | |
debug:entity Отладка сущностей, имеющихся в системе | drupal debug:entity
|
debug:event Показать текущие события | drupal debug:event drupal debug:event kernel.request |
debug:features Отображает зарегистрированные features. | |
debug:hook commands.debug.hook.description | |
debug:image:styles Вывести список стилей изображений на сайте | drupal debug:image:styles
|
debug:libraries Выводит библиотеки, доступные в приложении | drupal debug:libraries
drupal debug:libraries block
drupal debug:libraries block/drupal.block
|
debug:migrate Отображение текущей миграции, доступной для приложения | drupal debug:migrate
|
debug:module Отображение текущих модулей доступных для приложения | drupal mod --status=installed drupal mod --status=installed --type=no-core |
debug:multisite Список всех мультисайтов доступных в системе | drupal debug:multisite
|
debug:permission Показывает все права пользователей. | drupal debug:permission
|
debug:plugin Отображает все типы плагинов, инстанции плагинов специфичного типа или определение специфичного плагина. | drupal debug:plugin drupal debug:plugin block drupal debug:plugin block broken
|
debug:queue Показать очереди вашего приложения | drupal debug:queue
|
debug:rest Отображает текущие rest ресурсы для приложения | drupal debug:rest
|
debug:roles Displays current roles for the application | drupal debug:roles
|
debug:router Отображает текущие маршруты для приложения | drupal rod drupal rod user.page drupal debug:router drupal debug:router user.login drupal debug:router --pattern=/user/login |
debug:settings Вывести пользовательские настройки Drupal Console. | drupal debug:settings
|
debug:site Вывести список всех заданных локальных и удаленных сайтов. | drupal debug:site
|
debug:state Показывает ключи текущего Состояния. | drupal debug:state
drupal debug:state install_task
|
debug:theme Отображает текущие темы для приложения | drupal debug:theme drupal debug:theme bartik |
debug:theme:keys Displays all theme keys provided by hook_theme functions | |
debug:update Отобразить обновления доступные для приложения | drupal debug:update
|
debug:update:composer Displays current updates available from the composer file | drupal debug:update:composer
|
debug:user Выводит актуальных пользователей для приложения | drupal debug:user
|
debug:views Отображение текущих ресурсов представлений приложения | drupal debug:views
|
debug:views:plugins Отображает существующие плагины Представлений для приложения | drupal debug:views:plugins
|
devel:dumper commands.devel.dumper.messages.change-devel-dumper-plugin | |
docker:init Create a docker-compose.yml file | |
dotenv:init Add support and required config to work with an .env file | |
entity:delete Удалить конкретную сущность | drupal entity:delete node 1 |
features:import Импортирует конфигурацию модуля. | |
field:info Просмотреть информацию о полях. | |
generate:ajax:command Generate & Register a custom ajax command | |
generate:authentication:provider Генерирует провайдер аутентификации | drupal generate:authentication:provider \
--module="modulename" \
--class="DefaultAuthenticationProvider" \
--provider-id="default_authentication_provider"
|
generate:breakpoint Генерирует брейкпоинт | drupal generate:breakpoint \
--theme="classy" \
--breakpoints='"breakpoint_name":"narrow", "breakpoint_label":"narrow", "breakpoint_media_query":"all and (min-width: 560px) and (max-width: 850px)", "breakpoint_weight":"1", "breakpoint_multipliers":"1x"' |
generate:cache:context Генерирует контекст кеша | drupal generate:cache:context \
--module="modulename" \
--cache-context="ContextName" \
--class="DefaultCacheContext" |
generate:command Сгенерировать команды для консоли. | drupal generate:command \
--extension="ExtensionName" \
--extension-type="module" \
--class="DefaultCommand" \
--name="CommandName" |
generate:composer Generate a composer.json file | drupal generate:composer \
--module="module_name" \
--name="drupal/module_name" \
--type="drupal-module" \
--description="Package description" \
--keywords='Drupal' --keywords='logging' \
--license="GPL-2.0+" \
--homepage="https://www.drupal.org/project/module_name" \
--minimum-stability="stable" \
--authors='"name":"Author name", "email":"author@email.com", "homepage":"http://website.com", "role":"Developer"' \
--support='"channel":"email", "url":"author@email.com"' \
--support='"channel":"source", "url":"http://github.com"' \
--required='"name":"drupal/views", "version":"^1.0"' \
--required='"name":"drupal/token", "version":"^2.0"'
|
generate:controller Генерирует и регистрирует контроллер | drupal generate:controller \
--module="modulename" \
--class="DefaultController" \
--routes='"title":"ControllerMethod", "name":"modulename.default_controller_hello", "method":"hello", "path":"/modulename/hello/{name}"' \
--test |
generate:entity:bundle Сгенерировать новый тип контента (бандл ноды / сущности) | drupal generate:entity:bundle \
--module="modulename" \
--bundle-name="default" \
--bundle-title="default" |
generate:entity:config Генерирует сущность конфигурации | drupal generate:entity:config \
--module="modulename" \
--entity-class="DefaultEntity" \
--entity-name="default_entity" \
--base-path="/admin/structure" \
--label="Default entity" |
generate:entity:content Генерирует новую контент сущность | drupal generate:entity:content \
--module="modulename" \
--entity-class="DefaultEntity" \
--entity-name="default_entity" \
--base-path="/admin/structure" \
--label="Default entity" drupal generate:entity:content \
--module="modulename" \
--entity-class="DefaultEntity" \
--entity-name="default_entity" \
--base-path="/admin/structure" \
--label="Default entity" \
--is-translatable \
--revisionable |
generate:event:subscriber Генерирует подписчик на событие | drupal generate:event:subscriber \
--module="modulename" \
--name="modulename.default" \
--class="DefaultSubscriber" \
--events='kernel_request'
|
generate:form Генерировать новую "FormBase" | drupal generate:form \
--module="modulename" \
--class="DefaultForm" \
--form-id="default_form" \
--config-file \
--path="/modulename/form/default" drupal generate:form \
--module="modulename" \
--class="DefaultForm" \
--form-id="default_form" \
--config-file \
--inputs='"name":"inputname", "type":"text_format", "label":"InputName", "options":"", "description":"Just a text input", "maxlength":"", "size":"", "default_value":"", "weight":"0", "fieldset":""' \
--inputs='"name":"email", "type":"email", "label":"Email", "options":"", "description":"Just an email input", "maxlength":"", "size":"", "default_value":"", "weight":"0", "fieldset":""' \
--path="/modulename/form/default" |
generate:form:alter Сгенерировать реализацию hook_form_alter() или hook_form_FORM_ID_alter() | drupal generate:form:alter \
--module="modulename" drupal generate:form:alter \
--module="modulename" \
--inputs='"name":"inputtext", "type":"text_format", "label":"InputText", "options":"", "description":"Just an input text", "maxlength":"", "size":"", "default_value":"", "weight":"0", "fieldset":""' \
--inputs='"name":"email", "type":"email", "label":"Email", "options":"", "description":"Just an email input", "maxlength":"", "size":"", "default_value":"", "weight":"0", "fieldset":""' |
generate:form:config Генерировать новую "ConfigFormBase" | drupal generate:form:config \
--module="modulename" \
--class="DefaultForm" \
--form-id="default_form" \
--config-file \
--path="/modulename/form/default" drupal generate:form:config \
--module="modulename" \
--class="DefaultForm" \
--form-id="default_form" \
--config-file \
--inputs='"name":"inputname", "type":"text_format", "label":"InputName", "options":"", "description":"Just a text input", "maxlength":"", "size":"", "default_value":"", "weight":"0", "fieldset":""' \
--inputs='"name":"email", "type":"email", "label":"Email", "options":"", "description":"Just an email input", "maxlength":"", "size":"", "default_value":"", "weight":"0", "fieldset":""' \
--path="/modulename/form/default"
|
generate:help Сгенерировать реализацию hook_help() | drupal generate:help \
--module="modulename" \
--description="My Awesome Module" |
generate:jstest Generate a JavaScript test. | drupal generate:module \
--module="modulename" \
--machine-name="modulename" \
--module-path="/modules/custom" \
--description="My Awesome Module" \
--core="8.x" \
--package="Custom" \
--module-file \
--composer \
--test \
--twigtemplate
|
generate:module Сгенерировать модуль. | drupal generate:module \
--module="modulename" \
--machine-name="modulename" \
--module-path="/modules/custom" \
--description="My Awesome Module" \
--core="8.x" \
--package="Custom" \
--module-file \
--composer \
--test \
--twigtemplate |
generate:module:file Сгенерировать файл .module | drupal generate:module:file \
--module="modulename" |
generate:permissions Generate module permissions | |
generate:plugin:block Генерирует плагин блока | drupal generate:plugin:block \
--module="modulename" \
--class="DefaultBlock" \
--label="Default block" \
--plugin-id="default_block" \
--theme-region="header" \
--inputs='"name":"inputtext", "type":"text_format", "label":"InputText", "options":"", "description":"Just an input text", "maxlength":"", "size":"", "default_value":"", "weight":"0", "fieldset":""' |
generate:plugin:ckeditorbutton Generate CKEditor button plugin. | drupal generate:plugin:ckeditorbutton \
--module="modulename" \
--class="DefaultCKEditorButton" \
--label="Default ckeditor button" \
--plugin-id="default ckeditor button" \
--button-name="Default ckeditor button" \
--button-icon-path="modules/custom/modulename/js/plugins/default ckeditor button/images/icon.png" |
generate:plugin:condition Генерирует плагин условия. | drupal generate:plugin:condition \
--module="modulename" \
--class="ExampleCondition" \
--label="Example condition" \
--plugin-id="example_condition" \
--context-definition-id="entity:node" \
--context-definition-label="node" \
--context-definition-required drupal generate:plugin:condition \
--module="modulename" \
--class="ExampleCondition" \
--label="Example condition" \
--plugin-id="example_condition" \
--context-definition-id="language" \
--context-definition-label="Language" \
--context-definition-required drupal generate:plugin:condition \
--module="modulename" \
--class="ExampleCondition" \
--label="Example condition" \
--plugin-id="example_condition" \
--context-definition-id="entity:user_role" \
--context-definition-label="user_role" \
--context-definition-required
|
generate:plugin:field Генерирует плагины типа поля, виджета и форматтера | drupal generate:plugin:field \
--module="modulename" \
--type-class="ExampleFieldType" \
--type-label="Example field type" \
--type-plugin-id="example_field_type" \
--type-description="My Field Type" \
--formatter-class="ExampleFormatterType" \
--formatter-label="Example formatter type" \
--formatter-plugin-id="example_formatter_type" \
--widget-class="ExampleWidgetType" \
--widget-label="Example widget type" \
--widget-plugin-id="example_widget_type" \
--field-type="example_field_type" \
--default-widget="example_widget_type" \
--default-formatter="example_formatter_type"
|
generate:plugin:fieldformatter Генерирует плагин форматтера поля. | drupal generate:plugin:fieldformatter \
--module="modulename" \
--class="ExampleFieldFormatter" \
--label="Example field formatter" \
--plugin-id="example_field_formatter" \
--field-type="text"
|
generate:plugin:fieldtype Генерирует плагин типа поля. | drupal generate:plugin:fieldtype \
--module="modulename" \
--class="ExampleFieldType" \
--label="Example field type" \
--plugin-id="example_field_type" \
--description="My Field Type" drupal generate:plugin:fieldtype \
--module="modulename" \
--class="ExampleFieldType" \
--label="Example field type" \
--plugin-id="example_field_type" \
--description="My Field Type" \
--default-widget="DefaultWidget" \
--default-formatter="DefaultFormatter"
|
generate:plugin:fieldwidget Генерирует плагин виджета поля. | drupal generate:plugin:fieldwidget \
--module="modulename" \
--class="ExampleFieldWidget" \
--label="Example field widget" \
--plugin-id="example_field_widget" \
--field-type="text"
|
generate:plugin:imageeffect Генерирует плагин эффект изображения. | drupal generate:plugin:imageeffect \
--module="modulename" \
--class="DefaultImageEffect" \
--label="Default image effect" \
--plugin-id="default_image_effect" \
--description="My Image Effect"
|
generate:plugin:imageformatter Генерирует плагин форматер изображения. | drupal generate:plugin:imageformatter \
--module="modulename" \
--class="ExampleImageFormatter" \
--label="Example image formatter" \
--plugin-id="example_image_formatter"
|
generate:plugin:mail Генерирует почтовый плагин | drupal generate:plugin:mail \
--module="modulename" \
--class="HtmlFormatterMail" \
--label="Html formatter mail" \
--plugin-id="html_formatter_mail"
|
generate:plugin:migrate:dataparser Generate a migrate data parser | drupal generate:plugin:migrate:source \
--module="modulename" \
--class="PluginClassName" \
--plugin-id="plugin_class_name" \
--plugin-title="Data parser"
|
generate:plugin:migrate:process Генерирует плагин обработки для миграции | drupal generate:plugin:migrate:process \
--module="modulename" \
--class="MigrationProcess" \
--plugin-id="migrationprocess"
|
generate:plugin:migrate:source Генерирует плагин ресурса миграции | drupal generate:plugin:migrate:source \
--module="modulename" \
--class="PluginClassName" \
--plugin-id="plugin_class_name" \
--table="DefaultTableName" \
--alias="D" drupal generate:plugin:migrate:source \
--module="modulename" \
--class="DefaultPluginClass" \
--plugin-id="default_plugin_class" \
--table="users" \
--alias="u" \
--fields='"id":"id", "description":"the user id"' \
--fields='"id":"username", "description":"the username"' \
--fields='"id":"password", "description":"the user password"' \
--fields='"id":"email", "description":"the user email"'
|
generate:plugin:queue Drupal Console Queueworker generator. | drupal generate:plugin:queue \
--module="modulename" \
--class="PluginClassName" \
--plugin-id="plugin_class_name" \
--cron-time="30" \
--label="Example QueueWorker" |
generate:plugin:rest:resource Генерирует плагин rest ресурса | drupal generate:plugin:rest:resource \
--module="modulename" \
--class="DefaultRestResource" \
--plugin-id="default_rest_resource" \
--plugin-label="Default rest resource" \
--plugin-url="http://rest.resources.example.com" \
--plugin-states='GET'
|
generate:plugin:rules:action Generate a plugin rule action | drupal generate:plugin:rules:action \
--module="modulename" \
--class="DefaultAction" \
--label="Default Action" \
--plugin-id="default_action" \
--category="Action category" \
--context='"name":"user", "type":"entity:user", "label":"Context label", "description":"Context description"' drupal generate:plugin:rules:action \
--module="modulename" \
--class="DefaultAction" \
--label="Default Action" \
--plugin-id="default_action" \
--category="Action category" \
--context='"entity":"node", "type":"entity", "label":"Context label", "description":"Context description"'
|
generate:plugin:rules:dataprocessor Generate a plugin rule dataprocessor | drupal generate:plugin:rules:dataprocessor \
--module="modulename" \
--class="DefaultDataprocessor" \
--label="Default dataprocessor" \
--plugin-id="default_dataprocessor" \
|
generate:plugin:skeleton Генерирует имплементацию skeleton плагина для тех плагинов для которых Drupal Console не имеет специального генератора | drupal generate:plugin:skeleton \
--module="modulename" \
--plugin-id="link_relation_type" \
--class="DefaultLinkRelationType"
|
generate:plugin:type:annotation Генерирует тип плагина с обнаружением по аннотации | drupal generate:plugin:type:annotation \
--module="modulename" \
--class="ExamplePlugin" \
--machine-name="example_plugin" \
--label="Example plugin"
|
generate:plugin:type:yaml Генерирует тип плагина с Yaml обнаружением | drupal generate:plugin:type:yaml \
--module="modulename" \
--class="ExamplePlugin" \
--plugin-name="example_plugin" \
--plugin-file-name="example.plugin"
|
generate:plugin:validationconstraint Generate a validation constraint plugin. | drupal generate:plugin:validationconstraint \
--module="modulename" \
--class="ExampleConstraint" \
--label="Example validation constraint" \
-plugin-id="example_validation_constraint" \
--hook \
--field-id="field_exmaple_id" \
--bundle="entity_example_bundle" \
--no-interaction
|
generate:plugin:views:field Генерирует плагин поля представления. | drupal generate:plugin:views:field \
--module="modulename" \
--class="CustomViewsField" \
--title="Custom views field" \
--description="My awesome custom views field plugin."
|
generate:post:update Генерирует имплементацию hook_post_update_NAME() | drupal generate:post:update \
--module="modulename" \
--post-update-name="PostUpdateName"
|
generate:profile Генерирует профайл. | drupal generate:profile \
--profile="NewProfileName" \
--machine-name="newprofilename" \
--description="My Useful Profile" \
--core="8.x" \
--dependencies="modulename"
|
generate:routesubscriber Генерирует RouteSubscriber | drupal generate:routesubscriber \
--module="modulename" \
--name="modulename.route_subscriber" \
--class="RouteSubscriber"
|
generate:service Генерирует сервис | drupal generate:service \
--module="modulename" \
--name="modulename.default" \
--class="DefaultService" \
--path-service="/modules/custom/modulename/src/" drupal generate:service \
--module="modulename" \
--name="modulename.default" \
--class="DefaultService" \
--interface \
--interface-name="InterfaceName" \
--path-service="/modules/custom/modulename/src/"
|
generate:site:alias Generates a site alias. | drupal generate:site:alias \
--name="demo" \
--environment="dev" \
--type="ssh" \
--composer-root="/path/to/remote/project" \
--site-uri="default" \
--host="hostName/domain" \
--user="userName" \
--port="port" \
--drupal-console-binary="drupal" \
--extra-options="-tt" \
--directory="/Users/hjuarez/drupalSq/console/" |
generate:theme Генерирует тему. | drupal generate:theme \
--theme="AnotherTheme" \
--machine-name="anothertheme" \
--theme-path="/themes/custom" \
--description="My Awesome theme" \
--core="8.x" \
--package="PackageName" \
--global-library="global-styling" \
--base-theme="false" drupal generate:theme \
--theme="MyTheme" \
--machine-name="mytheme" \
--theme-path="/themes/custom" \
--description="My Awesome theme" \
--core="8.x" \
--package="MyThemePackage" \
--global-library="global-styling" \
--base-theme="stable" \
--regions='"region_name":"Content", "region_machine_name":"content"' \
--regions='"region_name":"Panel", "region_machine_name":"panel"' \
--breakpoints='"breakpoint_name":"narrow", "breakpoint_label":"narrow", "breakpoint_media_query":"all and (min-width: 560px) and (max-width: 850px)", "breakpoint_weight":"1", "breakpoint_multipliers":"1x"'
|
generate:twig:extension Генерирует Twig расширение. | drupal generate:twig:extension \
--module="modulename" \
--name="modulename.twig.extension" \
--class="DefaultTwigExtension"
|
generate:update Генерирует имплементацию hook_update_N() | drupal generate:update \
--module="modulename" \
--update-n="8001"
|
image:styles:flush Отчищает кеш по стилю изображений или отчищает кеш для всех стилей изображений | drupal image:styles:flush large drupal image:styles:flush thumbnail
|
locale:language:add Добавить поддержку языка вашим сайтом | |
locale:language:delete Удалить поддержку языка с вашего сайта | |
locale:translation:status Список доступных обновлений переводов | |
migrate:execute Выполняет миграцию доступную для приложения | |
migrate:rollback Откатывает изменения для одной или множества миграций | |
migrate:setup Загрузить и создать соответствующие миграции для предоставленной устаревшой базы данных | |
module:dependency:install Install dependencies module in the application | drupal module:dependency:install modulename
|
module:download Скачать модуль или модули в приложение | drupal module:download modulename \
--path="modules/contrib"
|
module:install Устанавливает модуль или модули в приложении | drupal module:install modulename
|
module:path Возвращает относительный или абсолютный путь к модулю | drupal module:path modulename
|
module:uninstall Удаляет модуль или модули из приложения | drupal module:uninstall modulename
|
module:update Обновляет ядро, модуль или модули в приложении | drupal module:update modulename \
--composer
|
multisite:new Настраивает файлы для мультисайт установки. | drupal multisite:new vendor/newsite http://mysite.example.com
|
multisite:update Update the files for a multisite installed. | drupal multisite:update
|
node:access:rebuild Перестравает права доступа к нодам. Перестройка прав удалит все привлегии к контенту и заменит их правами основанными на текущих модулях и настройках | drupal node:access:rebuild --batch |
queue:run Выполнить выбранную очередь. | |
quick:start Download, install and serve a new Drupal project | |
rest:disable Деактивирует rest ресурсы для приложения | |
rest:enable Активирует rest ресурсы для приложения | |
role:delete Delete roles for the application | drupal role:delete moderator
|
role:new Create roles for the application | drupal role:new moderator moderator
|
router:rebuild Отображает маршруты для приложения | drupal router:rebuild |
settings:set Меняет значение для специфичной настройки в DrupalConsole файле настроек | drupal settings:set application.language es |
site:import:local Импортирует/Конфигурирует существующий локальный Drupal проект | drupal site:import:local SiteName /private/var/www/vhost/anexusit/drupal8.dev/web |
site:install Устанавливает Drupal проект | drupal site:install standard \
--langcode="en" \
--db-type="mysql" \
--db-host="127.0.0.1" \
--db-name="drupal8" \
--db-user="u53rn4m3" \
--db-pass="dbp455" \
--db-port="3306" \
--site-name="Drupal 8" \
--site-mail="admin@example.com" \
--account-name="admin" \
--account-mail="admin@example.com" \
--account-pass="p455w0rd"
drupal site:install standard mysql://dbUser:dbPass@dbHost/dbName \
--langcode="en" \
--site-name="Drupal 8" \
--site-mail="admin@example.com" \
--account-name="admin" \
--account-mail="admin@example.com" \
--account-pass="p455w0rd"
|
site:maintenance Переключить сайт в режим обслуживания | drupal site:maintenance on drupal site:maintenance off
|
site:mode Переключание конфигурацию производительности системы | drupal site:mode prod drupal site:mode dev
|
site:new Download a new Drupal project | |
site:statistics Отобразить текущую статистику сайта. | |
site:status Просмотр статуса текущей установки Drupal | drupal site:status \
--format="table"
|
state:delete Удаляет состояние | drupal state:delete comment.maintain_entity_statistics
|
state:override Перезаписывает значение состояния по ключу. | drupal state:override comment.node_comment_statistics_scale "!!float 1"
|
taxonomy:term:delete Удаляет элементы из словаря | drupal taxonomy:term:delete tags
|
theme:download Скачать тему для приложения | drupal theme:download Alina 7.x-1.2
|
theme:install Установить тему или темы для приложения | drupal theme:install mytheme
|
theme:path Относительный путь к теме (или абсолютный) | drupal theme:path mytheme
|
theme:uninstall Деинсталяция тем в прилодении | drupal theme:uninstall mytheme
|
update:entities Выполняется обновление сущностей | drupal update:entities
|
update:execute Выполнить указанный update_N хук в модуле или выполнить все | drupal update:execute
drupal update:execute system
|
user:create Создание пользователей в приложении | drupal user:create john p455w0rd \
--roles='authenticated' \
--email="john@anexusit.com" \
--status="1" drupal user:create doe p455w0rd \
--roles='administrator' \
--email="doe@anexusit.com" \
--status="1"
|
user:delete Удалить пользователей из приложения | drupal user:delete \
--user-id="2"
--roles='authenticated' drupal user:delete \
--user-id="3"
drupal user:delete \
--role="authenticated"
|
user:login:clear:attempts Сброс неудачных попыток входа в аккаунт. | |
user:login:url Генерирует одноразовую ссылку для входа. | drupal user:login:url 1
drupal user:login:url jmolivas |
user:password:hash Сгенерировать хеш для пароля. | drupal user:password:hash p455w0rd
|
user:password:reset Сброс пароля указанного пользователя. | drupal user:password:reset 2 p455w0rd
drupal user:password:reset jmolivas p455w0rd
|
user:role Добавить/отнять пользовательскую роль | drupal user:role add admin administrator drupal user:role remove admin administrator
|
user:unblock Unblock a specific user. | drupal user:unblock 2 drupal user:unblock johndoe
|
views:disable Отключить представление | drupal views:disable content
drupal views:disable frontpage
|
views:enable Включить представление | drupal views:enable content
drupal views:enable frontpage
|