LittleDemon WebShell


Linux premium274.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
Path : /home/whagcoha/bacohtcc.com/wp-content/plugins/estatik/includes/
File Upload :
Command :
Current File : /home/whagcoha/bacohtcc.com/wp-content/plugins/estatik/includes/entity-functions.php

<?php

/**
 * Check visible permissions for fb field or section.
 *
 * @param $fb_item array Section or Field config.
 * @param string $entity_name
 * @param string $context
 *
 * @return bool
 * @see es_property_get_field_info()
 */
function es_is_visible( $fb_item, $entity_name = 'property', $context = 'field' ) {
	$is_visible = true;

	if ( empty( $fb_item ) ) {
		$is_visible = false;
	} else {
		if ( $context == 'section' && es_is_entity_default_section_deactivated( $fb_item['machine_name'], $entity_name ) ) {
			$is_visible = false;
		} else if ( $context == 'field' && es_is_entity_default_field_deactivated( $fb_item['machine_name'], $entity_name ) ) {
			$is_visible = false;
		} else if ( isset( $fb_item['is_visible'] ) ) {
			if ( ! $fb_item['is_visible'] ) {
				$is_visible = false;
			} else {
				if ( ! empty( $fb_item['is_visible_for'] ) ) {
					$visible_for = maybe_unserialize( $fb_item['is_visible_for'] );

					if ( in_array( 'all_users', $visible_for ) ) {
						$is_visible = true;
					} else if ( in_array( 'admin', $visible_for ) && current_user_can('administrator') ) {
						$is_visible = true;
					} else if ( in_array( 'authenticated_users', $visible_for ) && is_user_logged_in() ) {
						$is_visible = true;
					} else {
						$is_visible = false;
					}
				}
			}
		}
	}

	return apply_filters( 'es_is_visible', $is_visible, $fb_item );
}

if ( ! function_exists( 'es_get_the_section_fields_html' ) ) {

	/**
	 * @param $section
	 * @param $post_id
	 *
	 * @return mixed|void
	 */
	function es_get_the_section_fields_html( $section, $post_id = 0 ) {
		$fb_instance = es_get_fields_builder_instance();
		$entity = es_get_entity_by_id( $post_id );
		$entity_name = $entity::get_entity_name();
		$fields = $fb_instance::get_section_fields( $section['machine_name'], $entity_name );
		$content = null;
		$need_terms_more_link = false;

        if ( ! empty( $section['frontend_action'] ) ) {
            ob_start();
            do_action( $section['frontend_action'], $post_id, $section );
            $content = ob_get_clean();
        } else if ( ! empty( $fields ) ) {
			ob_start();
            include es_locate_template( 'front/partials/entity-section-content.php' );
            $content = ob_get_clean();
		}

		if ( $section['machine_name'] == 'features' && $need_terms_more_link ) {
			$label = __( 'Show all amenities & features', 'es' ) . '<span class="es-icon es-icon_chevron-bottom"></span>';
			$toggle_label = __( 'Hide', 'es' ) . '<span class="es-icon es-icon_chevron-top"></span>';
			$content .= sprintf( "<a href='#' data-container='.es-property_section--features' 
                class='es-full-content-link es-secondary-color js-es-toggle-class' 
                data-toggle-label='%s'
                data-class='es-property_section--features--show-all'>%s</a>", esc_attr( $toggle_label ), $label );
		}

		return apply_filters( 'es_get_the_section_fields_html', $content, $section, $post_id );
	}
}

/**
 * @param $str
 *
 * @return string
 */
function es_create_slug_transliterator( $str ) {
	if ( preg_match('/^[a-zA-Z0-9_\-!?+\-]*$/', $str ) ) {
        return $str; 
    } else {
		return function_exists('transliterator_transliterate' ) ?
			transliterator_transliterate( "Any-Latin; NFD; [:Nonspacing Mark:] Remove; NFC; [:Punctuation:] Remove; Lower();", $str ) : $str;
    }
}

/**
 * @param $attachment_id int
 * @param $field string
 * @param $entity Es_Entity
 */
function es_entity_delete_attachment( $attachment_id, $field, $entity ) {
	$media_fields = wp_list_filter( es_get_entity_fields( $entity::get_entity_name() ), array( 'type' => 'media' ) );

	if ( ! empty( $media_fields ) ) {
		global $wpdb;
		$force_delete = true;
		delete_post_meta( $entity->get_id(), $entity->get_entity_prefix() . $field, $attachment_id );

		foreach ( $media_fields as $media_field => $config ) {
			if ( $force_delete ) {
				if ( $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->postmeta} WHERE meta_value='%s' AND meta_key='%s'", $attachment_id, $entity->get_entity_prefix() . $media_field ) ) ) {
					$force_delete = false;
				}
			}
		}

		if ( $force_delete ) {
			wp_delete_attachment( $attachment_id, true );
		}
	} else {
		wp_delete_attachment( $attachment_id, true );
	}
}

/**
 * @param $entity_name
 *
 * @return string
 */
function es_get_entity_plural_name( $entity_name ) {
	$plural = null;

	if ( $entity_name == 'property' ) {
		$plural = 'properties';
	}

	return apply_filters( 'es_get_entity_plural_name', $plural, $entity_name );
}

if ( ! function_exists( 'es_the_entity_share_popup' ) ) {

	/**
	 * Render shares popup.
	 *
	 * @return void
	 */
	function es_the_entity_share_popup() {
		$entity = es_get_entity_by_id( get_the_ID() );

		$labels = $entity::get_entity_labels();

        $singular = ! empty( $labels['singular'] ) ? $labels['singular'] : $entity::get_entity_name();
        $plural   = ! empty( $labels['plural'] )   ? $labels['plural']   : es_get_entity_plural_name( $entity::get_entity_name() );

        es_load_template( 'front/popup/share.php', array(
            'entity_plural' => $plural,
            'title' => sprintf( __( 'Share this %s', 'es' ), $singular ),
        ) );
	}
}
add_action( 'es_after_single_content', 'es_the_entity_share_popup' );

/**
 * @param $attachment_id
 * @param $entity_id
 *
 * @return mixed|string
 */
function es_get_image_alt( $attachment_id, $entity_id, $suffix = '' ) {
	$alt_text = wp_get_attachment_caption( $attachment_id );
	$alt_text = $alt_text ? $alt_text : get_the_title( $entity_id ) . $suffix;
	return apply_filters( 'es_get_image_alt', $alt_text, $attachment_id, $entity_id, $suffix );
}

LittleDemon - FACEBOOK
[ KELUAR ]