<?php 
        if (displetretsidx_use_listing_agent() || displetretsidx_use_listing_office()) {
            ?>
									<div class="<?php 
            displetretsidx_the_listing_courtesy_class();
            ?>
 displet-font-color-light">
										Courtesy of
										<span class="<?php 
            displetretsidx_the_listing_agent_container_class();
            ?>
 <?php 
            displetretsidx_the_listing_agent_class();
            ?>
 <?php 
            echo displetretsidx_is_listing_agent_name_emphasized() ? 'displet-font-color' : 'displet-font-color-light';
            ?>
">
											<?php 
            displetretsidx_the_listing_agent();
            ?>
										</span>
										<span class="<?php 
            displetretsidx_the_listing_office_container_class();
            ?>
 <?php 
            displetretsidx_the_listing_office_class();
            ?>
 <?php 
            echo displetretsidx_is_listing_office_name_emphasized() ? 'displet-font-color' : 'displet-font-color-light';
            ?>
		</tr>';
        }
        if (displetretsidx_has_list_date()) {
            $displet_pdp_other[] = '<tr class="displet-list-date">
			<td class="displet-detail-title">List Date:</td>
			<td class="displet-list-date-value">' . displetretsidx_get_list_date() . '</td>
		</tr>';
        }
        if (displetretsidx_has_price()) {
            $displet_pdp_other[] = '<tr class="displet-list-price">
			<td class="displet-detail-title">List Price:</td>
			<td class="displet-list-price-value">$' . displetretsidx_get_price() . '</td>
		</tr>';
        }
        if (displetretsidx_has_listing_agent_name()) {
            $bold = displetretsidx_is_listing_agent_name_emphasized() ? 'displet-emphasize displet-font-color' : '';
            $displet_pdp_other[] = '<tr class="displet-listing-agent-name">
			<td class="displet-detail-title">Listing Agent:</td>
			<td class="displet-listing-agent-name-value ' . $bold . '">' . displetretsidx_get_listing_agent_name() . '</td>
		</tr>';
        }
        if (displetretsidx_has_listing_agent_id()) {
            $bold = displetretsidx_is_listing_agent_id_emphasized() ? 'displet-emphasize displet-font-color' : '';
            $displet_pdp_other[] = '<tr class="displet-listing-agent-id">
			<td class="displet-detail-title">Listing Agent ID:</td>
			<td class="displet-listing-agent-id-value ' . $bold . '">' . displetretsidx_get_listing_agent_id() . '</td>
		</tr>';
        }
        if (displetretsidx_has_listing_office_name()) {
            $bold = displetretsidx_is_listing_office_name_emphasized() ? 'displet-emphasize displet-font-color' : '';
            $displet_pdp_other[] = '<tr class="displet-listing-office-name">
/**
 * @return: boolean
 */
function displetretsidx_is_listing_office_id_emphasized()
{
    return displetretsidx_is_listing_agent_name_emphasized();
}