<?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>Mon, 12 May 2008 05:43:38 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Padraic Brady's Blog: Zend Framework Blog Tutorial - Part 6: Zend_Form & Zend_Auth]]></title>
      <guid>http://www.phpdeveloper.org/news/10139</guid>
      <link>http://www.phpdeveloper.org/news/10139</link>
      <description><![CDATA[<p>
<i>Padraic Brady</i> has continued his series about making a sample blogging application with the Zend Framework in a new blog post, <a href="http://blog.astrumfutura.com/archives/360-Example-Zend-Framework-Blog-Application-Tutorial-Part-6-Introduction-to-Zend_Form-and-Authentication-with-Zend_Auth.html">part six</a> - a focus on Zend_Form and Zend_Auth.
</p>
<blockquote>
In the previous entry, we created a new Administration Module to hold blog management functionality, added a Module specific layout for it, and discussed the upcoming need to ensure this is only accessible by authorised Authors. In this entry I'll unravel some of Zend_Form's mysteries in adding a login form, before using Zend_Auth to implement authentication for authors.
</blockquote>
<p>
He includes the code (controller and view) to add the login form as a part of the Author functionality and, using a few decorators to help him build the form how he likes it, extends the Zend_Form component to make his form with username, password and submit elements. He throws in some validation and a bit of error checking to finish it off.
</p>]]></description>
      <pubDate>Thu, 08 May 2008 09:33:36 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Zend Developer Zone: Decorators with Zend_Form]]></title>
      <guid>http://www.phpdeveloper.org/news/10112</guid>
      <link>http://www.phpdeveloper.org/news/10112</link>
      <description><![CDATA[<p>
On the Zend Developer Zone there's a <a href="http://devzone.zend.com/article/3450-Decorators-with-Zend_Form">new tutorial</a> (by <i>Matthew Weier O'Phinney</i>) covering the use of decorators with the Zend_Form component of the Zend Framework.
</p>
<blockquote>
One point of flexibility [Zend_Form] offers has proved to be a pain point for many developers: decorators. This tutorial aims to shed some light on decorators, as well as provide strategies for creating your own decorators and combining them in creative ways to customize the output your forms generate.
</blockquote>
<p>
<i>Matthew</i> <a href="http://devzone.zend.com/article/3450-Decorators-with-Zend_Form">starts</a> with a little background behind the component to help you find your way around. Building on this, he shows how to use some standard output decorators and how to create decorators of your own. His example shows how to create a set of grouped checkboxes.
</p>]]></description>
      <pubDate>Mon, 05 May 2008 12:57:34 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[IBM developerWorks: What's new in Zend Framework V1.5]]></title>
      <guid>http://www.phpdeveloper.org/news/9986</guid>
      <link>http://www.phpdeveloper.org/news/9986</link>
      <description><![CDATA[<p>
The IBM developerWorks website has <a href="http://www-128.ibm.com/developerworks/opensource/library/os-php-zendv1.5/?ca=drs-tp1608">a new article/tutorial</a> posted today about the new features and functionality that's included with the latest release of the <a href="http://framework.zend.com">Zend Framework</a>, version 1.5.
</p>
<blockquote>
The popular open source Zend Framework just got some slick enhancements. Learn what's new in V1.5 and how upgrades, including Zend_Form, Zend_Layout, and Zend_View, enhanced support for GData Web services, and improved Ajax support can help PHP developers easily roll out cutting-edge Web applications.
</blockquote>
<p>
They walk through each of the new components (or features in them) like Zend_Form and Zend_Layout/Zend_View with examples included. There's also mention of other miscellaneous updates like the addition of OpenID and InfoCard support, a LDAP authentication module and an interface with Google's GData service.
</p>]]></description>
      <pubDate>Thu, 17 Apr 2008 09:33:35 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Matthew Weir O'Phinney's Blog: Zend_Form Advanced Features]]></title>
      <guid>http://www.phpdeveloper.org/news/9931</guid>
      <link>http://www.phpdeveloper.org/news/9931</link>
      <description><![CDATA[<p>
<i>Matthew Weir O'Phinney</i> has <a href="http://weierophinney.net/matthew/archives/159-Zend_Form-Advanced-Features.html">written up a post</a> for his blog outlining some of the other cool little features that were included in the <a href="http://devzone.zend.com/article/3030-Lifting-the-Skirt-on-Zend-Framework-1.5---Zend_Form">recent release</a> of the Zend Framework, specifically with the Zend_Form component.
</p>
<blockquote>
I've been working on  for the past few weeks, and it's nearing release readiness. There are a number of features that Cal didn't cover in his <a href="http://devzone.zend.com/article/3030-Lifting-the-Skirt-on-Zend-Framework-1.5---Zend_Form">DevZone coverage</a> (in part because some of them weren't yet complete) that I'd like to showcase.
</blockquote>
<p>These additional features <i>Matthew</i> mentions are:</p>
<ul>
<li>Internationalization
<li>Element Grouping
<li>Array Support
</ul>
<p>
Check out more of the great features of the component <a href="http://framework.zend.com/manual/en/zend.form.html">in the Zend Framework documentation</a>.
</p>]]></description>
      <pubDate>Tue, 08 Apr 2008 12:13:35 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Rob Allen's Blog: Simple Zend_Form File Upload Example]]></title>
      <guid>http://www.phpdeveloper.org/news/9921</guid>
      <link>http://www.phpdeveloper.org/news/9921</link>
      <description><![CDATA[<p>
<i>Rob Allen</i> has <a href="http://akrabat.com/2008/04/07/simple-zend_form-file-upload-example/">posted an example</a> (a simple one to get you started) of creating a file upload form in the Zend Framework.
</p>
<blockquote>
Zend Framework 1.5's Zend_Form component is missing support for the file input element as it is waiting on a file upload component to build upon. We're busy people, so we'll fake it...
</blockquote>
<p>
His example gives a screenshot of the end result and includes all of the code needed to make it all work - the form, the custom file form element, a ValidFile validation class to ensure you're getting exactly what you want and the controller to define the form and execute it once the user submits.
</p>]]></description>
      <pubDate>Mon, 07 Apr 2008 09:30:30 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Rob Allen's Blog: Updated Tutorial for Zend Framework 1.5]]></title>
      <guid>http://www.phpdeveloper.org/news/9809</guid>
      <link>http://www.phpdeveloper.org/news/9809</link>
      <description><![CDATA[<p>
<i>Rob Allen</i> has <a href="http://akrabat.com/2008/03/17/updated-tutorial-for-zend-framework-15/">updates his tutorial</a> that gets developers started with the Zend Framework for the latest release of the Framework - version 1.5:
</p>
<blockquote>
Zend Framework 1.5 has now been released to mark the occasion I have significantly updated my <a href="http://akrabat.com/zend-framework-tutorial">Zend Framework Tutorial</a>! The tutorial was first released on <a href="http://akrabat.com/2006/08/16/my-take-on-a-zend-framework-tutorial/">16th August 2006</a> and was written against version 0.1 of Zend Framework and had one major revision to bring in support for the ViewRenderer component.
</blockquote>
<p>
The updates include the addition of some of the "goodies" the new release offers - like Zend_Form's additions and Zend_Layout - as well as other smaller features that can make a Zend Framework-er's life easier.
</p>]]></description>
      <pubDate>Tue, 18 Mar 2008 07:51:21 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Matthew Weir O'Phinney's Blog: Zend Framework 1.5 is on its way!]]></title>
      <guid>http://www.phpdeveloper.org/news/9804</guid>
      <link>http://www.phpdeveloper.org/news/9804</link>
      <description><![CDATA[<p>
<i>Matthew Weir O'Phinney</i> has <a href="http://weierophinney.net/matthew/archives/162-Zend-Framework-1.5-is-on-its-way!.html">posted happily</a> about an upcoming release of the popular PHP framework from Zend - Zend Framework version 1.5:
</p>
<blockquote>
As many know, <a href="http://framework.zend.com/">Zend Framework</a> 1.5.0 is almost ready for release... heck, it might even be released by the time you read this. There are a ton of new features worth looking into, but I'll list some of my own favorites here - the ones I've been either working on or using.
</blockquote>
<p>The list of updates for the release includes:</p>
<ul>
<li>Zend_Layout and Zend_View enhancements
<li>Zend_Form
<li>Zend_Search_Lucene
<li>Zend_Db_Table Improvements
<li>Context Switching and REST
</ul>
<p>
If you want to get things prepared on your application, you can always <a href="http://framework.zend.com/download">download the latest release candidate</a> (RC 3) of 1.5.0 and get to testing.
</p>]]></description>
      <pubDate>Mon, 17 Mar 2008 08:49:23 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Pieter's Blog: Zend_Form with XML Tutorial]]></title>
      <guid>http://www.phpdeveloper.org/news/9769</guid>
      <link>http://www.phpdeveloper.org/news/9769</link>
      <description><![CDATA[<p>
<i>Pieter</i> has blogged today with <a href="http://blog.snakehit.be/2008/03/09/zend_form-with-xml-tutorial/">an example</a> of using an XML configuration file together with the Zend_Form component of the Zend Framework to create a simple form - in his example, a login form.
</p>
<blockquote>
During my interneship if been busy with Zend_Form and XML and now I like to share it with you. So here is a very easy, complete example that shows it in action. Let's make a small login form from XML with Zend_Form.
</blockquote>
<p>
The Zend Framework has the functionality for this already built in - a call to create a Zend_Config_Xml object passing in the XML file's name is all it takes. He includes <a href="http://snakehit.be/Pictures/login.xml">a sample XML file</a> that shows the setup of the form as well as how to perform some of the validation techniques (like checking length and pattern matching).
</p>]]></description>
      <pubDate>Mon, 10 Mar 2008 12:57:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Matthew Weir O'Phinney's Blog: Zend_Form Webinar Wednesday]]></title>
      <guid>http://www.phpdeveloper.org/news/9735</guid>
      <link>http://www.phpdeveloper.org/news/9735</link>
      <description><![CDATA[<p>
<i>Matthew Weir O'Phinney</i> has <a href="http://weierophinney.net/matthew/archives/160-Zend_Form-Webinar-Wednesday.html">pointd out</a> a webinar from Zend that he will be hosting on the Zend_Form component of the Zend Framework.
</p>
<blockquote>
I'll be covering the design of Zend_Form, the basic usage and various classes and plugins available, and internationalization of your forms. 
</blockquote>
<p>
You can find out more about the event on <a href="http://www.zend.com/en/company/news/event/webinar-zend-framework-forms">its detail page</a> on Zend's site (including an <A href="https://zend.webex.com/mw0304l/mywebex/default.do?siteurl=zend&service=6&main_url=%2Fec0509l%2Feventcenter%2Fmainframe.do%3Fmainurl%3Dhttps%253A%252F%252Fzend.webex.com%252Fec0509l%252Feventcenter%252Fevent%252FeventAction.do%253FtheAction%253Ddetail%2526confViewID%253D194649950%2526siteurl%253Dzend%26siteurl%3Dzend">easy link</a> to get you signed up). The webinar will be happening Wednesday March 5th at 9am Pacific Standard.
</p>]]></description>
      <pubDate>Tue, 04 Mar 2008 08:41:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Rob Allen's Blog: Simple Zend_Form Example]]></title>
      <guid>http://www.phpdeveloper.org/news/9686</guid>
      <link>http://www.phpdeveloper.org/news/9686</link>
      <description><![CDATA[<p>
<i>Rob Allen</i> has <a href="http://akrabat.com/2008/02/21/simple-zend_form-example/">posted an example</a> - a "super simple, complete example" of how to use the Zend_Form component of the <a href="http://framework.zend.com">Zend Framework</a> to create a basic contact form.
</p>
<blockquote>
Following on from the <a href="http://akrabat.com/2007/12/11/simple-zend_layout-example/">Simple Zend_Layout Example</a>, Zend_Form is now in the trunk, so here's a super simple, complete example that shows it in action.
</blockquote>
<p>
He includes screenshots of the different steps along the way - the form that will be generated, the structure of the directories and, of course, the contents of the PHP files to make things happen. He also mentions the use of Decorators (the design pattern) to assign the various attributes of the form element object.
</p>]]></description>
      <pubDate>Fri, 22 Feb 2008 11:07:10 -0600</pubDate>
    </item>
  </channel>
</rss>
