<?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>Tue, 08 Jul 2008 22:44:51 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Zend Developer Zone: Zend_Acl and MVC Integration Part I (Basic Use)]]></title>
      <guid>http://www.phpdeveloper.org/news/10467</guid>
      <link>http://www.phpdeveloper.org/news/10467</link>
      <description><![CDATA[<p>
The Zend Developer Zone has posted a <a href="http://devzone.zend.com/article/3509-Zend_Acl-and-MVC-Integration-Part-I-Basic-Use">new tutorial</a> (from <i>Aldemar Bernal</i>) about some of the basic use of the Zend_Acl component of the Zend Framework.
</p>
<blockquote>
So, what is wrong with Zend_Acl and the current MVC implementation in the Zend Framework? there is nothing wrong, it is just that it gets not too obvious for developers how to achieve an optimal integration between these two important parts of the framework. 
</blockquote>
<p>
He talks about <a href="http://framework.zend.com/wiki/pages/viewpage.action?pageId=39025">the proposal</a> that's out for a potential update to the component, the two key points being the front controller plugin and a new action helper. He includes some sample code showing how to set it all up including a "denied" controller to handle the failures.
</p>]]></description>
      <pubDate>Mon, 23 Jun 2008 15:23:49 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Ruben Vermeersch's Blog: Integrating Zend Framework and Doctrine]]></title>
      <guid>http://www.phpdeveloper.org/news/10007</guid>
      <link>http://www.phpdeveloper.org/news/10007</link>
      <description><![CDATA[<p>
The Zend Developer Zone has linked to <a href="http://ruben.savanne.be/articles/integrating-zend-framework-and-doctrine">a tutorial</a> from <i>Ruben Vermeersch</i> about how to get the Zend Framework and the <a href="http://www.phpdoctrine.org/">Doctrine</a> ORM library working together.
</p>
<blockquote>
This article will guide you through the steps needed to set up a project using both the <a href="http://framework.zend.com/">Zend Framework</a> and <a href="http://www.phpdoctrine.org/">Doctrine</a>. In a step-by-step way, we will set up a simple message board application.
</blockquote>
<p>
He includes introductory things like the folder structure and an example of having Doctrine installed inside of it. Its all code from there on out - the bootstrap file, setting up a global handler, and how to integrate it all into their simple ZF application.
</p>]]></description>
      <pubDate>Mon, 21 Apr 2008 10:28:54 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[DeveloperTutorials.com: PHP 6 now with .net: Visual Studio integration available already]]></title>
      <guid>http://www.phpdeveloper.org/news/9890</guid>
      <link>http://www.phpdeveloper.org/news/9890</link>
      <description><![CDATA[<p>
On the Developer Tutorials site, there's <a href="http://www.developertutorials.com/blog/php/php-6-now-with-net-visual-studio-integration-available-already-101/">an article</a> talking about the integration that can be made with PHP6 and .NET Visual Studio:
</p>
<blockquote>
<a href="http://www.php-compiler.net/doku.php?id=core%3aphp-in-vs2008">PHP, .net and Silverlight will be integrated out of the box, along with Visual Studio 2008</a>. The project has long been in the works, but our sources have informed us of an impending announcement that PHP 6 will ship with .net.
</blockquote>
<p>
The glue between them is a part of the <a href="http://www.php-compiler.net/doku.php">phlanger</a> project.
</p>]]></description>
      <pubDate>Tue, 01 Apr 2008 14:57:08 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[DevShed: Using Yahoo Web Services to Perform Searches with an Object-Oriented Approach]]></title>
      <guid>http://www.phpdeveloper.org/news/9616</guid>
      <link>http://www.phpdeveloper.org/news/9616</link>
      <description><![CDATA[<p>
To finish up their series looking at using the Yahoo! web service search functionality in a PHP5 application, DevShed has posted <a href="http://www.devshed.com/c/a/PHP/Using-Yahoo-Web-Services-to-Perform-Searches-with-an-ObjectOriented-Approach/">this look</a> at integrating the search functionality into a preexisting application.
</p>
<blockquote>
In simple terms, my plan will consist of creating some compact and modular PHP 5 classes, which will define a few basic methods for working with the different web services offered by Yahoo!.
</blockquote>
<p>
They take the code they created from before (earlier parts of the series) and format it to fit into its own standalone class that can be included anywhere in an application. They create the class so it can search not only the normal results but it can also pull in the data from the video search Yahoo! offers as well.
</p>]]></description>
      <pubDate>Tue, 12 Feb 2008 13:23:41 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Padraic Brady's Blog: The PHPSpec Zend Framework App Testing Manifesto: ZF Integration]]></title>
      <guid>http://www.phpdeveloper.org/news/9458</guid>
      <link>http://www.phpdeveloper.org/news/9458</link>
      <description><![CDATA[<p>
Continuing on from his <a href="http://www.phpdeveloper.org/news/9416">preamble</a> on the integration of the PHPSpec BDD tool into the Zend Framework, <i>Padraic Brady</i> has posted <a href="http://blog.astrumfutura.com/archives/336-The-PHPSpec-Zend-Framework-App-Testing-Manifesto-ZF-Integration.html">the next in the series</a> - a look at what it would take to make the integration happen.
</p>
<blockquote>
The ideal was to move away from line-by-line setup and manipulation of Zend instances towards a more simplified model which is standardised for any <a href="http://www.phpspec.org/">PHPSpec</a> specs.
</blockquote>
<p>
He's already created an "experimental branch" to work inside of and some of these updates have been made to the trunk for the release of PHPSpec 0.3.0. The key that he found was in getting the customization of the "Zend Context operational to set up elements of the FrontController". He also includes a simple example of the extended functionality in action - simple interface methods to work with Twitter.
</p>]]></description>
      <pubDate>Mon, 21 Jan 2008 10:21:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[PradoSoft.com: PRADO/Wordpress/BBPress integration v1.0...]]></title>
      <guid>http://www.phpdeveloper.org/news/8640</guid>
      <link>http://www.phpdeveloper.org/news/8640</link>
      <description><![CDATA[<p>
<i>Sam Hennessy</i> has <a href="http://www.pradosoft.com/forum/index.php/topic,8494.0.html">submitted a link</a> today concerning a method for integrating PRADO and WordPress together to make a simple multi-user environment.
</p>
<p>
From <a href="http://www.pradosoft.com/forum/index.php/topic,8494.0.html">te post</a> by <i>javalizard</i>:
</p>
<blockquote>
I've been wanting to share with all you something new and special.  I've needed to use Wordpress Multiuser as blogging software (it's supported and has new releases once in a while and people know how to use it) with PRADO.  Auxiliary is the integration of BBPress too.  Basically, it's a single login system for prado, blogs, and forums.
</blockquote>
<p>
<a href="http://www.pradosoft.com/forum/index.php/topic,8494.0.html">This setup</a> lets you manage user information (roles, permissions, abilities) for WordPress through PRADO, handles user authentication and applies WordPress code libraries (actions/filters) and plugins. 
</p>]]></description>
      <pubDate>Wed, 12 Sep 2007 12:08:00 -0500</pubDate>
    </item>
  </channel>
</rss>
