HEX
Server: LiteSpeed
System: Linux server315.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: globfdxw (6114)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/globfdxw/public_html/wp-content/plugins/wpforms-pdf/templates/pdf/document-sidebar.php
<?php
/**
 * PDF: Document Sidebar template.
 *
 * @since 1.0.0
 *
 * @var array  $appearance Appearance options.
 * @var array  $theme      Theme data.
 * @var string $content    Content.
 * @var array  $texts      Text elements.
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped
?>
<style>
	body, table, h1, h2, h3, h4, h5, h6, p, td, th, a {
		font-family: <?php echo $appearance['font']; ?>;
	}

	.page-background {
		background: <?php echo $appearance['page_background_color']; ?>;
	}

	.container-background-fill {
		background: <?php echo $appearance['container_background_color']; ?>;
		border-style: <?php echo $appearance['container_border_style']; ?>;
		border-width: <?php echo $appearance['container_border_size']; ?>;
		border-radius: <?php echo $appearance['container_border_radius']; ?>;
		border-color: <?php echo $appearance['container_border_color']; ?>;
	}

	.header .divider {
		background-color: <?php echo $appearance['text_color']; ?>;
	}

	.header .header_address {
		color: <?php echo $texts['header_address_color']; ?>;
		font-family: <?php echo $appearance['font']; ?>;
	}

	.header .header_address_2 {
		color: <?php echo $texts['header_address_2_color']; ?>;
		font-family: <?php echo $appearance['font']; ?>;
	}

	.header .header_email {
		color: <?php echo $texts['header_email_color']; ?>;
		font-family: <?php echo $appearance['font']; ?>;
	}

	.header .header_phone {
		color: <?php echo $texts['header_phone_color']; ?>;
		font-family: <?php echo $appearance['font']; ?>;
	}

	.header .heading_1 {
		color: <?php echo $texts['heading_1_color']; ?>;
		font-family: <?php echo $appearance['font']; ?> !important;
	}

	.header .paragraph_1, .header .paragraph_1 * {
		color: <?php echo $texts['paragraph_1_color']; ?>;
	}

	.content, .content * {
		color: <?php echo $texts['content_color']; ?>;
		font-size: <?php echo $appearance['font_size']; ?>;
		font-family: <?php echo $appearance['font']; ?>;
	}

	.content a {
		color: <?php echo $theme['accent']; ?>;
	}

</style>

<?php

// PDF requires tuning for each page.
if ( empty( $is_preview ) ) {
	require WPFORMS_PDF_PATH . 'templates/pdf/tuning/document.php';
}

require WPFORMS_PDF_PATH . 'templates/pdf/elements/background.php';
?>

<div class="container-sidebar">
	<div class="header sidebar" data-align="<?php echo $appearance['logo_position']; ?>">
		<div class="logo-container"
			data-size="<?php echo $appearance['logo_size']; ?>"
			data-logo="<?php echo $appearance['logo_url'] ? '1' : ''; ?>">
			<img class="logo" src="<?php echo $appearance['logo_url']; ?>" alt="Logo">
		</div>

		<div class="business-info">
			<div class="header_address">
				<?php echo $texts['header_address']; ?>
			</div>
			<div class="header_address_2">
				<?php echo $texts['header_address_2']; ?>
			</div>
			<div class="header_email">
				<a href="mailto:<?php echo $texts['header_email']; ?>"><?php echo $texts['header_email']; ?></a>
			</div>
			<div class="header_phone">
				<a href="tel:<?php echo $texts['header_phone']; ?>"><?php echo $texts['header_phone']; ?></a>
			</div>
		</div>

		<div class="divider"></div>

		<div class="heading_1">
			<?php echo $texts['heading_1']; ?>
		</div>
		<div class="paragraph_1">
			<?php echo $texts['paragraph_1']; ?>
		</div>
	</div>

	<div class="container-content">
		<div class="content">
			<?php echo $content; ?>
		</div>
	</div>
</div>