16 lines
274 B
PHP
16 lines
274 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @file
|
||
|
* Add custom theme settings to the ZURB Foundation sub-theme.
|
||
|
*/
|
||
|
|
||
|
use Drupal\Core\Form\FormStateInterface;
|
||
|
|
||
|
/**
|
||
|
* Implements hook_form_FORM_ID_alter().
|
||
|
*/
|
||
|
function peceful_form_system_theme_settings_alter(&$form, FormStateInterface $form_state) {
|
||
|
|
||
|
}
|