moved from inigui to inifig theme, created clameurs theme

This commit is contained in:
Bachir Soussi Chiadmi
2017-01-22 14:55:34 +01:00
parent 80df12f80c
commit b462526778
479 changed files with 6224 additions and 78627 deletions
@@ -0,0 +1,29 @@
<?php
/**
* @file
* Definition of the 'default' panel style.
*/
// Plugin definition
$plugin = array(
'title' => t('Minimum HTML'),
'description' => t('The default panel rendering style; without separator.'),
'render pane' => 'panels_minimum_style_render_pane',
'render region' => 'panels_minimum_style_render_region',
);
/**
* Render callback.
*
* @ingroup themeable
*/
function theme_panels_minimum_style_render_pane($vars) {
return render($vars['content']->content);
}
function theme_panels_minimum_style_render_region($vars) {
return implode($vars['panes']);
}