| 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/ctools/plugins/content_types/page/ |
Upload File : |
<?php
/**
* @file
* Plugin to handle the 'page' content type which allows the standard page
* template variables to be embedded into a panel.
*/
/**
* Plugins are described by creating a $plugin array which will be used
* by the system that includes this file.
*/
$plugin = array(
'title' => t('Tabs'),
'single' => TRUE,
'icon' => 'icon_page.png',
'description' => t('Add the tabs (local tasks) as content.'),
'category' => t('Page elements'),
'render last' => TRUE,
'defaults' => array(
'type' => 'both',
'id' => 'tabs',
),
);
/**
* Output function for the 'page_tabs' content type.
*
* Outputs the tabs (local tasks) of the current page.
*/
function ctools_page_tabs_content_type_render($subtype, $conf, $panel_args) {
$block = new stdClass();
$menus = menu_local_tabs();
if (empty($menus['#secondary']) && empty($menus['#primary'])) {
return;
}
switch ($conf['type']) {
case 'primary':
unset($menus['#secondary']);
break;
case 'secondary':
unset($menus['#primary']);
break;
}
if ($conf['id']) {
$menus['#theme_wrappers'][] = 'container';
$menus['#attributes']['id'] = $conf['id'];
}
$block->content = $menus;
return $block;
}
function ctools_page_tabs_content_type_edit_form($form, &$form_state) {
$conf = $form_state['conf'];
$form['type'] = array(
'#title' => t('Tabs type'),
'#type' => 'select',
'#options' => array(
'both' => t('Primary and secondary'),
'primary' => t('Primary'),
'secondary' => t('Secondary'),
),
'#default_value' => $conf['type'],
);
$form['id'] = array(
'#title' => t('CSS id to use'),
'#type' => 'textfield',
'#default_value' => $conf['id'],
);
return $form;
}
/**
* The submit form stores the data in $conf.
*/
function ctools_page_tabs_content_type_edit_form_submit($form, &$form_state) {
foreach (array_keys($form_state['plugin']['defaults']) as $key) {
if (isset($form_state['values'][$key])) {
$form_state['conf'][$key] = $form_state['values'][$key];
}
}
}