Your IP : 18.221.213.201


Current Path : /home/church/www/wp-content/plugins/dynamic-widgets/
Upload File :
Current File : /home/church/www/wp-content/plugins/dynamic-widgets/dynwid_admin_edit.php

<?php
/**
 * dynwid_admin_edit.php - Options settings
 *
 * @copyright 2011 Jacco Drabbe
 */

	defined('ABSPATH') or die("No script kiddies please!");

	// Plugins support
	DW_BP::detect();
	// DW_QT::detect();
	DW_WPSC::detect();
	DW_WPML::detect();

	// Sanitizing some stuff
	$widget_id = ( isset($_GET['id']) && ! empty($_GET['id']) ) ? esc_attr($_GET['id']) : '';
	$return_url = ( isset($_GET['returnurl']) && ! empty($_GET['returnurl']) ) ? esc_url($_GET['returnurl']) : '';

	// In some cases $widget_id appears not to be global (anymore)
	$GLOBALS['widget_id'] = $widget_id;

	if (! array_key_exists($widget_id, $DW->registered_widgets) ) {
		wp_die('WidgetID is not valid');
	}
?>

<style type="text/css">
label {
  cursor : default;
}

.condition-select {
  width : 450px;
  -moz-border-radius-topleft : 6px;
  -moz-border-radius-topright : 6px;
  -moz-border-radius-bottomleft : 6px;
  -moz-border-radius-bottomright : 6px;
  border-style : solid;
  border-width : 1px;
  border-color : #E3E3E3;
  padding : 5px;
  padding-right: 15px; /* for RTL? */
}

.infotext {
  width : 98%;
  display : none;
  color : #666666;
  font-style : italic;
}

#dynwid h3 {
	text-indent : 30px;
	cursor: pointer;
}

h4 {
	text-indent : 30px;
	cursor: pointer;
}

.hasoptions {
	color : #ff0000;
}

#dynwid {
	font-family : 'Lucida Grande', Verdana, Arial, 'Bitstream Vera Sans', sans-serif;
	font-size : 13px;
}

.dynwid_conf {
	display: none;
	padding: 15px;
	padding-left: 30px;
}

.ui-datepicker {
	font-size : 10px;
}

div.settingbox {
	border-color: #E3E3E3;
	border-radius: 6px 6px 6px 6px;
	border-style: solid;
	border-width: 1px;
	padding: 5px;
}
</style>

<script type="text/javascript">
/* <![CDATA[ */
  function chkChild(prefix, pid) {
  	var add = true;
  	var child = false;

  	if ( jQuery( '#' + prefix + '_act_' + pid).is( ':checked' ) == false ) {
  		if ( jQuery( '#' + prefix + '_childs_act_' + pid ).length > 0 ) {
  			jQuery( '#' + prefix + '_childs_act_' + pid ).attr( 'checked', false );
  			child = true;
  		}

  		add = false;
  	}

  	var value = jQuery( 'input[name^="' + prefix + '_act"]' ).val();
  	console.log( 'prefix: ' + prefix + ', value: ' + value );
  	var a = value.split(',');

  	if ( child ) {
  		var value_child = jQuery( 'input[name^="' + prefix + '_childs_act"]' ).val();
  		var a_child = value_child.split(',');
  	}


  	if ( add ) {

  		if ( jQuery.inArray(pid, a) == -1 ) {
  			a.push( pid );
  		}

  	} else {
	  	a = jQuery.grep( a, function(v) {
	  		return v != pid;
	  	});

			if ( child ) {
				a_child = jQuery.grep( a_child, function(v) {
		  		return v != pid;
		  	});
			}
	  }

  	value = a.join();
  	jQuery( '#' + prefix + '_act' ).val( value );

  	if ( child ) {
  		value_child = a_child.join();
  		jQuery( '#' + prefix + '_childs_act' ).val( value_child );
  	}

  }

  function chkParent(prefix, pid) {
  	var add = false;

  	if ( jQuery( '#' + prefix + '_childs_act_' + pid ).is( ':checked' ) == true ) {
  		jQuery( '#' + prefix + '_act_' + pid ).attr('checked', true);
  		add = true;
  	}

  	// var value = jQuery( '#' + prefix + '_act' ).val();
		var value = jQuery( 'input[name^="' + prefix + '_act"]' ).val();
  	// var value_child = jQuery( '#' + prefix + '_childs_act' ).val();
  	var value_child = jQuery( 'input[name^="' + prefix + '_childs_act"]' ).val();
  	var a = value.split(',');
  	var a_child = value_child.split(',');

  	if ( add ) {

  		if ( jQuery.inArray(pid, a) == -1 ) {
  			a.push( pid );
  		}

  		if ( jQuery.inArray(pid, a_child) == -1 ) {
  			a_child.push( pid );
  		}

  	} else {
	  	a_child = jQuery.grep( a_child, function(v) {
	  		return v != pid;
	  	});
  	}

  	value = a.join();
  	value_child = a_child.join();
  	jQuery( '#' + prefix + '_act' ).val( value );
  	jQuery( '#' + prefix + '_childs_act' ).val( value_child );
  }

/*  function chkCPChild(type, pid) {
  	if ( jQuery('#'+type+'_act_'+pid).is(':checked') == false ) {
  		jQuery('#'+type+'_childs_act_'+pid).attr('checked', false);
  	}
  }

  function chkCPParent(type, pid) {
  	if ( jQuery('#'+type+'_childs_act_'+pid).is(':checked') == true ) {
  		jQuery('#'+type+'_act_'+pid).attr('checked', true);
  	}
  } */

  function divToggle(div) {
    var div = '#'+div;
    jQuery(div).slideToggle(400);
  }

  function swChb(c, s) {
  	for ( i = 0; i < c.length; i++ ) {
  	  if ( s == true ) {
  	    jQuery('#'+c[i]).attr('checked', false);
  	  }
      jQuery('#'+c[i]).attr('disabled', s);
    }
  }

  function saveandreturn() {
		var returnurl = '<?php echo trailingslashit(admin_url()) . 'themes.php?page=dynwid-config'; ?>';
		jQuery('#returnurl').val(returnurl);
		jQuery('#dwsave').submit();
  }

  function swTxt(c, s) {
  	for ( i = 0; i < c.length; i++ ) {
  	  if ( s == true ) {
  	    jQuery('#'+c[i]).val('');
  	  }
      jQuery('#'+c[i]).attr('disabled', s);
    }
  }

  function setOff() {
  	jQuery(':radio').each( function() {
  		if ( jQuery(this).val() == 'no' && jQuery.inArray(jQuery(this).attr('name'), exclOff) == -1 ) {
  			jQuery(this).attr('checked', true);
  		};
  	});
  	alert('All options set to \'No\'.\nDon\'t forget to make changes, otherwise you\'ll receive an error when saving.');
  }

  function toggleAll() {
		jQuery( 'h4, #dynwid h3' ).each( function() {
			var id = this.id;

			if ( closed_state ) {
				jQuery( '#' + id + '_conf' ).slideDown('slow');
			} else {
				jQuery( '#' + id + '_conf' ).slideUp('slow');
			}
		});

		if ( closed_state ) {
			closed_state = false;
		} else {
			closed_state = true;
		}
  }

  function term_tree(widget_id, name, id, prefix) {
  	var display = jQuery( '#child_' + prefix + id ).css( 'display' );

		if ( display == 'none' ) {
  		jQuery.post( ajaxurl, { action: 'term_tree',nonce:'<?php echo wp_create_nonce('ajax-nonce'); ?>', id: id, name: name, widget_id: widget_id, prefix: prefix }, function(data) {
  			jQuery( '#tree_' + prefix + id ).html( data );
  			jQuery( '#child_' + prefix + id ).slideDown('slow');
  		});
  	} else {
  		jQuery( '#child_' + prefix + id ).slideUp('slow');
  	}
  }

  jQuery(document).ready( function() {
		jQuery( 'h4, #dynwid h3' ).click( function() {
			var id = this.id;
			jQuery( '#' + id + '_conf' ).slideToggle('slow');
		});

		jQuery( 'h4, #dynwid h3' ).mouseover( function() {
			jQuery(this).addClass('ui-state-hover');
		});

		jQuery( 'h4, #dynwid h3' ).mouseleave( function() {
			jQuery(this).removeClass('ui-state-hover');
		});

	});

	var closed_state = true;
/* ]]> */
</script>

<?php
	if ( isset($_POST['dynwid_save']) && $_POST['dynwid_save'] == 'yes' ) {
		$lead = __('Widget options saved.', DW_L10N_DOMAIN);
		$msg = '<a href="themes.php?page=dynwid-config">' . __('Return', DW_L10N_DOMAIN) . '</a> ' . __('to Dynamic Widgets overview', DW_L10N_DOMAIN);
		DWMessageBox::create($lead, $msg);
	} else if ( isset($_GET['work']) && $_GET['work'] == 'none' ) {
		DWMessageBox::setTypeMsg('error');
		$text = __('Dynamic does not mean static hiding of a widget.', DW_L10N_DOMAIN) . ' ' . __('Hint', DW_L10N_DOMAIN) . ': <a href="widgets.php">' . __('Remove', DW_L10N_DOMAIN) . '</a>' . ' ' . __('the widget from the sidebar', DW_L10N_DOMAIN) . '.';
		DWMessageBox::setMessage($text);
		DWMessageBox::output();
	} else if ( isset($_GET['work']) && $_GET['work'] == 'nonedate' ) {
		DWMessageBox::setTypeMsg('error');
		$text = __('The From date can\'t be later than the To date.', DW_L10N_DOMAIN);
		DWMessageBox::setMessage($text);
		DWMessageBox::output();
	}
?>

<h3><?php _e('Edit options for the widget', DW_L10N_DOMAIN); ?>: <em><?php echo $DW->getName($widget_id); ?></em></h3>
<?php echo ( DW_DEBUG ) ? '<pre>ID = ' . $widget_id . '</pre><br />' : ''; ?>

<div class="settingbox">
<b><?php _e('Quick settings', DW_L10N_DOMAIN); ?></b>
<p>
<a href="#" onclick="setOff(); return false;"><?php _e('Set all options to \'No\'', DW_L10N_DOMAIN); ?></a> (<?php _e('Except overriding options like Role, Date, etc.', DW_L10N_DOMAIN); ?>)
</p>
</div><br />

<form id="dwsave" action="<?php echo trailingslashit(admin_url()) . 'themes.php?page=dynwid-config&action=edit&id=' . $widget_id; ?>" method="post">
<?php wp_nonce_field('plugin-name-action_edit_' . $widget_id); ?>
<input type="hidden" name="dynwid_save" value="yes" />
<input type="hidden" name="widget_id" value="<?php echo $widget_id; ?>" />
<input type="hidden" id="returnurl" name="returnurl" value="<?php echo ( (! empty($return_url)) ? trailingslashit(admin_url()) . $return_url : '' ); ?>" />

<div class="settingbox">
<b><?php _e('Individual Posts, Custom Post Types and Tags', DW_L10N_DOMAIN); ?></b>
<p>
<?php
	$opt_individual = $DW->getDWOpt($widget_id, 'individual');
	$individual = ( $opt_individual->count > 0 ) ? TRUE : FALSE;
	$DW->dumpOpt($opt_individual);

	echo '<input type="checkbox" id="individual" name="individual" value="1" ' . ( ($individual)  ? 'checked="checked"' : '' ) . ' onclick="chkInPosts()" />';
	echo ' <label for="individual">' . __('Make exception rule available to individual posts and tags.', DW_L10N_DOMAIN) . '</label>';
	echo '<img src="' . $DW->plugin_url . 'img/info.gif" alt="info" title="' . __('Click to toggle info', DW_L10N_DOMAIN) . '" onclick="divToggle(\'individual_post_tag\')" />';

	echo '<div>';
	echo '<div id="individual_post_tag" class="infotext">';
	_e('When you enable this option, you have the ability to apply an exception rule to tags and individual posts (Posts and Custom Post Types).
					You can set the exception rule for tags in the single Edit Tag Panel (go to <a href="edit-tags.php?taxonomy=post_tag">Post Tags</a>,
					click a tag), For individual posts in the <em>New</em> or <em>Edit</em> Posts panel.
					Exception rules for tags and individual posts in any combination work independently, but will always be counted as one exception.<br />
	  					Please note when this is enabled, exception rules which are set within Posts for Author and/or Category will be disabled.
	  				', DW_L10N_DOMAIN);
	echo '</div></div>';
?>
</p>
</div><br />

<input type="button" value="Toggle sections" onclick="toggleAll();" /><br />
<br />

<div id="dynwid">
<?php
	$DW->getModuleName();
	$DW->dwoptions = apply_filters('dynwid_admin_modules', $DW->dwoptions);

	if ( array_key_exists('role', $DW->dwoptions) ) {
		$DW_Role = new DW_Role();
		$DW_Role->admin();
	}

	if ( array_key_exists('date', $DW->dwoptions) ) {
		$DW_Date = new DW_Date();
		$DW_Date->admin();
	}

	if ( array_key_exists('day', $DW->dwoptions) ) {
		$DW_Day = new DW_Day();
		$DW_Day->admin();
	}

	if ( array_key_exists('week', $DW->dwoptions) ) {
		$DW_Week = new DW_Week();
		$DW_Week->admin();
	}

	if ( array_key_exists('wpml', $DW->dwoptions) ) {
		$DW_WPML = new DW_WPML();
		$DW_WPML->admin();
	}

	/*
	if ( array_key_exists('qt', $DW->dwoptions) ) {
		$DW_QT = new DW_QT();
		$DW_QT->admin();
	} */

	if ( array_key_exists('browser', $DW->dwoptions) ) {
		$DW_Browser = new DW_Browser();
		$DW_Browser->admin();
	}

	if ( array_key_exists('ip', $DW->dwoptions) ) {
		$DW_IP = new DW_IP();
		$DW_IP->admin();
	}

	if ( array_key_exists('fimage', $DW->dwoptions) ) {
		$DW_FImage = new DW_Fimage();
		$DW_FImage->admin();
	}

	if ( array_key_exists('device', $DW->dwoptions) ) {
		$DW_Device = new DW_Device();
		$DW_Device->admin();
	}

	if ( array_key_exists('tpl', $DW->dwoptions) ) {
		$DW_Tpl = new DW_Tpl();
		$DW_Tpl->admin();
	}

	if ( array_key_exists('url', $DW->dwoptions) ) {
		$DW_URL = new DW_URL();
		$DW_URL->admin();
	}

	if ( array_key_exists('domain', $DW->dwoptions) ) {
		$DW_Domain = new DW_Domain();
		$DW_Domain->admin();
	}

	if ( array_key_exists('shortcode', $DW->dwoptions) ) {
		$DW_URL = new DW_Shortcode();
		$DW_URL->admin();
	}

	if ( array_key_exists('front-page', $DW->dwoptions) ) {
		$DW_Front_page = new DW_Front_page();
		$DW_Front_page->admin();
	}

	if ( array_key_exists('single', $DW->dwoptions) ) {
		$DW_Single = new DW_Single();
		$DW_Single->admin();
	}

	if ( array_key_exists('attachment', $DW->dwoptions) ) {
		$DW_Attachment = new DW_Attachment();
		$DW_Attachment->admin();
	}

	if ( array_key_exists('page', $DW->dwoptions) ) {
		$DW_Page = new DW_Page();
		$DW_Page->admin();
	}

	if ( array_key_exists('author', $DW->dwoptions) ) {
		$DW_Author = new DW_Author();
		$DW_Author->admin();
	}

	if ( array_key_exists('category', $DW->dwoptions) ) {
		$DW_Category = new DW_Category();
		$DW_Category->admin();
	}

	if ( array_key_exists('tag', $DW->dwoptions) ) {
		$DW_Tag = new DW_Tag();
		$DW_Tag->admin();
	}

	if ( array_key_exists('archive', $DW->dwoptions) ) {
		$DW_Archive = new DW_Archive();
		$DW_Archive->admin();
	}


	if ( array_key_exists('e404', $DW->dwoptions) ) {
		$DW_E404 = new DW_E404();
		$DW_E404->admin();
	}

	if ( array_key_exists('search', $DW->dwoptions) ) {
		$DW_Search = new DW_Search();
		$DW_Search->admin();
	}

	$DW_CustomPost = new DW_CustomPost();
	$DW_CustomPost->admin();

	if ( array_key_exists('wpsc', $DW->dwoptions) ) {
		$DW_WPSC = new DW_WPSC();
		$DW_WPSC->admin();
	}

	if ( array_key_exists('bp', $DW->dwoptions) ) {
		$DW_BP = new DW_BP();
		$DW_BP->admin();
	}

	if ( array_key_exists('bbp_profile', $DW->dwoptions) ) {
		$DW_bbPress = new DW_bbPress();
		$DW_bbPress->admin();
	}

	if ( array_key_exists('pods', $DW->dwoptions) ) {
		$DW_Pods = new DW_Pods();
		$DW_Pods->admin();
	}


	// For JS exclOff
	$excl = array();
	foreach ( $DW->overrule_maintype as $m ) {
		$excl[ ] = "'" . $m . "'";
	}
?>

</div><!-- end dynwid -->
<br /><br />

<!-- <div>
Save as a quick setting <input type="text" name="qsetting" value="" />
</div> //-->

<br />
<div style="float:left">
<input class="button-primary" type="submit" value="<?php _e('Save'); ?>" /> &nbsp;&nbsp;
</div>
<?php $url = (! empty($return_url) ) ? trailingslashit(admin_url()) . $return_url : trailingslashit(admin_url()) . 'themes.php?page=dynwid-config'; ?>

<?php if ( empty($return_url) ) { ?>
<div style="float:left">
<input class="button-primary" type="button" value="<?php _e('Save'); ?> & <?php _e('Return', DW_L10N_DOMAIN); ?>" onclick="saveandreturn()" /> &nbsp;&nbsp;
</div>
<?php } ?>

<div style="float:left">
<input class="button-secondary" type="button" value="<?php _e('Return', DW_L10N_DOMAIN); ?>" onclick="location.href='<?php echo $url; ?>'" />
</div>

</form>

<script type="text/javascript">
/* <![CDATA[ */
	var exclOff = new Array(<?php echo implode(', ', $excl); ?>);
/* ]]> */
</script>