Maintainers strive to actively monitor issues and respond in a timely manner.

Cookie Monster

Manage the browser cookies set by Drupal in a full Views & Rules integrated way.

DataTable

Data Table is an addition to the core form API which allows the creation of a datatable field type. A data table is a draggable, sortable, table of data. Not only does it provide a table full of editable data, but also allows the developer to define a custom structure to display the data which taps directly into the form API. For example, rather than showing a grid full of text boxes, the developer can specify any of the normal form API elements to be used instead(ie: checkboxes, select lists, text areas, etc..)

Usage

$form['example'] = array(
  '#type' => 'datatable',
  '#draggable' => TRUE,
  '#limit' => 25, // Use 0 for unlimited
  '#structure' => array(
    array(
      '#type' => 'textfield',
      '#title' => t('Name'),
      '#default_value' => NULL,
    ),
    array(
      '#type' => 'select',
      '#title' => t('Favorite Color'),
      '#default_value' => 'red',
      '#options' => array(
        'red' => 'Red', 
        'green' => 'Green', 
        'blue' => 'Blue'
      ),
    ),
    array(
      '#type' => 'checkbox',
      '#title' => t('Likes Cats'),
      '#return_value' => 1,
      '#default_value' => 0,
    )
  ),
  '#value' => array(
    array('John Doe', 'green', 0),
    array('Lauren Ipsum', 'red', 1),
    array('Test', 'blue', 1),
  ),
);

Sponsorship

Stanley Administration Theme

Stanley admin 1.x screenshot

Development of the original Stanley admin theme has stopped. All efforts are now focussed on version 2. This new version does not use Twitter Bootstrap, nor does it use a base theme. The goal is to embrace the Drupal code to create a clean drop-in replacement for the core admin theme with a pleasant backend experience for everyone. Inspiration will be drawn from Bootstrap as well as other frameworks and popular online applications.

Responsive Image Styles

Display the correct image style for the current viewport.

Pages

Subscribe with RSS Subscribe to RSS - Actively maintained