<?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: Extending the Controller Class in CodeIgniter</title>
	<atom:link href="http://www.rtraction.com/blog/devit/extending-the-controller-class-in-codeigniter.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.rtraction.com/blog/devit/extending-the-controller-class-in-codeigniter.html</link>
	<description>rtraction blog - Web Design, Web Development and Strategic Consulting</description>
	<lastBuildDate>Fri, 02 Dec 2011 15:59:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: rtraction » Blog Archive » Extending the Controller Class in &#8230; &#124; Source code bank</title>
		<link>http://www.rtraction.com/blog/devit/extending-the-controller-class-in-codeigniter.html/comment-page-1#comment-38206</link>
		<dc:creator>rtraction » Blog Archive » Extending the Controller Class in &#8230; &#124; Source code bank</dc:creator>
		<pubDate>Sat, 10 Apr 2010 10:46:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=1714#comment-38206</guid>
		<description>[...] here to see the original: rtraction » Blog Archive » Extending the Controller Class in &#8230;   If you enjoyed this article please consider sharing [...]</description>
		<content:encoded><![CDATA[<p>[...] here to see the original: rtraction » Blog Archive » Extending the Controller Class in &#8230;   If you enjoyed this article please consider sharing [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cole Thorsen</title>
		<link>http://www.rtraction.com/blog/devit/extending-the-controller-class-in-codeigniter.html/comment-page-1#comment-37130</link>
		<dc:creator>Cole Thorsen</dc:creator>
		<pubDate>Wed, 17 Mar 2010 20:01:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=1714#comment-37130</guid>
		<description>@gavinblair I tend to make use of standard code for forms, sometimes the codeigniter form helper is nicer though. I do like the $this-&gt;input-&gt;post(&#039;item&#039;); purely because I don&#039;t have to check for isset it does it for me. I originally resisted the active record class as well, but I&#039;ve started to take a more serious look at it.

@SeanJA it is cookie based. http://codeigniter.com/user_guide/libraries/sessions.html</description>
		<content:encoded><![CDATA[<p>@gavinblair I tend to make use of standard code for forms, sometimes the codeigniter form helper is nicer though. I do like the $this-&gt;input-&gt;post(&#8216;item&#8217;); purely because I don&#8217;t have to check for isset it does it for me. I originally resisted the active record class as well, but I&#8217;ve started to take a more serious look at it.</p>
<p>@SeanJA it is cookie based. <a href="http://codeigniter.com/user_guide/libraries/sessions.html" rel="nofollow">http://codeigniter.com/user_guide/libraries/sessions.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron McGowan</title>
		<link>http://www.rtraction.com/blog/devit/extending-the-controller-class-in-codeigniter.html/comment-page-1#comment-36994</link>
		<dc:creator>Aaron McGowan</dc:creator>
		<pubDate>Mon, 15 Mar 2010 13:24:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=1714#comment-36994</guid>
		<description>Good post Gavin.</description>
		<content:encoded><![CDATA[<p>Good post Gavin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SeanJA</title>
		<link>http://www.rtraction.com/blog/devit/extending-the-controller-class-in-codeigniter.html/comment-page-1#comment-36812</link>
		<dc:creator>SeanJA</dc:creator>
		<pubDate>Fri, 12 Mar 2010 17:29:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=1714#comment-36812</guid>
		<description>@Cole doesn&#039;t the Code Igniter session class use normal PHP sessions unless you tell it to use the database instead?</description>
		<content:encoded><![CDATA[<p>@Cole doesn&#8217;t the Code Igniter session class use normal PHP sessions unless you tell it to use the database instead?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SeanJA</title>
		<link>http://www.rtraction.com/blog/devit/extending-the-controller-class-in-codeigniter.html/comment-page-1#comment-36811</link>
		<dc:creator>SeanJA</dc:creator>
		<pubDate>Fri, 12 Mar 2010 17:27:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=1714#comment-36811</guid>
		<description>And... I almost didn&#039;t mistype some of that stuff ah well... you get the point</description>
		<content:encoded><![CDATA[<p>And&#8230; I almost didn&#8217;t mistype some of that stuff ah well&#8230; you get the point</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SeanJA</title>
		<link>http://www.rtraction.com/blog/devit/extending-the-controller-class-in-codeigniter.html/comment-page-1#comment-36810</link>
		<dc:creator>SeanJA</dc:creator>
		<pubDate>Fri, 12 Mar 2010 17:24:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=1714#comment-36810</guid>
		<description>@gavinblair

Why oh god why would you type out an entire form when there is a form helper there?

&amp;ltinput type=text name=name id=id value=&lt;php echo isset($_POST[value])? $_POST[value]:null; ?&gt; /&gt;

vs

$value = post(&#039;value&#039;);
f-&gt;input(&#039;name&#039;, &#039;id&#039;, $value);</description>
		<content:encoded><![CDATA[<p>@gavinblair</p>
<p>Why oh god why would you type out an entire form when there is a form helper there?</p>
<p>&amp;ltinput type=text name=name id=id value=&lt;php echo isset($_POST[value])? $_POST[value]:null; ?&gt; /&gt;</p>
<p>vs</p>
<p>$value = post(&#8216;value&#8217;);<br />
f-&gt;input(&#8216;name&#8217;, &#8216;id&#8217;, $value);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gavinblair</title>
		<link>http://www.rtraction.com/blog/devit/extending-the-controller-class-in-codeigniter.html/comment-page-1#comment-36804</link>
		<dc:creator>gavinblair</dc:creator>
		<pubDate>Fri, 12 Mar 2010 14:32:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=1714#comment-36804</guid>
		<description>@Cole - I tend to stick to what most coders are familiar with seeing regardless of framework, which means actual HTML (even forms) in the views, actual SQL queries and $_ variables.</description>
		<content:encoded><![CDATA[<p>@Cole &#8211; I tend to stick to what most coders are familiar with seeing regardless of framework, which means actual HTML (even forms) in the views, actual SQL queries and $_ variables.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SeanJA</title>
		<link>http://www.rtraction.com/blog/devit/extending-the-controller-class-in-codeigniter.html/comment-page-1#comment-36793</link>
		<dc:creator>SeanJA</dc:creator>
		<pubDate>Fri, 12 Mar 2010 05:35:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=1714#comment-36793</guid>
		<description>Good news! CodeIgniter 2.0 will be phasing out support for PHP 4 (and by 2.1 they say that PHP4 stuff will probably not work at all).</description>
		<content:encoded><![CDATA[<p>Good news! CodeIgniter 2.0 will be phasing out support for PHP 4 (and by 2.1 they say that PHP4 stuff will probably not work at all).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cole Thorsen</title>
		<link>http://www.rtraction.com/blog/devit/extending-the-controller-class-in-codeigniter.html/comment-page-1#comment-36788</link>
		<dc:creator>Cole Thorsen</dc:creator>
		<pubDate>Fri, 12 Mar 2010 04:23:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=1714#comment-36788</guid>
		<description>Interesting way of managing authentication. I set up a library and call the logged in method either in the construct or the individual methods of the controller depending on whether every method requires the user to be logged in or just some.

Your way definitely cuts down on code which is always nice. 

As a side note do you avoid the codeigniter session class? I know there is a lot of debate over the ci session setup vs. Native PHP sessions.</description>
		<content:encoded><![CDATA[<p>Interesting way of managing authentication. I set up a library and call the logged in method either in the construct or the individual methods of the controller depending on whether every method requires the user to be logged in or just some.</p>
<p>Your way definitely cuts down on code which is always nice. </p>
<p>As a side note do you avoid the codeigniter session class? I know there is a lot of debate over the ci session setup vs. Native PHP sessions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SeanJA</title>
		<link>http://www.rtraction.com/blog/devit/extending-the-controller-class-in-codeigniter.html/comment-page-1#comment-36787</link>
		<dc:creator>SeanJA</dc:creator>
		<pubDate>Fri, 12 Mar 2010 02:51:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=1714#comment-36787</guid>
		<description>I do wish that CodeIgniter dropped support for php 4... not having __controller and __call and __autoload really hamper it&#039;s style.</description>
		<content:encoded><![CDATA[<p>I do wish that CodeIgniter dropped support for php 4&#8230; not having __controller and __call and __autoload really hamper it&#8217;s style.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

