This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/vendor/chi-teck/drupal-code-generator/templates/d8/theme-settings-form.twig

28 lines
543 B
Twig
Raw Normal View History

2018-11-23 12:29:20 +00:00
<?php
/**
* @file
* Theme settings form for {{ name }} theme.
*/
/**
* Implements hook_form_system_theme_settings_alter().
*/
function {{ machine_name }}_form_system_theme_settings_alter(&$form, &$form_state) {
$form['{{ machine_name }}'] = [
'#type' => 'details',
'#title' => t('{{ name }}'),
'#open' => TRUE,
];
$form['{{ machine_name }}']['font_size'] = [
'#type' => 'number',
'#title' => t('Font size'),
'#min' => 12,
'#max' => 18,
'#default_value' => theme_get_setting('font_size'),
];
}