source: sipes/modules_contrib/panels/plugins/styles/naked.inc @ 92213c1

stableversion-3.0
Last change on this file since 92213c1 was 4f375e3, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el modulo panels

  • Propiedad mode establecida a 100644
File size: 451 octetos
Línea 
1<?php
2
3/**
4 * @file
5 * Definition of the 'naked' panel style.
6 */
7
8// Plugin definition
9$plugin = array(
10  'title' => t('No markup at all'),
11  'description' => t('Display the pane with no markup, not even a title.'),
12  'render pane' => 'panels_naked_style_render_pane',
13  'weight' => -5,
14);
15
16/**
17 * Render callback.
18 *
19 * @ingroup themeable
20 */
21function theme_panels_naked_style_render_pane($content, $pane, $display) {
22  return $content->content;
23}
24
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.