summaryrefslogtreecommitdiff
path: root/sites/all/modules/ctools/plugins/content_types/node_context/node_book_children.inc
blob: 5d017c5cde4b60ad5a0d780dd67794c44e753206 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php

if (module_exists('book')) {
  /**
   * Plugins are described by creating a $plugin array which will be used
   * by the system that includes this file.
   */
  $plugin = array(
    'single' => TRUE,
    'title' => t('Book children'),
    'icon' => 'icon_node.png',
    'description' => t('The children menu the book the node belongs to.'),
    'required context' => new ctools_context_required(t('Node'), 'node'),
    'category' => t('Node'),
  );
}

function ctools_node_book_children_content_type_render($subtype, $conf, $panel_args, $context) {
  $node = isset($context->data) ? clone($context->data) : NULL;
  $block = new stdClass();
  $block->module = 'book_children';

  $block->title = t('Book children');
  if ($node) {
    $block->content = isset($node->book) ? book_children($node->book) : '';
    $block->delta = $node->nid;
  }
  else {
    $block->content = t('Book children menu goes here.');
    $block->delta = 'unknown';
  }

  return $block;
}

function ctools_node_book_children_content_type_admin_title($subtype, $conf, $context) {
  return t('"@s" book children', array('@s' => $context->identifier));
}

function ctools_node_book_children_content_type_edit_form($form, &$form_state) {
  // provide a blank form so we have a place to have context setting.
  return $form;
}