You are here

function content_skinr_config in Skinr 6.2

Implementation of hook_skinr_config().

Related topics

File

modules/content.skinr.inc, line 17
Provide skinr handling for content.module

Code

function content_skinr_config() {
  $data['content']['form']['content_field_edit_form'] = array(
    'index_handler' => 'content_skinr_form_index_handler',
    'preprocess_hook_callback' => 'content_skinr_preprocess_hook_callback',
    'title' => t('content settings'),
  );
  $data['content']['form']['skinr_ui_form'] = array(
    'index_handler' => 'skinr_ajax_index_handler',
    'preprocess_hook_callback' => 'content_skinr_preprocess_hook_callback',
    'title' => t('content settings'),
    'collapsed' => FALSE,
  );
  $data['content']['preprocess']['content_field'] = array(
    'index_handler' => 'content_skinr_preprocess_index_handler',
  );
  return $data;
}