| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/class-elementor-full-width-templates.php.tar |
vendor/codeinwp/full-width-page-templates/builders/class-elementor-full-width-templates.php 0000604 00000006250 15113512315 0043734 0 ustar 00 home/xbodynamge/crosstraining/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 Elementor {
/**
* @var Elementor
*/
public static $instance = null;
protected function init(){
// for the blank template
add_action( 'fwpt_blank_before_content', array( $this, 'render_blank_before_content' ) );
add_action( 'fwpt_blank_content', array( $this, 'render_content' ) );
add_action( 'fwpt_blank_after_content', array( $this, 'render_blank_after_content' ) );
// 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' ) );
// @TODO We should move this into a function to keep compat?
add_action( 'elementor_page_elements', array( $this, 'elementor_page_content' ), 20 );
}
/**
* Display the WordPress loop
*/
public function render_content() {
while ( have_posts() ) : the_post();
do_action( 'elementor_page_elements' ); // Give your elements priorities so that they hook in the right place.
endwhile;
}
/**
* Display the header of the Blank template
*/
public function render_blank_before_content() {
do_action( 'elementor_content_body_before' );
do_action( 'elementor_before_content_wrapper' );
}
/**
* Display the footer of the blank template
*/
public function render_blank_after_content() {
do_action( 'elementor_after_content_wrapper' );
do_action( 'elementor_content_body_after' );
}
/**
* Display the header of the standard template
*/
public function render_std_before_content() {
get_header();
do_action( 'elementor_before_content_wrapper' );
}
/**
* Display the footer of the standard template
*/
public function render_std_after_content() {
do_action( 'elementor_after_content_wrapper' );
get_footer();
}
// @TODO We should move this into a function to keep compat?
function elementor_page_content() {
the_content();
}
/**
* @static
* @since 1.0.0
* @access public
* @return Elementor
*/
public static function instance() {
if ( is_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' );
}
} vendor/codeinwp/full-width-page-templates/builders/class-elementor-full-width-templates.php 0000644 00000006250 15115655154 0041644 0 ustar 00 home/xbodynamge/dev/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 Elementor {
/**
* @var Elementor
*/
public static $instance = null;
protected function init(){
// for the blank template
add_action( 'fwpt_blank_before_content', array( $this, 'render_blank_before_content' ) );
add_action( 'fwpt_blank_content', array( $this, 'render_content' ) );
add_action( 'fwpt_blank_after_content', array( $this, 'render_blank_after_content' ) );
// 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' ) );
// @TODO We should move this into a function to keep compat?
add_action( 'elementor_page_elements', array( $this, 'elementor_page_content' ), 20 );
}
/**
* Display the WordPress loop
*/
public function render_content() {
while ( have_posts() ) : the_post();
do_action( 'elementor_page_elements' ); // Give your elements priorities so that they hook in the right place.
endwhile;
}
/**
* Display the header of the Blank template
*/
public function render_blank_before_content() {
do_action( 'elementor_content_body_before' );
do_action( 'elementor_before_content_wrapper' );
}
/**
* Display the footer of the blank template
*/
public function render_blank_after_content() {
do_action( 'elementor_after_content_wrapper' );
do_action( 'elementor_content_body_after' );
}
/**
* Display the header of the standard template
*/
public function render_std_before_content() {
get_header();
do_action( 'elementor_before_content_wrapper' );
}
/**
* Display the footer of the standard template
*/
public function render_std_after_content() {
do_action( 'elementor_after_content_wrapper' );
get_footer();
}
// @TODO We should move this into a function to keep compat?
function elementor_page_content() {
the_content();
}
/**
* @static
* @since 1.0.0
* @access public
* @return Elementor
*/
public static function instance() {
if ( is_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' );
}
}