晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。   林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。   见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝)   既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。   南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。 .
Prv8 Shell
Server : Apache
System : Linux srv.rainic.com 4.18.0-553.47.1.el8_10.x86_64 #1 SMP Wed Apr 2 05:45:37 EDT 2025 x86_64
User : rainic ( 1014)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/rainic/www/oldTZh/wp-content/themes/betheme/visual-builder/partials/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/rainic/www/oldTZh/wp-content/themes/betheme/visual-builder/partials/modal-conditions.php
<!-- modal: template display conditions -->

<div class="mfn-modal has-footer modal-display-conditions">

	<div class="mfn-modalbox mfn-form mfn-form-verical mfn-shadow-1">

		<div class="modalbox-header">

			<div class="options-group">
				<div class="modalbox-title-group">
					<span class="modalbox-icon mfn-icon-shop"></span>
					<div class="modalbox-desc">
						<h4 class="modalbox-title"><?php esc_html_e('Display Conditions', 'mfn-opts'); ?></h4>
					</div>
				</div>
			</div>

			<div class="options-group">
				<a class="mfn-option-btn mfn-option-blank btn-large btn-modal-close" title="Close" href="#">
					<span class="mfn-icon mfn-icon-close"></span>
				</a>
			</div>

		</div>

		<div class="modalbox-content">
			<span class="mfn-icon display-conditions"></span>
			<h3><?php esc_html_e('Where Do You Want to Display Your Template?', 'mfn-opts'); ?></h3>
			<p><?php _e('Set the conditions that determine where your Template is used throughout your site.<br>For example, choose \'Entire Site\' to display the template across your site.', 'mfn-opts'); ?></p>

			<?php $conditions = (array) json_decode( get_post_meta($this->post_id, 'mfn_template_conditions', true) ); ?>

			<form id="tmpl-conditions-form">
			<div class="mfn-dynamic-form mfn-form">

				<?php

				if( $this->template_type && (strpos($this->template_type, 'archive-') !== false || strpos($this->template_type, 'single-') !== false) ):

				$post_type = 'post';
				$everywhere_label = 'All posts';

				if( $this->template_type == 'archive-product' ) {
					$post_type = 'product';
					$everywhere_label = 'Shop';
				}
				if( $this->template_type == 'archive-post' ) {
					$post_type = 'post';
					$everywhere_label = 'All archives';
				}
				if( strpos($this->template_type, 'archive-') !== false ) {
					$post_type = str_replace('archive-', '', $this->template_type);
					$everywhere_label = 'All archives';
				}
				if( strpos($this->template_type, 'single-') !== false ) { 
					$post_type = str_replace('single-', '', $this->template_type);
					$everywhere_label = 'All posts';
				}
				$taxonomies = get_object_taxonomies($post_type, 'objects');
				$excludes = array('post_format', 'product_type', 'product_visibility', 'product_shipping_class', 'elementor_library_category', 'elementor_library_type', 'link_category', 'nav_menu', 'wp_pattern_category', 'wp_template_part_area', 'wp_theme');

				foreach($excludes as $ex) {
					if( isset($taxonomies[$ex]) ) unset($taxonomies[$ex]);
				}

				if( isset($conditions) && count($conditions) > 0){ $x = 0; foreach($conditions as $c=>$cond) { 
					if( $cond->var == 'productcategory' ) {
						$cond->var = 'product_cat';
					}
					if( $cond->var == 'producttag' ) {
						$cond->var = 'product_tag';
					}
				?>
				<div class="mfn-df-row">
					<div class="df-row-inputs">
						<select name="mfn_template_conditions[<?php echo $x; ?>][rule]" class="mfn-form-control mfn-form-select df-input df-input-rule <?php if($cond->rule == 'exclude'){ echo 'minus'; } ?>">
							<option <?php if($cond->rule == 'include'){ echo 'selected'; } ?> value="include"><?php esc_html_e('Include', 'mfn-opts'); ?></option>
							<option <?php if($cond->rule == 'exclude'){ echo 'selected'; } ?> value="exclude"><?php esc_html_e('Exclude', 'mfn-opts'); ?></option>
						</select>
						<select name="mfn_template_conditions[<?php echo $x; ?>][var]" class="mfn-form-control mfn-form-select df-input df-input-var">
							<option <?php if($cond->var == 'all'){ echo 'selected'; } ?> value="all"><?php esc_html_e($everywhere_label, 'mfn-opts'); ?></option>
							<?php if( !empty($taxonomies) ) {
								foreach($taxonomies as $t=>$tax) {
									if( !empty($tax->public) ) echo '<option '.( $cond->var == $tax->name ? 'selected' : '' ).' value="'.$tax->name.'">'.$tax->label.'</option>';
								}
							} ?>
						</select>
						<?php if( !empty($taxonomies) ) {
							foreach($taxonomies as $t=>$tax) {
								if( !empty($tax->public) ) {

									$terms = get_terms([ 'taxonomy' => $tax->name, 'hide_empty' => false, 'number' => 150 ]);
									echo '<select name="mfn_template_conditions['.$x.']['.$tax->name.']" class="mfn-form-control mfn-form-select df-input df-input-opt df-input-'.$tax->name.' '.( $cond->var == $tax->name ? 'show' : '' ).'">
									<option value="all">All</option>';
									if( !empty($terms) ){
										foreach($terms as $term){
											if( $tax->name == 'product_cat' ){
												echo '<option '. ( (isset($cond->{$tax->name}) && $cond->{$tax->name} == $term->term_id) || (isset($cond->productcategory) && $cond->productcategory == $term->term_id) ? 'selected' : '') .' value="'.$term->term_id.'">'.$term->name.'</option>';
											}else if( $tax->name == 'product_tag' ){
												echo '<option '. ( (isset($cond->{$tax->name}) && $cond->{$tax->name} == $term->term_id) || (isset($cond->producttag) && $cond->producttag == $term->term_id) ? 'selected' : '') .' value="'.$term->term_id.'">'.$term->name.'</option>';
											}else{
												echo '<option '. (isset($cond->{$tax->name}) && $cond->{$tax->name} == $term->term_id ? 'selected' : '') .' value="'.$term->term_id.'">'.$term->name.'</option>';
											}
										}
									}
									echo '</select>';
								}
							}
						} ?>
					</div>
					<a class="mfn-option-btn mfn-option-blank btn-large df-remove" title="Close" href="#"><span class="mfn-icon mfn-icon-close"></span></a>
				</div>
				<?php $x++; }} ?>

				<div class="mfn-df-row clone">
					<div class="df-row-inputs">
						<select data-name="mfn_template_conditions[0][rule]" class="mfn-form-control mfn-form-select df-input df-input-rule">
							<option value="include"><?php esc_html_e('Include', 'mfn-opts'); ?></option>
							<option value="exclude"><?php esc_html_e('Exclude', 'mfn-opts'); ?></option>
						</select>
						<select data-name="mfn_template_conditions[0][var]" class="mfn-form-control mfn-form-select df-input df-input-var">
							<option value="all"><?php esc_html_e($everywhere_label, 'mfn-opts'); ?></option>
							<?php if( !empty($taxonomies) ) {
								foreach($taxonomies as $t=>$tax) {
									if( !empty($tax->public) ) echo '<option value="'.$tax->name.'">'.$tax->label.'</option>';
								}
							} ?>
						</select>
						<?php if( !empty($taxonomies) ) {
							foreach($taxonomies as $t=>$tax) {
								if( !empty($tax->public) ) {
									$terms = get_terms([ 'taxonomy' => $tax->name, 'hide_empty' => false, 'number' => 150 ]);
									echo '<select data-name="mfn_template_conditions[0]['.$tax->name.']" class="mfn-form-control mfn-form-select df-input df-input-opt df-input-'.$tax->name.'">
									<option value="all">All</option>';
									if( !empty($terms) ){
										foreach($terms as $term){
											echo '<option value="'.$term->term_id.'">'.$term->name.'</option>';
										}
									}
									echo '</select>';
								}
							}
						} ?>
					</div>
					<a class="mfn-option-btn mfn-option-blank btn-large df-remove" title="Close" href="#"><span class="mfn-icon mfn-icon-close"></span></a>
				</div>

				<?php else: 

				$mfn_cond_terms = mfn_get_posttypes('tax');
				/*echo '<pre>';
				print_r($mfn_cond_terms);
				echo '</pre>';*/

				?>

				<?php if( isset($conditions) && count($conditions) > 0){ $x = 0; foreach($conditions as $c=>$cond){ ?>
					<div class="mfn-df-row">
					<div class="df-row-inputs">
						<select name="mfn_template_conditions[<?php echo $x; ?>][rule]" class="mfn-form-control mfn-form-select df-input df-input-rule <?php if($cond->rule == 'exclude'){ echo 'minus'; } ?>">
							<option <?php if($cond->rule == 'include'){ echo 'selected'; } ?> value="include"><?php esc_html_e('Include', 'mfn-opts'); ?></option>
							<option <?php if($cond->rule == 'exclude'){ echo 'selected'; } ?> value="exclude"><?php esc_html_e('Exclude', 'mfn-opts'); ?></option>
						</select>
						<select name="mfn_template_conditions[<?php echo $x; ?>][var]" class="mfn-form-control mfn-form-select df-input df-input-var">
							<option <?php if($cond->var == 'everywhere'){ echo 'selected'; } ?> value="everywhere"><?php esc_html_e('Entire Site', 'mfn-opts'); ?></option>
							<option <?php if($cond->var == 'archives'){ echo 'selected'; } ?> value="archives"><?php esc_html_e('Archives', 'mfn-opts'); ?></option>
							<option <?php if($cond->var == 'singular'){ echo 'selected'; } ?> value="singular"><?php esc_html_e('Singular', 'mfn-opts'); ?></option>
							<option <?php if($cond->var == 'other'){ echo 'selected'; } ?> value="other"><?php esc_html_e('Other', 'mfn-opts'); ?></option>
						</select>
						<select name="mfn_template_conditions[<?php echo $x; ?>][archives]" class="mfn-form-control mfn-form-select df-input df-input-opt df-input-archives <?php if($cond->var == 'archives') {echo 'show';} ?>">
							<?php if(count($mfn_cond_terms) > 0): foreach($mfn_cond_terms as $s=>$item){
								if( is_array($item) && $item['items'] ){
									echo '<optgroup label="'.$item['label'].'">';
									echo '<option '.( !empty($cond->archives) && $cond->archives == $s ? "selected" : null ).' value="'.$s.'">'.esc_html__('All', 'mfn-opts').'</option>';
									if( is_iterable($item['items']) ){
										foreach($item['items'] as $opt){
											echo '<option '.( !empty($cond->archives) && $cond->archives == $s.':'.$opt->id ? "selected" : null ).' value="'.$s.':'.$opt->id.'">'.$opt->name.'</option>';
										}
									}
									echo '</optgroup>';
								}elseif( !is_array($item) ){
									echo '<option '.( !empty($cond->archives) && $cond->archives == $s ? "selected" : null ).' value="'.$s.'">'.$item.'</option>';
								}
							} endif; ?>
						</select>
						<select name="mfn_template_conditions[<?php echo $x; ?>][singular]" class="mfn-form-control mfn-form-select df-input df-input-opt df-input-singular <?php if($cond->var == 'singular') {echo 'show';} ?>">
							<?php 
							if(count($mfn_cond_terms) > 0): foreach($mfn_cond_terms as $s=>$item){
								if( is_array($item) ){
									echo '<optgroup label="'.$item['label'].'">';
									echo '<option '.( !empty($cond->singular) && $cond->singular == $s ? "selected" : null ).' value="'.$s.'">'.esc_html__('All', 'mfn-opts').'</option>';
									/*if( $s == 'page' ){
										echo '<option '.( !empty($cond->singular) && $cond->singular == "front-page" ? "selected" : null ).' value="front-page">Front page</option>';
									}*/
									if( is_array($item) && $item['items'] ){
										if( is_iterable($item['items']) ){
											foreach( $item['items'] as $opt){
												echo '<option '.( !empty($cond->singular) && $cond->singular == $s.':'.$opt->id ? "selected" : null ).' value="'.$s.':'.$opt->id.'">'.$opt->name.'</option>';
											}
										}
										
									}
									echo '</optgroup>';
								}else{
									echo '<option '.( !empty($cond->singular) && $cond->singular == $s ? "selected" : null ).' value="'.$s.'">'.$item.'</option>';
								}
							} endif; ?>
						</select>
						<select name="mfn_template_conditions[<?php echo $x; ?>][other]" class="mfn-form-control mfn-form-select df-input df-input-opt df-input-other <?php if($cond->var == 'other') {echo 'show';} ?>">
							<?php 
							echo '<option '.( !empty($cond->other) && $cond->other == 'search-page' ? "selected" : null ).' value="search-page">'.esc_html__('Search page', 'mfn-opts').'</option>';
							?>
						</select>
					</div>
					<a class="mfn-option-btn mfn-option-blank btn-large df-remove" title="Close" href="#"><span class="mfn-icon mfn-icon-close"></span></a>
				</div>
				<?php $x++; }} ?>

				<div class="mfn-df-row clone df-type-tmpl-part">
					<div class="df-row-inputs">
						<select data-name="mfn_template_conditions[0][rule]" class="mfn-form-control mfn-form-select df-input df-input-rule">
							<option value="include"><?php esc_html_e('Include', 'mfn-opts'); ?></option>
							<option value="exclude"><?php esc_html_e('Exclude', 'mfn-opts'); ?></option>
						</select>
						<select data-name="mfn_template_conditions[0][var]" class="mfn-form-control mfn-form-select df-input df-input-var">
							<option value="everywhere"><?php esc_html_e('Entire Site', 'mfn-opts'); ?></option>
							<option value="archives"><?php esc_html_e('Archives', 'mfn-opts'); ?></option>
							<option value="singular"><?php esc_html_e('Singular', 'mfn-opts'); ?></option>
							<option value="other"><?php esc_html_e('Other', 'mfn-opts'); ?></option>
						</select>
						<select data-name="mfn_template_conditions[0][archives]" class="mfn-form-control mfn-form-select df-input df-input-opt df-input-archives">
							<?php if(count($mfn_cond_terms) > 0): foreach($mfn_cond_terms as $s=>$item){
								if( is_array($item) && $item['items'] ) {
									echo '<optgroup label="'.$item['label'].'">';
									echo '<option value="'.$s.'">'.esc_html__('All', 'mfn-opts').'</option>';
									if( is_iterable($item['items']) ) {
										foreach($item['items'] as $opt) {
											echo '<option value="'.$s.':'.$opt->id.'">'.$opt->name.'</option>';
										}
									}
									echo '</optgroup>';
								}elseif( !is_array($item) ){
									echo '<option value="'.$s.'">'.$item.'</option>';
								}
							} endif; ?>
						</select>
						<select data-name="mfn_template_conditions[0][singular]" class="mfn-form-control mfn-form-select df-input df-input-opt df-input-singular">
							<?php 
							if(count($mfn_cond_terms) > 0): foreach($mfn_cond_terms as $s=>$item) {
								if( is_array($item) ) {
									echo '<optgroup label="'.$item['label'].'">';
									echo '<option value="'.$s.'">'.esc_html__('All', 'mfn-opts').'</option>';
									/*if( $s == 'page' ){
										echo '<option value="front-page">Front page</option>';
									}*/
									if( is_array($item) && $item['items'] ) {
										if( is_iterable($item['items']) ) {
											foreach( $item['items'] as $opt) {
												echo '<option value="'.$s.':'.$opt->id.'">'.$opt->name.'</option>';
											}
										}
									}
									echo '</optgroup>';
								}else{
									echo '<option value="'.$s.'">'.$item.'</option>';
								}
							} endif; ?>
						</select>
						<select data-name="mfn_template_conditions[0][other]" class="mfn-form-control mfn-form-select df-input df-input-opt df-input-other">
							<?php 
							echo '<option selected value="search-page">'.esc_html__('Search page', 'mfn-opts').'</option>';
							?>
						</select>
					</div>
					<a class="mfn-option-btn mfn-option-blank btn-large df-remove" title="Close" href="#"><span class="mfn-icon mfn-icon-close"></span></a>
				</div>

				<?php endif; ?>
			</div>

			<a class="mfn-btn btn-icon-left df-add-row mfn-btn-blank" href="#"><span class="btn-wrapper"><span class="mfn-icon mfn-icon-add"></span><?php esc_html_e('Add condition', 'mfn-opts'); ?></span></a>

			<?php if( $this->post_type == 'template' && $this->template_type == 'popup' ) {
				$publication_opts = !empty(get_post_meta($this->post_id, 'mfn_publication_options', true)) ? json_decode(get_post_meta($this->post_id, 'mfn_publication_options', true)) : false; ?>

				<div class="mfn-conditions-dates">
					<h3>Publication options</h3>
					<div class="mfn-publication-opt-wrapper <?php echo !empty($publication_opts->date_start) || !empty($publication_opts->date_end) ? 'mfn-opt-active' : ''; ?>">
						<span class="mfn-checkbox <?php echo !empty($publication_opts->date_start) || !empty($publication_opts->date_end) ? 'active' : ''; ?>"></span>
						<div class="mfn-publication-opt-input">
							<label><span class="mfn-icon icon-calendar-line"></span> Start date</label>
							<input type="datetime-local" class="mfn-form-control" name="mfn_publication_options[date_start]" <?php if( !empty($publication_opts->date_start) ) { echo 'value="'.$publication_opts->date_start.'"';} ?> min="<?php echo current_time( 'Y-m-d H:i' ); ?>" class="df-input">
						</div>
						<div class="mfn-publication-opt-input">
							<label><span class="mfn-icon icon-calendar-line"></span> End date</label>
							<input type="datetime-local" class="mfn-form-control" name="mfn_publication_options[date_end]" <?php if( !empty($publication_opts->date_end) ) { echo 'value="'.$publication_opts->date_end.'"';} ?> min="<?php echo current_time( 'Y-m-d H:i' ); ?>" class="df-input">
						</div>
					</div>
				</div>
			<?php } ?>

			</form>


		</div>


		<div class="modalbox-footer">
			<div class="options-group right">
				<a class="mfn-btn mfn-btn-blue btn-modal-save btn-save-changes" href="#"><span class="btn-wrapper"><?php esc_html_e('Save', 'mfn-opts'); ?></span></a>
				<a class="mfn-btn btn-modal-close" href="#"><span class="btn-wrapper"><?php esc_html_e('Cancel', 'mfn-opts'); ?></span></a>
			</div>
		</div>

	</div>

</div>

haha - 2025