Book Image

Drupal 7 Theming Cookbook

By : Karthik Kumar
Book Image

Drupal 7 Theming Cookbook

By: Karthik Kumar

Overview of this book

<p>The greatest strength of Drupal lies in its design which, when employed correctly, allows developers to literally handcraft every aspect of a site, so that it looks and performs exactly how they want it to. While it is reasonably straightforward to download a Drupal theme and install it, doing anything beyond that is not. Using custom themes requires familiarity and experience with Drupal's theming system, especially if you want to easily administer and maintain your themes.</p> <p>Drupal 7 Theming Cookbook provides a plethora of recipes that enable Drupal template designers to make full use of its extensibility and style their site just the way they want it. It is a well-rounded guide which will allow users to take full advantage of Drupal's theming system.</p> <p>This cookbook starts with recipes which address the basics of Drupal's theme system, including regions and blocks. It then moves on to advanced topics such as creating a custom theme and using it to modify the layout and style of content. With the introduction of the Field API and the growing importance of Views and Panels in Drupal 7, chapters have been dedicated to each feature. You will also learn many techniques for dealing with Drupal&rsquo;s templating system, which will allow you create themes which surpass even the existing Drupal and contributed modules.</p>
Table of Contents (18 chapters)
Drupal 7 Theming Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface

Changing the height of a textarea


Forms in Drupal are managed using the Form API and modified using hook_form_alter(). In this recipe, we will look at changing the default height, or to be more precise, the default number of rows of the textarea that represents the body field in a node form.

Getting ready

We will be using the mysite module created earlier in this book to contain the hook_form_alter().

How to do it...

Navigate to the mysite module folder at sites/all/modules/mysite to perform the following steps:

  1. 1. Locate the file mysite.module and open it in an editor.

  2. 2. Scroll down to the bottom and add the following function:

    /**
    * Implements hook_form_alter().
    */
    function mysite_form_alter(&$form, &$form_state, $form_id) {
    // dpm($form_id);
    // dpm($form);
    if (isset($form['#node_edit_form'])) {
    $form['body'][$form['language']['#value']][0]['#rows'] = 5;
    }
    }
    

    If there is a pre-existing implementation of hook_form_alter(), the highlighted code above will need to be integrated with...