| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/class-none-full-width-templates.php.tar |
vendor/codeinwp/full-width-page-templates/builders/class-none-full-width-templates.php 0000644 00000004031 15115062623 0042477 0 ustar 00 home/xbodynamge/lebauwcentre/wp-content/plugins/themeisle-companion <?php
/**
* Class ThemeIsle\FullWidthTemplates\Elementor
*
* @package ThemeIsle\FullWidthTemplates\Elementor
* @copyright Copyright (c) 2017, Andrei Lupu
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
* @since 1.0.0
*/
namespace ThemeIsle\FullWidthTemplates;
class None {
/**
* @var Elementor
*/
public static $instance = null;
protected function init(){
// for the standard template
add_action( 'fwpt_std_content', array( $this, 'render_content' ) );
add_action( 'fwpt_std_before_content', array( $this, 'render_std_before_content' ) );
add_action( 'fwpt_std_after_content', array( $this, 'render_std_after_content' ) );
}
/**
* Display the WordPress loop
*/
public function render_content() {
while ( have_posts() ) : the_post();
the_content();
endwhile;
}
/**
* Display the header of the standard template
*/
public function render_std_before_content() {
get_header();
}
/**
* Display the footer of the standard template
*/
public function render_std_after_content() {
get_footer();
}
/**
* @static
* @since 1.0.0
* @access public
* @return Elementor
*/
public static function instance() {
if ( null === self::$instance ) {
self::$instance = new self();
self::$instance->init();
}
return self::$instance;
}
/**
* Throw error on object clone
*
* The whole idea of the singleton design pattern is that there is a single
* object therefore, we don't want the object to be cloned.
*
* @access public
* @since 1.0.0
* @return void
*/
public function __clone() {
// Cloning instances of the class is forbidden.
_doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'themeisle-companion' ), '1.0.0' );
}
/**
* Disable unserializing of the class
*
* @access public
* @since 1.0.0
* @return void
*/
public function __wakeup() {
// Unserializing instances of the class is forbidden.
_doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'themeisle-companion' ), '1.0.0' );
}
}