` * placeholder that keeps admin notices above the plugin UI, and a branded * header bar with links to documentation and support. The body content is * injected by the admin controller via the `{content}` and `{page}` tokens, * which are replaced with real values before the template is echoed. * * High-contrast mode is detected from the Complianz GDPR/CCPA plugin's * `high_contrast` setting (when available) and applied as an additional CSS * class on the root element to improve accessibility. * * @package Complianz_Terms_Conditions * @subpackage Templates * @author Complianz * @copyright 2023 Complianz.io * @license GPL-2.0-or-later * @link https://complianz.io * * @since 1.0.0 */ // Inherit the high-contrast CSS class from the Complianz GDPR/CCPA plugin when // it is active; fall back to an empty string so no extra class is added. if ( function_exists( 'cmplz_get_value' ) ) { $high_contrast = cmplz_get_value( 'high_contrast', false, 'settings' ) ? 'cmplz-high-contrast' : ''; } else { $high_contrast = ''; } ?>