<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Unobtrusive config for fire and forget plugins</title>
	<atom:link href="http://wp-fun.co.uk/2008/10/01/unobtrusive-config-for-fire-and-forget-plugins/feed/" rel="self" type="application/rss+xml" />
	<link>http://wp-fun.co.uk/2008/10/01/unobtrusive-config-for-fire-and-forget-plugins/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 05 Mar 2010 11:56:05 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Andrew Rickmann</title>
		<link>http://wp-fun.co.uk/2008/10/01/unobtrusive-config-for-fire-and-forget-plugins/comment-page-1/#comment-975</link>
		<dc:creator>Andrew Rickmann</dc:creator>
		<pubDate>Tue, 18 Nov 2008 22:43:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-fun.co.uk/?p=543#comment-975</guid>
		<description>Frank, I&#039;m not quite sure which bit of it you don&#039;t know so I have tried to guess.&lt;br&gt;&lt;br&gt;You need to add a new value in the jquery using&lt;br&gt;&lt;br&gt;if ($(&#039;#secure_wp_index&#039;).is(&#039;:checked&#039;))&lt;br&gt;{&lt;br&gt;  SecureWP = 1;&lt;br&gt;} else {&lt;br&gt; SecureWP = 0;&lt;br&gt;}&lt;br&gt;&lt;br&gt;Then add it to the post object right after &quot;pcsc_config-API&quot; : API_Val, so you change that to read:&lt;br&gt;&quot;pcsc_config-API&quot; : API_Val , &quot;SecureWP&quot; : SecureWP&lt;br&gt;&lt;br&gt;you can then check what value is set in PHP using $_POST[&#039;SecureWP&#039;] == 1</description>
		<content:encoded><![CDATA[<p>Frank, I&#39;m not quite sure which bit of it you don&#39;t know so I have tried to guess.</p>
<p>You need to add a new value in the jquery using</p>
<p>if ($(&#39;#secure_wp_index&#39;).is(&#39;:checked&#39;))<br />{<br />  SecureWP = 1;<br />} else {<br /> SecureWP = 0;<br />}</p>
<p>Then add it to the post object right after &#8220;pcsc_config-API&#8221; : API_Val, so you change that to read:<br />&#8220;pcsc_config-API&#8221; : API_Val , &#8220;SecureWP&#8221; : SecureWP</p>
<p>you can then check what value is set in PHP using $_POST[&#39;SecureWP&#39;] == 1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://wp-fun.co.uk/2008/10/01/unobtrusive-config-for-fire-and-forget-plugins/comment-page-1/#comment-974</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Tue, 18 Nov 2008 19:05:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-fun.co.uk/?p=543#comment-974</guid>
		<description>THanks for yout time. I use thsi in php/html&lt;br&gt;&lt;code&gt;&lt;input type=&quot;checkbox&quot; name=&quot;secure_wp_index&quot; id=&quot;secure_wp_index&quot; value=&quot;1&quot; &lt;?php if ( $secure_wp_index == &#039;1&#039;) { echo &quot;checked=&#039;checked&#039;&quot;; } ?&gt; /&gt;&lt;/code&gt;&lt;br&gt;Wth this is it possible to save the value of the checkbox. How i make this in the form with wp_ajax?</description>
		<content:encoded><![CDATA[<p>THanks for yout time. I use thsi in php/html<br /><code>&lt;input type=&quot;checkbox&quot; name=&quot;secure_wp_index&quot; id=&quot;secure_wp_index&quot; value=&quot;1&quot; &lt;?php if ( $secure_wp_index == &#39;1&#39;) { echo &quot;checked=&#39;checked&#39;&quot;; } ?&gt; /&gt;</code><br />Wth this is it possible to save the value of the checkbox. How i make this in the form with wp_ajax?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Rickmann</title>
		<link>http://wp-fun.co.uk/2008/10/01/unobtrusive-config-for-fire-and-forget-plugins/comment-page-1/#comment-973</link>
		<dc:creator>Andrew Rickmann</dc:creator>
		<pubDate>Sat, 08 Nov 2008 01:38:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-fun.co.uk/?p=543#comment-973</guid>
		<description>Which part is it that you are have a problem with? Is it the javascript side, or the PHP side?</description>
		<content:encoded><![CDATA[<p>Which part is it that you are have a problem with? Is it the javascript side, or the PHP side?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://wp-fun.co.uk/2008/10/01/unobtrusive-config-for-fire-and-forget-plugins/comment-page-1/#comment-972</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Fri, 07 Nov 2008 02:09:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-fun.co.uk/?p=543#comment-972</guid>
		<description>Nice workflow and i like this.&lt;br&gt;I have tested this code and i have a probelm, maybe you can help me?&lt;br&gt;How it is possible to use a input-field type checkbox for update the vaule in options?&lt;br&gt;I can&#039;t see the resoltion.&lt;br&gt;Thanks!</description>
		<content:encoded><![CDATA[<p>Nice workflow and i like this.<br />I have tested this code and i have a probelm, maybe you can help me?<br />How it is possible to use a input-field type checkbox for update the vaule in options?<br />I can&#39;t see the resoltion.<br />Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Where Is That Settings Page? &#124; PATRONIT.NET</title>
		<link>http://wp-fun.co.uk/2008/10/01/unobtrusive-config-for-fire-and-forget-plugins/comment-page-1/#comment-971</link>
		<dc:creator>Where Is That Settings Page? &#124; PATRONIT.NET</dc:creator>
		<pubDate>Mon, 03 Nov 2008 15:55:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-fun.co.uk/?p=543#comment-971</guid>
		<description>[...] the weekend, I happened to come across a post written by Andrew Rickmann which showcased an idea to create a configure link next next to the usual Activate/Deactivate Edit [...]</description>
		<content:encoded><![CDATA[<p>[...] the weekend, I happened to come across a post written by Andrew Rickmann which showcased an idea to create a configure link next next to the usual Activate/Deactivate Edit [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Configure This &#124; PATRONIT.NET</title>
		<link>http://wp-fun.co.uk/2008/10/01/unobtrusive-config-for-fire-and-forget-plugins/comment-page-1/#comment-970</link>
		<dc:creator>Configure This &#124; PATRONIT.NET</dc:creator>
		<pubDate>Mon, 03 Nov 2008 15:37:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-fun.co.uk/?p=543#comment-970</guid>
		<description>[...] Keith and I dissect the news of the week. Jacob Santos was cool enough to call in to confirm that Andrew Rickmanns idea of placing a configure link inside of the plugin management panel would be included in the [...]</description>
		<content:encoded><![CDATA[<p>[...] Keith and I dissect the news of the week. Jacob Santos was cool enough to call in to confirm that Andrew Rickmanns idea of placing a configure link inside of the plugin management panel would be included in the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Weblog Tools Collection: Configure This &#124; Aslifm Blogu</title>
		<link>http://wp-fun.co.uk/2008/10/01/unobtrusive-config-for-fire-and-forget-plugins/comment-page-1/#comment-969</link>
		<dc:creator>Weblog Tools Collection: Configure This &#124; Aslifm Blogu</dc:creator>
		<pubDate>Sat, 01 Nov 2008 20:12:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-fun.co.uk/?p=543#comment-969</guid>
		<description>[...] Keith and I dissect the news of the week. Jacob Santos was cool enough to call in to confirm that Andrew Rickmanns idea of placing a configure link inside of the plugin management panel would be included in the [...]</description>
		<content:encoded><![CDATA[<p>[...] Keith and I dissect the news of the week. Jacob Santos was cool enough to call in to confirm that Andrew Rickmanns idea of placing a configure link inside of the plugin management panel would be included in the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Weblog Tools Collection: Configure This &#124; PR &#38; Tech</title>
		<link>http://wp-fun.co.uk/2008/10/01/unobtrusive-config-for-fire-and-forget-plugins/comment-page-1/#comment-968</link>
		<dc:creator>Weblog Tools Collection: Configure This &#124; PR &#38; Tech</dc:creator>
		<pubDate>Fri, 24 Oct 2008 06:06:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-fun.co.uk/?p=543#comment-968</guid>
		<description>[...] Keith and I dissect the news of the week. Jacob Santos was cool enough to call in to confirm that Andrew Rickmanns idea of placing a configure link inside of the plugin management panel would be included in the [...]</description>
		<content:encoded><![CDATA[<p>[...] Keith and I dissect the news of the week. Jacob Santos was cool enough to call in to confirm that Andrew Rickmanns idea of placing a configure link inside of the plugin management panel would be included in the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Weblog Tools Collection: Configure This &#124; Aslifmbiz Blog</title>
		<link>http://wp-fun.co.uk/2008/10/01/unobtrusive-config-for-fire-and-forget-plugins/comment-page-1/#comment-967</link>
		<dc:creator>Weblog Tools Collection: Configure This &#124; Aslifmbiz Blog</dc:creator>
		<pubDate>Thu, 23 Oct 2008 16:16:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-fun.co.uk/?p=543#comment-967</guid>
		<description>[...] Keith and I dissect the news of the week. Jacob Santos was cool enough to call in to confirm that Andrew Rickmanns idea of placing a configure link inside of the plugin management panel would be included in the [...]</description>
		<content:encoded><![CDATA[<p>[...] Keith and I dissect the news of the week. Jacob Santos was cool enough to call in to confirm that Andrew Rickmanns idea of placing a configure link inside of the plugin management panel would be included in the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Configure This &#183; Softonix.com</title>
		<link>http://wp-fun.co.uk/2008/10/01/unobtrusive-config-for-fire-and-forget-plugins/comment-page-1/#comment-966</link>
		<dc:creator>Configure This &#183; Softonix.com</dc:creator>
		<pubDate>Sun, 19 Oct 2008 05:42:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-fun.co.uk/?p=543#comment-966</guid>
		<description>[...] Keith and I dissect the news of the week. Jacob Santos was cool enough to call in to confirm that Andrew Rickmanns idea of placing a configure link inside of the plugin management panel would be included in the [...]</description>
		<content:encoded><![CDATA[<p>[...] Keith and I dissect the news of the week. Jacob Santos was cool enough to call in to confirm that Andrew Rickmanns idea of placing a configure link inside of the plugin management panel would be included in the [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
