[ Index ]

PHP Cross Reference of Drupal 6 (gatewave)

title

Body

[close]

/sites/all/modules/panels/plugins/styles/ -> naked.inc (source)

   1  <?php
   2  // $Id: naked.inc,v 1.1.2.3 2010/07/13 23:55:58 merlinofchaos Exp $
   3  
   4  /**
   5   * @file
   6   * Definition of the 'naked' panel style.
   7   */
   8  
   9  // Plugin definition
  10  $plugin = array(
  11    'title' => t('No markup at all'),
  12    'description' => t('Display the pane with no markup, not even a title.'),
  13    'render pane' => 'panels_naked_style_render_pane',
  14    'weight' => -5,
  15  );
  16  
  17  /**
  18   * Render callback.
  19   *
  20   * @ingroup themeable
  21   */
  22  function theme_panels_naked_style_render_pane($content, $pane, $display) {
  23    return $content->content;
  24  }
  25  


Generated: Thu Mar 24 11:18:33 2011 Cross-referenced by PHPXref 0.7