function themekey_help_properties_form in ThemeKey 6.4
Same name and namespace in other branches
- 6.2 themekey_help.inc \themekey_help_properties_form()
- 6.3 themekey_help.inc \themekey_help_properties_form()
- 7.3 themekey_help.inc \themekey_help_properties_form()
- 7 themekey_help.inc \themekey_help_properties_form()
- 7.2 themekey_help.inc \themekey_help_properties_form()
Uses Drupal's form builder to format ThemeKey's help properties
See also
1 string reference to 'themekey_help_properties_form'
- themekey_help in ./
themekey.module - Implements hook_help().
File
- ./
themekey_help.inc, line 141 - Provides content for help pages.
Code
function themekey_help_properties_form($form_state, $collapsed = TRUE) {
module_load_include('inc', 'themekey', 'themekey_admin');
$page_cache_support_desriptions = themekey_get_page_cache_support_desriptions();
$attributes = variable_get('themekey_attributes', array());
$form['themekey_help_properties'] = array(
'#type' => 'fieldset',
'#title' => t('Properties explained'),
'#collapsible' => TRUE,
'#collapsed' => $collapsed,
);
foreach ($attributes as $property => $attribute) {
$form['themekey_help_properties'][$property] = array(
'#type' => 'fieldset',
'#title' => $property,
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['themekey_help_properties'][$property]['item'] = array(
'#type' => 'item',
'#title' => t('Description'),
'#value' => '<div id="themekey-value-help-' . str_replace(array(
':',
'_',
), array(
'-',
'-',
), $property) . '" style="display: none">' . htmlentities(strip_tags($attribute['description'])) . '</div>' . $attribute['description'],
);
$form['themekey_help_properties'][$property]['page_cache'] = array(
'#type' => 'item',
'#title' => t('Page Cache'),
'#value' => '<div id="themekey-page-cache-' . str_replace(array(
':',
'_',
), array(
'-',
'-',
), $property) . '" style="display: none">' . theme('themekey_page_cache_icon', $attribute['page cache']) . '</div>' . $page_cache_support_desriptions[$attribute['page cache']],
);
}
return $form;
}