Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
jsarnowski/oxygen / components / layouts / innercontent.php
Size: Mime:
<?php
	// TODO review the security aspect
	if (!is_user_logged_in() || !oxygen_vsb_current_user_can_access()) {
	    die();
		}

	$nonce  	= $_REQUEST['nonce'];
	$post_id 	= $_REQUEST['post_id'];

	// check nonce
	if ( ! wp_verify_nonce( $nonce, 'oxygen-nonce-' . $post_id ) ) {
	    // This nonce is not valid.
	    die( 'Security check' );
	}

	global $post;
	// if we set it to an array containing keys as the selective class names, only the css of those classes will be rendered

	ob_start();

	$ct_render_post_using = get_post_meta( $post->ID, 'ct_render_post_using', true );
	$ct_use_inner_content = get_post_meta( $post->ID, 'ct_use_inner_content', true );

	$shortcodes = get_post_meta( $post->ID, 'ct_builder_shortcodes', true );
	
	if (!$shortcodes || ((!$ct_render_post_using && $ct_render_post_using == 'custom_template') && (! $ct_use_inner_content || $ct_use_inner_content == 'content' ))) {

	    // Use WordPress post content as inner content
	    // RENDER default content

		// find the template that has been assigned to innercontent
		$template = ct_get_inner_content_template();

		if($template) {
			$shortcodes = get_post_meta($template->ID, 'ct_builder_shortcodes', true);
		}

		if($shortcodes) {
			echo ct_do_shortcode($shortcodes);
		}
		else {
			if(function_exists('is_woocommerce') && is_woocommerce()) {
				woocommerce_content();
				?>
				<script type="text/javascript">
					jQuery('body').addClass('woocommerce');
				</script>
				<style>
					.woocommerce-product-gallery {
						opacity: 1 !important;
					}

					.woocommerce-Tabs-panel:not(:nth-child(2)) {
						display: none;
					}

				</style>
				<?php
			}
			else {
		        while ( have_posts() ) {
		            the_post();
		            the_content();
		        }
		    }
		}
    } else if($shortcodes) {

    	// obfuscate any oxy conditions, dynamic data
	    $shortcodes = ct_obfuscate_shortcode($shortcodes);

		if( class_exists('Oxygen_Gutenberg') && get_post_meta( $post->ID, 'ct_oxygenberg_full_page_block', true ) == '1' ) {
			$shortcodes = do_blocks( $post->post_content );
		}

    	// Use Oxygen designed inner content
    	echo do_shortcode($shortcodes);	    
    }


    $content = ob_get_clean();

    
    if(empty($content)) {
    	the_content();
    } else {
    	echo $content;


?>
<style>
<?php
	remove_action("ct_footer_styles", "ct_css_styles"); // we do not need default css styles or classes being rendered here
	do_action("ct_footer_styles");
?>
</style>
<?php

	}