dxpr_theme-5.0.1/features/sooper-page-title/page_title-theme-settings-controller.inc
features/sooper-page-title/page_title-theme-settings-controller.inc
<?php
/**
* @file
* Applying theme page title settings.
*/
/**
* Process page title theme settings.
*
* @param array $variables
* Variables array for the html template.
*/
function page_title_theme_settings_controller(array &$variables) {
$page_title_animate = theme_get_setting('page_title_animate');
if ($page_title_animate) {
$variables['#attached']['library'][] = 'dxpr_theme/custom_animations';
}
}
