Guest User

Untitled

a guest
Nov 23rd, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.53 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4.  * Plugins are described by creating a $plugin array which will be used
  5.  * by the system that includes this file.
  6.  */
  7. $plugin = array(
  8.     'title' => t('Full Name (Profile Pages Only)'),
  9.     'single' => TRUE,
  10.     'category' => t('Open Academy'),
  11.     'required context' => new ctools_context_required(t('Node'), 'node'),
  12. );
  13.  
  14. /**
  15.  *
  16.  */
  17. function historyplugins_node_full_content_type_render($subtype, $conf, $context) {
  18.   $node = $context->data;
  19.  
  20.   dpm($context);
  21.  
  22.   $block->content = $output;
  23.   return $block;
  24. }
Add Comment
Please, Sign In to add comment