
| Current Path : /var/www/html/vendor/drush/drush/src/Commands/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/vendor/drush/drush/src/Commands/OptionsCommands.php |
<?php
namespace Drush\Commands;
use Symfony\Component\Console\Input\InputOption;
/*
* Common options providers. Use them by adding an annotation to your method.
*/
class OptionsCommands
{
const REQ = InputOption::VALUE_REQUIRED;
/**
* @hook option @optionset_proc_build
* @option ssh-options A string of extra options that will be passed to the ssh command (e.g. <info>-p 100</info>)
* @option tty Create a tty (e.g. to run an interactive program).
*/
public function optionsetProcBuild($options = ['ssh-options' => self::REQ, 'tty' => false]): void
{
}
/**
* @hook option @optionset_get_editor
* @option editor A string of bash which launches user's preferred text editor. Defaults to <info>${VISUAL-${EDITOR-vi}}</info>.
* @option bg Launch editor in background process.
*/
public function optionsetGetEditor($options = ['editor' => '', 'bg' => false]): void
{
}
/**
* @hook option @optionset_ssh
* @option ssh-options A string appended to ssh command during rsync, sql-sync, etc.
*/
public function optionsetSsh($options = ['ssh-options' => self::REQ]): void
{
}
/**
* @hook option @optionset_sql
* @option database The DB connection key if using multiple connections in settings.php.
* @option db-url A Drupal 6 style database URL. For example <info>mysql://root:pass@localhost:port/dbname</info>
* @option target The name of a target within the specified database connection.
* @option show-passwords Show password on the CLI. Useful for debugging.
*/
public function optionsetSql($options = ['database' => 'default', 'target' => 'default', 'db-url' => self::REQ, 'show-passwords' => false]): void
{
}
/**
* @hook option @optionset_table_selection
* @option skip-tables-key A key in the $skip_tables array. @see [Site aliases](../site-aliases.md)
* @option structure-tables-key A key in the $structure_tables array. @see [Site aliases](../site-aliases.md)
* @option tables-key A key in the $tables array.
* @option skip-tables-list A comma-separated list of tables to exclude completely.
* @option structure-tables-list A comma-separated list of tables to include for structure, but not data.
* @option tables-list A comma-separated list of tables to transfer.
*/
public function optionsetTableSelection($options = [
'skip-tables-key' => self::REQ,
'structure-tables-key' => self::REQ,
'tables-key' => self::REQ,
'skip-tables-list' => self::REQ,
'structure-tables-list' => self::REQ,
'tables-list' => self::REQ]): void
{
}
}