whoami7 - Manager
:
/
home
/
qbizpnmr
/
public_html
/
wp-content
/
themes
/
crio
/
Upload File:
files >> /home/qbizpnmr/public_html/wp-content/themes/crio/si-pdf-base.php
<?php /** * File: pdf.php * * This file is used when sprout invoices generates a pdf. * * @since 2.0 * @package Crio */ global $post; if ( ! empty( $post ) && class_exists( 'SI_Invoice' ) ) { $is_sa_invoice = SI_Invoice::is_invoice_query(); $is_sa_estimate = 'sa_estimate' === $post->post_type; } else { $is_sa_invoice = false; $is_sa_estimate = false; } if ( $is_sa_estimate ) { $template = SI_Templating_API::override_template( 'estimate' ); load_template( $template ); } elseif ( $is_sa_invoice ) { $template = SI_Templating_API::override_template( 'invoice' ); load_template( $template ); }
Copyright ©2021 || Defacer Indonesia