Creating ctools content types; – aka custom panel panes – How to build your own



Creating ctools content types; – aka custom panel panes – How to build your own

1 0


ctools-content-types

CREATING CTOOLS CONTENT TYPES; AKA CUSTOM PANEL PANES presentation

On Github brandonneil / ctools-content-types

Creating ctools content types;

aka custom panel panes

Brandon Neil / @brandonneil

Follow along at: http://rawgit.com/brandonneil/ctools-content-types/master/index.html#/

Drupal 7

Agenda (20 minutes!)

  • What is a ctools content type?
  • Examples
  • How to build your own

What is a ctools content type?

  • Type of Ctools plugin (Others: layout, context...)
  • Sort of like blocks, but have per instance configuration
  • "Content type" is confusing

Examples - Demo

How to build your own

  • Dependency: Ctools
  • Need something like Page Manager to actually use your pane

Corny module

https://github.com/brandonneil/corny

.info file

corny/corny.info

name = DrupalCorn Camp Panes
description = A badge pane for DrupalCorn.
core = 7.x
package = DrupalCorn
version = 7.x-1.0
dependencies[] = ctools
						

.module file

corny/corny.module

/**
 * @file
 * Code for the Corny module.
 */

/**
 * Implements hook_ctools_plugin_directory().
 */
function corny_ctools_plugin_directory($owner, $plugin_type) {
  if ($owner == 'ctools' && $plugin_type == 'content_types') {
    return 'plugins/' . $plugin_type;
  }
}
						

cornbadge.inc

corny/plugins/content_types/cornbadge.inc

/**
 * @file
 * Ctools content type plugin file for the corny module.
 */

$plugin = array(
  'single' => TRUE,
  'title' => t('DrupalCorn Camp Badge'),
  'description' => t('Renders a DrupalCorn Camp Badge based on camp data.'),
  'category' => t('DrupalCorn'),
  'edit form' => 'cornbadge_edit_form',
  'render callback' => 'cornbadge_render',
  'admin info' => 'cornbadge_admin_info',
  'defaults' => array(
    'year' => '2014',
    'type' => 'attendee',
  ),
);
						

cornbadge.inc

corny/plugins/content_types/cornbadge.inc

/**
 * The 'admin info' callback for the content type.
 */
function cornbadge_admin_info($subtype, $conf, $contexts) {
  if (!empty($conf)) {
    $block = new stdClass();
    $block->title = $conf['override_title'] ? $conf['override_title_text'] : '';
    $block->content = t(
      'Showing DrupalCorn Camp @year @type Badge.',
      array('@year' => $conf['year'], '@type' => $conf['type'])
    );
    return $block;
  }
}
						

cornbadge.inc

corny/plugins/content_types/cornbadge.inc

/**
 * The 'Edit form' callback for the content type.
 */
function cornbadge_edit_form($form, &$form_state) {
  $conf = $form_state['conf'];
  $form['year'] = array(
    '#type' => 'select',
    '#options' => drupal_map_assoc(array(t('2014'), t('2013'), t('2012'))),
    '#title' => t('Which DrupalCorn Camp?'),
    '#default_value' => $conf['year'],
  );
  $form['type'] = array(
    '#type' => 'select',
    '#options' => array(
      'attendee' => t('Attendee'),
      'individual_sponsor' => t('Individual Sponsor'),
      'sponsor' => t('Sponsor'),
    ),
    '#title' => t('Which badge would you like to display?'),
    '#default_value' => $conf['type'],
  );
  return $form;
}
						

cornbadge.inc

corny/plugins/content_types/cornbadge.inc

/**
 * The submit form stores the data in $conf.
 */
function cornbadge_edit_form_submit($form, &$form_state) {
  foreach (array_keys($form_state['plugin']['defaults']) as $key) {
    if (isset($form_state['values'][$key])) {
      $form_state['conf'][$key] = $form_state['values'][$key];
    }
  }
}
						

cornbadge.inc

corny/plugins/content_types/cornbadge.inc

/**
 * Run-time rendering of the body of the block (content type).
 *
 * See ctools_plugin_examples for more advanced info.
 */
function cornbadge_render($subtype, $conf, $panel_args, $context = NULL) {
  $block = new stdClass();

  $block->title = t('DrupalCorn Camp');

  // Build path to image.
  $path = drupal_get_path('module', 'corny') . '/assets/' . $conf['year'] . '/' . $conf['type'] . '.png';

  // Create image.
  $image = theme('image', array('path' => $path, 'alt' => 'DrupalCorn Camp Logo',));

  // Create block content.
  $block->content = array(
    // Build link.
    'link' => array(
      '#type' => 'link',
      '#title' => $image,
      '#href' => 'http://' . $conf['year'] . '.drupalcorn.org',
      '#options' => array('html' => TRUE),
    ),
  );
  return $block;
}
						

CornBadge!

Two cool things relating to context

Restrict by Context

In your $plugin array add:

	'required context' => new ctools_context_required(t('Node'), 'node'),
						

Context keyword substitution

In your $plugin:

	'all contexts' => TRUE,
						

And in your render function use:

	$thing = ctools_context_keyword_substitute($conf['thing'], array(), $context);
						

Resources

Ctools Plugin Example

Thanks!