HEX
Server: Apache
System: Linux dev.epsylon.net 3.10.0-1160.144.1.el7.tuxcare.els2.x86_64 #1 SMP Sun Feb 15 11:22:42 UTC 2026 x86_64
User: nexper (1054)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/nexper/www/sites/all/modules/fusion_accelerator/fusion_apply/modules/panels.fusion.inc
<?php
/**
 * @file
 * Provide skins handling for panels.module.
 */

/**
 * @defgroup fusion_apply_panels_module panels.module handlers.
 *
 * @{
 */

/**
 * Implements hook_fusion_apply_config_info().
 */
function panels_fusion_apply_config_info() {
  $data['panels']['form']['fusion_apply_ui_form'] = array(
    'preprocess_hook_callback' => 'panels_fusion_apply_preprocess_hook_callback',
    'title' => t('panel pane settings'),
    'collapsed' => FALSE,
  );
  $data['panels']['preprocess']['panels_pane'] = array(
    'index_handler' => 'panels_fusion_apply_preprocess_index_handler',
  );

  return $data;
}

/**
 * Fusion Apply preprocess hook callback.
 *
 * @param &$form
 *   Passes in the $form parameter from hook_form_alter().
 * @param $form_state
 *   Passes in the $form_state parameter from hook_form_alter().
 *
 * @return
 *   An array of preprocess hooks we wish to use.
 */
function panels_fusion_apply_preprocess_hook_callback(&$form, $form_state) {
  if (strpos($form['fusion_apply']['element']['#value'], 'region') === 0) {
    return 'panels_region';
  }
  elseif (strpos($form['fusion_apply']['element']['#value'], 'pane') === 0) {
    return 'panels_pane';
  }
  else {
    return 'panels_display';
  }
}

/**
 * Fusion Apply preprocess index handler.
 *
 * @param &$variables
 *   Passes in the $variables parameter from module_preprocess().
 *
 * @return
 *   The index where we can find our values in Fusion Apply's data structure. If an
 *   array is returned, it will loop through each index in Fusion Apply's data
 *   structure and merge the returned classes.
 */
function panels_fusion_apply_preprocess_index_handler(&$variables) {
  $index = array();
  $index[] = 'pane__' . $variables['pane']->did . '__' . $variables['pane']->pid;
  return $index;
}

/**
 * Implements hook_panels_pane_content_alter().
 *
 * Because of the way panels handles contextual links we can't use a
 * contextual links handler.
 */
function panels_panels_pane_content_alter(&$content, $pane, $display_args, $context) {
  if (user_access('edit skin settings')) {
    $element = 'pane__' . $pane->did . '__' . $pane->pid;
    $content->admin_links[] = array(
      'title' => t('Edit skin'),
      'href' => 'admin/appearance/fusion/edit/nojs/panels/' . $element . '/configure',
      'query' => drupal_get_destination(),
    );
  }
}

/**
 * @}
 */