| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/business/sites/all/modules/panels/plugins/styles/ |
Upload File : |
<?php
/**
* @file
* Definition of the 'block' panel style.
*/
// Plugin definition.
$plugin = array(
'title' => t('System block'),
'description' => t('Display the pane as a system block; this is more restrictive than the default.'),
'render pane' => 'panels_block_style_render_pane',
'weight' => -10,
);
/**
* Render callback.
*
* @ingroup themeable
*/
function theme_panels_block_style_render_pane($vars) {
$content = $vars['content'];
$pane = $vars['pane'];
if (empty($content->content)) {
return;
}
$block = clone($content);
if (!empty($block->title)) {
$block->subject = $block->title;
}
if (!isset($block->subject)) {
$block->subject = '';
}
$block->region = $pane->panel;
if (!isset($block->module)) {
$block->module = $block->type;
}
if (!isset($block->delta)) {
$block->delta = $block->subtype;
}
$build = $block->content;
if (is_string($build)) {
$build = array('#markup' => $build);
}
$build['#block'] = $block;
$build['#theme_wrappers'][] = 'block';
// If using per pane classes, $block->css_class will need to be added in your
// preprocess or template, along with any other Panels specific field you
// might want to utilize.
return drupal_render($build);
}