Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • Book Overview & Buying Drush for Developers - Second Edition
  • Table Of Contents Toc
Drush for Developers - Second Edition

Drush for Developers - Second Edition

By : Juan Pablo Novillo Requena, Juan P Novillo Requena
4.5 (6)
close
close
Drush for Developers - Second Edition

Drush for Developers - Second Edition

4.5 (6)
By: Juan Pablo Novillo Requena, Juan P Novillo Requena

Overview of this book

This book is a best fit for backend developers with a basic knowledge of Drupal's APIs and some experience using the command line. Perhaps you already worked on one or two Drupal projects, but have never dived deep into Drush's toolset. In any case, this book will give you a lot of advice by covering real-world challenges in Drupal projects that can be solved using Drush.
Table of Contents (8 chapters)
close
close
2
2. Keeping Database Configuration and Code Together
7
Index

Validating input

Drush can validate input arguments before handing them over to the command's callback. In this section, we will see how to process arguments and options in order to make sure that the command's callback (the function that actually does the processing of a command) receives the right input data.

Validating an argument

By default, Drush won't require any input arguments to execute a command, not even when you define them in the command callback. We can see this in the following example, which defines a command that expects one argument named $argument_1. We have placed this file at sites/all/drush/testcommand.drush.inc in our sample Drupal project:

<?php 
/**
 * @file
 * Sample Drush command to test arguments.
 */

/**
 * Implements hook_drush_command().
 */
function testcommand_drush_command() {
  $items = array();

  $items['testcommand'] = array(
    'description' => "Tests Drush command arguments",
    'arguments&apos...
CONTINUE READING
83
Tech Concepts
36
Programming languages
73
Tech Tools
Icon Unlimited access to the largest independent learning library in tech of over 8,000 expert-authored tech books and videos.
Icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Icon 50+ new titles added per month and exclusive early access to books as they are being written.
Drush for Developers - Second Edition
notes
bookmark Notes and Bookmarks search Search in title playlist Add to playlist font-size Font size

Change the font size

margin-width Margin width

Change margin width

day-mode Day/Sepia/Night Modes

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Confirmation

Modal Close icon
claim successful

Buy this book with your credits?

Modal Close icon
Are you sure you want to buy this book with one of your credits?
Close
YES, BUY

Submit Your Feedback

Modal Close icon
Modal Close icon
Modal Close icon