-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* change color of template subtitles (#760) * resolve missing tags in saveHTML() (#759) * change logic for determining base template with SI (#762) * change logic for determining base template with SI * add return false; * move filters to 3rd party Sprout Invoices class * Issue 741 (#761) * set widget link hover to match body link hover * fix linting issues * fix link preview * update version for RC * Update package.json * Update boldgrid-theme-framework.php * Update README.md
- Loading branch information
1 parent
fe7dd11
commit 3f66d2b
Showing
11 changed files
with
194 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* Plugin Name: BoldGrid Theme Framework | ||
* Plugin URI: https://www.boldgrid.com/docs/configuration-file | ||
* Description: BoldGrid Theme Framework is a library that allows you to easily make BoldGrid themes. Please see our reference guide for more information: https://www.boldgrid.com/docs/configuration-file | ||
* Version: 2.17.1 | ||
* Version: 2.17.2 | ||
* Author: BoldGrid.com <[email protected]> | ||
* Author URI: https://www.boldgrid.com/ | ||
* Text Domain: bgtfw | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
121 changes: 121 additions & 0 deletions
121
src/includes/third-party/class-boldgrid-framework-sprout-invoices.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
<?php | ||
/** | ||
* File: class-boldgrid-framework-sprout-invoices.php | ||
* | ||
* This class is responsible for adding Sprout Invoices support to the BoldGrid Framework. | ||
* | ||
* @package Boldgrid_Framework | ||
* | ||
* @since 2.17.2 | ||
*/ | ||
|
||
/** | ||
* Class: Boldgrid_Framework_Sprout_Invoices | ||
* | ||
* This class is responsible for adding Sprout Invoices support to the BoldGrid Framework. | ||
* | ||
* @since 2.17.2 | ||
*/ | ||
class Boldgrid_Framework_Sprout_Invoices { | ||
/** | ||
* Add hooks. | ||
* | ||
* @since 2.17.2 | ||
*/ | ||
public static function add_hooks() { | ||
add_filter( 'bgtfw_wrapper_templates', array( __CLASS__, 'bgtfw_wrapper_templates' ), 10, 3 ); | ||
} | ||
|
||
/** | ||
* BGTFW Wrapper Templates. | ||
* | ||
* Adjusts the templates used when various sprout invoices pages are loaded. | ||
* | ||
* @since 2.17.2 | ||
*/ | ||
public static function bgtfw_wrapper_templates( $templates, $base, $main_template ) { | ||
|
||
if ( self::is_si_pdf( $base, $main_template ) ) { | ||
$templates = array( 'si-pdf-base.php' ); | ||
} elseif ( self::is_si_invoice() ) { | ||
$templates = array( 'si-invoice-base.php' ); | ||
} elseif ( self::is_si_estimate() ) { | ||
$templates = array( 'si-estimate-base.php' ); | ||
} | ||
|
||
return $templates; | ||
} | ||
|
||
/** | ||
* Is this page an SI invoice? | ||
* | ||
* Determines if a page is a Sprout Invoices invoice | ||
* based on the SI_Invoice::is_invoice_query() method. | ||
* | ||
* @since 2.17.2 | ||
* | ||
* @return boolean | ||
*/ | ||
public static function is_si_invoice() { | ||
if ( class_exists( 'SI_Invoice' ) ) { | ||
return SI_Invoice::is_invoice_query(); | ||
} else { | ||
return false; | ||
} | ||
} | ||
|
||
/** | ||
* Is this page an SI estimate? | ||
* | ||
* @since 2.17.2 | ||
* | ||
* @return boolean | ||
*/ | ||
public static function is_si_estimate() { | ||
global $post; | ||
|
||
if ( ! empty( $post ) && class_exists( 'SI_Invoice' ) ) { | ||
return 'sa_estimate' === $post->post_type; | ||
} else { | ||
return false; | ||
} | ||
} | ||
|
||
/** | ||
* Is this page an SI PDF? | ||
* | ||
* @since 2.17.2 | ||
* | ||
* @return boolean | ||
*/ | ||
public static function is_si_pdf( $base, $main_template ) { | ||
global $post; | ||
|
||
// If Sprout is not active, we won't be viewing a sprout pdf. | ||
if ( ! class_exists( 'SI_Invoice' ) ) { | ||
return false; | ||
} | ||
|
||
// When viewing the sprout invoice, these two variables are always set. | ||
if ( ! $base || ! isset( $main_template ) ) { | ||
return false; | ||
} | ||
|
||
// If template doesn't contain 'sprout-invoices' in it's path, it's not a sprout pdf. | ||
if ( false === strpos( $main_template, 'sprout-invoices' ) ) { | ||
return false; | ||
} | ||
|
||
// At this point, we know its a sprout page. If it's a pdf redirected page, we know it's a pdf. | ||
if ( isset( $_SERVER['REDIRECT_QUERY_STRING'] ) && 'pdf=1' === $_SERVER['REDIRECT_QUERY_STRING'] ) { | ||
return true; | ||
} | ||
|
||
// If the base name contians '-pdf', then it's a sprout pdf. | ||
if ( false !== strpos( $base, '-pdf' ) ) { | ||
return true; | ||
} | ||
|
||
return false; | ||
} | ||
} |