You are here

function content_export_yaml_drush_command in Content Export YAML 8

File

drush/content_export_yaml.drush.inc, line 6

Code

function content_export_yaml_drush_command() {
  $items = [];
  $items['cex-entity'] = [
    'description' => 'Export Content Entity',
    'aliases' => [
      'cexe',
    ],
    'arguments' => [
      'entity' => 'The split configuration to export, if none is given do a normal import.',
      'bundle' => 'The split configuration to export, if none is given do a normal import.',
      'id' => 'The split configuration to export, if none is given do a normal import.',
    ],
  ];
  $items['cim-entity'] = [
    'description' => 'Import Content Entity',
    'aliases' => [
      'cime',
    ],
    'arguments' => [
      'entity' => 'The split configuration to export, if none is given do a normal import.',
      'bundle' => 'The split configuration to export, if none is given do a normal import.',
      'id' => 'The split configuration to export, if none is given do a normal import.',
    ],
  ];
  $items['cex-node'] = [
    'description' => 'Export Content Node',
    'aliases' => [
      'cexn',
    ],
    'arguments' => [
      'bundle' => 'The split configuration to export, if none is given do a normal import.',
      'id' => 'The split configuration to export, if none is given do a normal import.',
    ],
  ];
  $items['cim-node'] = [
    'description' => 'Import Content Node',
    'aliases' => [
      'cimn',
    ],
    'arguments' => [
      'bundle' => 'The split configuration to export, if none is given do a normal import.',
      'id' => 'The split configuration to export, if none is given do a normal import.',
    ],
  ];
  $items['cim-block'] = [
    'description' => 'Import Content Block custom',
    'aliases' => [
      'cimb',
      'cim-block_content',
    ],
    'arguments' => [
      'bundle' => 'The split configuration to export, if none is given do a normal import.',
      'id' => 'The split configuration to export, if none is given do a normal import.',
    ],
  ];
  $items['cex-block'] = [
    'description' => 'Export Content Block custom',
    'aliases' => [
      'cexb',
      'cex-block_content',
    ],
    'arguments' => [
      'bundle' => 'The split configuration to export, if none is given do a normal import.',
      'id' => 'The split configuration to export, if none is given do a normal import.',
    ],
  ];
  $items['cim-term'] = [
    'description' => 'Import Content Term custom',
    'aliases' => [
      'cimt',
      'cim-taxonomy',
      'cim-taxonomy_term',
    ],
    'arguments' => [
      'bundle' => 'The split configuration to export, if none is given do a normal import.',
      'id' => 'The split configuration to export, if none is given do a normal import.',
    ],
  ];
  $items['cex-term'] = [
    'description' => 'Export Content Term custom',
    'aliases' => [
      'cext',
      'cex-taxonomy',
      'cex-taxonomy_term',
    ],
    'arguments' => [
      'bundle' => 'The split configuration to export, if none is given do a normal import.',
      'id' => 'The split configuration to export, if none is given do a normal import.',
    ],
  ];
  return $items;
}