Files
medicalalert-web-reloaded/wp/wp-content/plugins/divi-builder/theme-compat/class-et-builder-theme-compat-portfolio-press.php
Tony Volpe 4eb982d7a8 Merged in feature/from-pantheon (pull request #16)
code from pantheon

* code from pantheon
2024-01-10 17:03:02 +00:00

103 lines
1.9 KiB
PHP

<?php
/**
* ET_Builder_Theme_Compat_Portfolio_Press class file.
*
* @class ET_Builder_Theme_Compat_Portfolio_Press
* @package Divi Builder
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Theme Compatibility for Portfolio Press theme.
*
* @see https://wordpress.org/themes/portfolio-press/
*
* @since ??
*/
class ET_Builder_Theme_Compat_Portfolio_Press {
/**
* Unique instance of class.
*
* @since ??
*
* @var ET_Builder_Theme_Compat_Portfolio_Press
*/
public static $instance;
/**
* Constructor.
*
* @since ??
*/
private function __construct() {
$this->init_hooks();
}
/**
* Gets the instance of the class.
*
* @since ??
*/
public static function init() {
if ( null === self::$instance ) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Hook methods to WordPress.
*
* @since ??
*/
public function init_hooks() {
$theme = wp_get_theme();
$version = isset( $theme['Version'] ) ? $theme['Version'] : false;
// Bail if no theme version found.
if ( ! $version ) {
return;
}
// Fix missing theme page container when TB is enabled.
add_action( 'et_theme_builder_template_after_header', array( $this, 'theme_builder_after_header' ) );
add_action( 'et_theme_builder_template_before_footer', array( $this, 'theme_builder_before_footer' ) );
}
/**
* Display theme opening container.
*
* Provide the opening container tag only to ensure TB layout works smoothly.
*
* @since ??
*/
public function theme_builder_after_header() {
?>
<div id="page">
<div id="main">
<div class="col-width">
<?php
}
/**
* Display theme closing container.
*
* Provide the closing container tag only to ensure TB layout works smoothly.
*
* @since ??
*/
public function theme_builder_before_footer() {
?>
</div>
</div><!-- #main -->
</div><!-- #page -->
<?php
}
}
ET_Builder_Theme_Compat_Portfolio_Press::init();