<?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/"
xmlns:series="http://unfoldingneurons.com/"
> <channel><title>Comments on: Understanding MVC: The Basics</title> <atom:link href="http://www.larryullman.com/2009/10/08/understanding-mvc/feed/" rel="self" type="application/rss+xml" /><link>http://www.larryullman.com/2009/10/08/understanding-mvc/</link> <description>Translating Geek Into English</description> <lastBuildDate>Thu, 09 Feb 2012 15:50:46 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>By: Larry</title><link>http://www.larryullman.com/2009/10/08/understanding-mvc/comment-page-1/#comment-12314</link> <dc:creator>Larry</dc:creator> <pubDate>Wed, 14 Sep 2011 13:58:34 +0000</pubDate> <guid
isPermaLink="false">http://www.larryullman.com/?p=453#comment-12314</guid> <description>Thanks for sharing and thanks for the nice words!</description> <content:encoded><![CDATA[<p>Thanks for sharing and thanks for the nice words!</p> ]]></content:encoded> </item> <item><title>By: cbemerine</title><link>http://www.larryullman.com/2009/10/08/understanding-mvc/comment-page-1/#comment-12305</link> <dc:creator>cbemerine</dc:creator> <pubDate>Wed, 14 Sep 2011 02:44:12 +0000</pubDate> <guid
isPermaLink="false">http://www.larryullman.com/?p=453#comment-12305</guid> <description>@Larry, Your answer is much more complete.  I am enjoying your posts, thank you!</description> <content:encoded><![CDATA[<p>@Larry, Your answer is much more complete.  I am enjoying your posts, thank you!</p> ]]></content:encoded> </item> <item><title>By: CB</title><link>http://www.larryullman.com/2009/10/08/understanding-mvc/comment-page-1/#comment-12304</link> <dc:creator>CB</dc:creator> <pubDate>Wed, 14 Sep 2011 02:41:12 +0000</pubDate> <guid
isPermaLink="false">http://www.larryullman.com/?p=453#comment-12304</guid> <description>@v.m.p you might find the back and forth on the object operator &#039;-&gt;&#039; interesting, especially given your question about $this, here is the discussion on Robert Gonzalez&#039;s website:http://www.robert-gonzalez.com/2009/03/04/php-operators-double-and-single-arrow/I loved it that rasmus even chimed in at one point.The $this operator is a &#039;special variable&#039; used to &quot;refer to the currently instantiated object.&quot;  &#039;$this-&gt;name&#039; where name is a variable defined in the class template that creates the object.What I find particularly special about $this-&gt; is without it, how would an &#039;object&#039; refer to itself?</description> <content:encoded><![CDATA[<p>@v.m.p you might find the back and forth on the object operator &#8216;-&gt;&#8217; interesting, especially given your question about $this, here is the discussion on Robert Gonzalez&#8217;s website:</p><p><a
href="http://www.robert-gonzalez.com/2009/03/04/php-operators-double-and-single-arrow/" rel="nofollow">http://www.robert-gonzalez.com/2009/03/04/php-operators-double-and-single-arrow/</a></p><p>I loved it that rasmus even chimed in at one point.</p><p>The $this operator is a &#8216;special variable&#8217; used to &#8220;refer to the currently instantiated object.&#8221;  &#8216;$this-&gt;name&#8217; where name is a variable defined in the class template that creates the object.</p><p>What I find particularly special about $this-&gt; is without it, how would an &#8216;object&#8217; refer to itself?</p> ]]></content:encoded> </item> <item><title>By: Stephen Reid Design &#187; Yii-ppeeee!</title><link>http://www.larryullman.com/2009/10/08/understanding-mvc/comment-page-1/#comment-6865</link> <dc:creator>Stephen Reid Design &#187; Yii-ppeeee!</dc:creator> <pubDate>Fri, 18 Feb 2011 02:45:32 +0000</pubDate> <guid
isPermaLink="false">http://www.larryullman.com/?p=453#comment-6865</guid> <description>[...] include Ruby on Rails and CakePHP). Lucklily for me, technology writer Larry Ullman has an excellent article introducing the concept of MVC, which if you are interested in using Yii yourself, I highly reccommend you read [...]</description> <content:encoded><![CDATA[<p>[...] include Ruby on Rails and CakePHP). Lucklily for me, technology writer Larry Ullman has an excellent article introducing the concept of MVC, which if you are interested in using Yii yourself, I highly reccommend you read [...]</p> ]]></content:encoded> </item> <item><title>By: Larry</title><link>http://www.larryullman.com/2009/10/08/understanding-mvc/comment-page-1/#comment-6519</link> <dc:creator>Larry</dc:creator> <pubDate>Wed, 09 Feb 2011 15:16:48 +0000</pubDate> <guid
isPermaLink="false">http://www.larryullman.com/?p=453#comment-6519</guid> <description>Well, I&#039;m not sure, but &lt;strong&gt;$this&lt;/strong&gt; in OOP always refers to the current object. So in a Model definition it refers to the current instance of that Model. In a Controller definition, it refers to the current instance of that Controller. In a View definition, it refers to the current instance of that View.</description> <content:encoded><![CDATA[<p>Well, I&#8217;m not sure, but <strong>$this</strong> in OOP always refers to the current object. So in a Model definition it refers to the current instance of that Model. In a Controller definition, it refers to the current instance of that Controller. In a View definition, it refers to the current instance of that View.</p> ]]></content:encoded> </item> <item><title>By: v.m.p.</title><link>http://www.larryullman.com/2009/10/08/understanding-mvc/comment-page-1/#comment-6486</link> <dc:creator>v.m.p.</dc:creator> <pubDate>Tue, 08 Feb 2011 20:22:57 +0000</pubDate> <guid
isPermaLink="false">http://www.larryullman.com/?p=453#comment-6486</guid> <description>maybe i&#039;ve overlooked it...so forgive me...but did you ever get around to covering: &quot;...and what in the world $this means at any particular point!&quot;??Thanks!</description> <content:encoded><![CDATA[<p>maybe i&#8217;ve overlooked it&#8230;so forgive me&#8230;but did you ever get around to covering: &#8220;&#8230;and what in the world $this means at any particular point!&#8221;??</p><p>Thanks!</p> ]]></content:encoded> </item> <item><title>By: Berkenalan dengan Yii Framework BeBeTe.name</title><link>http://www.larryullman.com/2009/10/08/understanding-mvc/comment-page-1/#comment-5873</link> <dc:creator>Berkenalan dengan Yii Framework BeBeTe.name</dc:creator> <pubDate>Sun, 23 Jan 2011 12:37:58 +0000</pubDate> <guid
isPermaLink="false">http://www.larryullman.com/?p=453#comment-5873</guid> <description>[...] sewaktu mempelajari CakePHP untuk pertama kalinya. Sebagai rujukan, artikel dari Anant Garg atau Larry Ullman menjelaskan MVC disertai contoh yang mudah [...]</description> <content:encoded><![CDATA[<p>[...] sewaktu mempelajari CakePHP untuk pertama kalinya. Sebagai rujukan, artikel dari Anant Garg atau Larry Ullman menjelaskan MVC disertai contoh yang mudah [...]</p> ]]></content:encoded> </item> <item><title>By: GargantulaKon</title><link>http://www.larryullman.com/2009/10/08/understanding-mvc/comment-page-1/#comment-1200</link> <dc:creator>GargantulaKon</dc:creator> <pubDate>Sat, 06 Mar 2010 13:34:07 +0000</pubDate> <guid
isPermaLink="false">http://www.larryullman.com/?p=453#comment-1200</guid> <description>Yes it does make more sense now. Thank you!</description> <content:encoded><![CDATA[<p>Yes it does make more sense now. Thank you!</p> ]]></content:encoded> </item> <item><title>By: Larry</title><link>http://www.larryullman.com/2009/10/08/understanding-mvc/comment-page-1/#comment-1156</link> <dc:creator>Larry</dc:creator> <pubDate>Sun, 28 Feb 2010 03:27:06 +0000</pubDate> <guid
isPermaLink="false">http://www.larryullman.com/?p=453#comment-1156</guid> <description>Good question. To clarify, Controllers do actions in terms of responses to users: click a link, do this; submit a form, do that; etc. So Controller actions are in a broader sense. Models are the data, and something like a calculation based upon part of a Model is therefore tied to the Model, not to a Controller or a View. By doing it this way, the same information could be used in lots of Views. And again, think of Controllers as controlling user actions. Does that make more sense?</description> <content:encoded><![CDATA[<p>Good question. To clarify, Controllers do actions in terms of responses to users: click a link, do this; submit a form, do that; etc. So Controller actions are in a broader sense. Models are the data, and something like a calculation based upon part of a Model is therefore tied to the Model, not to a Controller or a View. By doing it this way, the same information could be used in lots of Views. And again, think of Controllers as controlling user actions. Does that make more sense?</p> ]]></content:encoded> </item> <item><title>By: GargantulaKon</title><link>http://www.larryullman.com/2009/10/08/understanding-mvc/comment-page-1/#comment-1154</link> <dc:creator>GargantulaKon</dc:creator> <pubDate>Sat, 27 Feb 2010 21:44:25 +0000</pubDate> <guid
isPermaLink="false">http://www.larryullman.com/?p=453#comment-1154</guid> <description>I am confused that you state &quot;but the actual calculation should take place in the Model, not the View (or the Controller).&quot;I thought the controller does the actual thinking and calculations?</description> <content:encoded><![CDATA[<p>I am confused that you state &#8220;but the actual calculation should take place in the Model, not the View (or the Controller).&#8221;</p><p>I thought the controller does the actual thinking and calculations?</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Served from: www.larryullman.com @ 2012-02-09 15:54:21 by W3 Total Cache -->
