<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>PHPDeveloper.org</title>
    <link>http://www.phpdeveloper.org</link>
    <description>Up-to-the Minute PHP News, views and community</description>
    <language>en-us</language>
    <pubDate>Fri, 16 May 2008 00:06:59 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Padraic Brady's Blog: An Example Zend Framework Blog - Part 5: Models w/Zend_Db & an Admin Module]]></title>
      <guid>http://www.phpdeveloper.org/news/10087</guid>
      <link>http://www.phpdeveloper.org/news/10087</link>
      <description><![CDATA[<p>
<i>Padraic Brady</i> is on <a href="http://blog.astrumfutura.com/archives/358-An-Example-Zend-Framework-Blog-Application-Part-5-Creating-Models-with-Zend_Db-and-adding-an-Administration-Module.html">part five</a> of his series looking at making a blogging tool with the Zend Framework today. This time he focuses on the database side of things, working with models and making an admin module.
</p>
<blockquote>
First of all I decided to add an Entries Model and Authors Model to the mix, primarily to get ready for when we can add new entries to our blog. This leads to where we can create new Entries; we add an Administration Module to the application with it's own distinct Layout.
</blockquote>
<p>
He starts by making the database schema, an entries and authors table, before starting in on the models. They're made based off of the Zend_Db component's structure and they let the application interact with the data in the tables easily. His code for the modules is included as well as the controller and view for the admin module.
</p>]]></description>
      <pubDate>Thu, 01 May 2008 10:25:06 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Hasin Hayder's Blog: Working with models in orchid]]></title>
      <guid>http://www.phpdeveloper.org/news/9952</guid>
      <link>http://www.phpdeveloper.org/news/9952</link>
      <description><![CDATA[<p>
<i>Hasin Hayder</i> has <a href="http://hasin.wordpress.com/2008/04/10/working-with-models-in-orchid/">posted another in his series</a> looking at the relatively young PHP framework, <a href="http://orchidframework.net/">orchid</a>. HE digs a little deeper this time and looks at the Model functionality it has.
</p>
<blockquote>
As promised, <a href="http://orchidframework.net/">orchid</a> comes with real flexibility which lets you design your application in less time. [...] In this installment, we will learn how to achieve maximum speed and benefit by using the built-in model library of orchid with a toppings of the active record library.
</blockquote>
<p>
He shows how to connect to the database backend through the framework (along with some dos and don'ts) and how to pull this connection into the Model functionality. His example inserts information into a "comics" table and shows how to pull it back out (with a call to the find() method).
</p>]]></description>
      <pubDate>Thu, 10 Apr 2008 14:17:47 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Chris Hartjes' Blog: "My framework is more MVC than *your* framework!"]]></title>
      <guid>http://www.phpdeveloper.org/news/9755</guid>
      <link>http://www.phpdeveloper.org/news/9755</link>
      <description><![CDATA[<p>
<i>Chris Hartjes</i> has <a href="http://www.littlehart.net/feeder/?FeederAction=clicked&feed=Articles+%28RSS2%29&seed=http%3A%2F%2Fwww.littlehart.net%2Fatthekeyboard%2F2008%2F03%2F06%2Fmy-framework-is-more-mvc-than-your-framework%2F&seed_title=%26%238220%3BMy+framework+is+more+MVC+than+%2Ayour%2A+framework%21%26%238221%3B">posted about</a> a topic, while not new in the PHP community it seems to have resurfaced more lately - how MVC is implemented (or not implemented) in most of the PHP-based Rails-esque frameworks.
</p>
<blockquote>
This guy [making comments at PHP London] apparently works for the <a href="http://agavi.org/">Agavi</a> project. [...] The comments for that [reddit] post are really interesting too, as people take their usual swipes at PHP, and CakePHP, and the Symfony guys come out in droves to talk up Symfony, and on and on it goes. Sadly, this is not a unique occurance on the web.
</blockquote>
<p>
<i>Chris</i> took a closer look at Agavi to see what made its MVC so special - only to find that it just does it different, but not necessarily "right" (he includes a code example to illustrate). He also <A href="http://en.wikipedia.org/wiki/Model-view-controller">quotes Wikipedia</a>'s definition of an MVC framework and notes that CakePHP seems to fit it to a tee.
</p>]]></description>
      <pubDate>Fri, 07 Mar 2008 08:45:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[The Bakery: Four New Articles/Components (Colors, Models, InotImg & CakeSWXPHP)]]></title>
      <guid>http://www.phpdeveloper.org/news/8750</guid>
      <link>http://www.phpdeveloper.org/news/8750</link>
      <description><![CDATA[<p>
The Bakery has posted four new articles/components today bringing you more CakePHP goodness for your consumption:
</p>
<ul>
<li><a href="http://bakery.cakephp.org/articles/view/color-helper-random">Color Helper (Random)</a> - Need a way to distinguish one chunk from another? How about easy random background colors that are all within a reasonable range of values that look good with dark text.
<li><a href="http://bakery.cakephp.org/articles/view/model-loader">Model Loader</a> - This component helps you to load your models on the fly ( I mean in your actions, whenever).
<li><a href="http://bakery.cakephp.org/articles/view/inotimg-helper-for-reducing-rows-in-view">InotImg - helper for reducing rows in view</a> - When I was playing with images I always messed up with stuff which didn't belongs into view code. Like "if is_file(image" etc. but I want to be sure that there is going to be an image whether wanted or empty-image, so I wrote a following helper to make things easier.
<li><a href="http://bakery.cakephp.org/articles/view/cakeswxphp">CakeSWXPHP</a> - SWX is the native data format for Flash. It uses SWF files to store and exchange data. It is also an implementation of an RPC gateway (currently in PHP), tools (a data analyzer/debugger and a service explorer), various APIs (Flickr, Twitter, etc.), and an ActionScript library that make creating data driven Flash and Flash Lite applications a piece of cake.
</ul>
<p>
Be sure to check out the rest of the great content on <a href="http://bakery.cakephp.org">The Bakery</a> for even more CakePHP-ness.
</p>]]></description>
      <pubDate>Fri, 28 Sep 2007 12:05:00 -0500</pubDate>
    </item>
  </channel>
</rss>
