<?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>Wed, 19 Jun 2013 17:54:33 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[NetTuts.com: An Introduction to Views & Templating in CodeIgniter]]></title>
      <guid>http://www.phpdeveloper.org/news/18201</guid>
      <link>http://www.phpdeveloper.org/news/18201</link>
      <description><![CDATA[<p>
NetTuts.com has a new tutorial that will interest the CodeIgniter developers out there about using <a href="http://net.tutsplus.com/tutorials/php/an-introduction-to-views-templating-in-codeigniter/">views and templates</a> in your CI applications.
</p>
<blockquote>
Views are a key ingredient in any MVC application, and CodeIgniter applications aren't any different. Today, we're going to learn what a view is, and discover how they can be used to create a templating solution for your CodeIgniter projects. The first part of this tutorial will educate complete beginners to CodeIgniter on what a view is, and how to use them in a typical application. The second half will discuss the motivations for finding a templating solution, and guide the reader through the necessary steps for creating a simple, yet effective templating library.
</blockquote>
<p>
They introduce you to some of the fundamentals behind views, templating, using multiple views and using the templating to push values out to the site.
</p>]]></description>
      <pubDate>Mon, 09 Jul 2012 12:09:48 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Anna Filina's Blog: Symfony - subfolders for partials]]></title>
      <guid>http://www.phpdeveloper.org/news/15934</guid>
      <link>http://www.phpdeveloper.org/news/15934</link>
      <description><![CDATA[<p>
<i>Anna Filina</i> has a new post to her site today about <a href="http://annafilina.com/blog/symfony-subfolders-for-partials/">using subfolders for partials</a> in Symfony applications and keeping them organized.
</p>
<blockquote>
Symfony 1.2 - 1.4 expects all partials to follow this convention: templates/_partial.php. What happens when you need to organize your partials in subfolder? I tried a number of "Symfunky" avenues.
</blockquote>
<p>
She tried a few ways - calling the helper with the include_partial method but it didn't resolve to the path she wanted. Next she tried a different path, but Symfony only interpreted it differently - and not the way she wanted. After a few more tries, she found a solution - using get_partial with a parameter that defined the subfolder to look in.
</p>]]></description>
      <pubDate>Mon, 21 Feb 2011 11:14:32 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[NETTUTS.com: How to Write a "Most Popular By Views" WordPress Plugin ]]></title>
      <guid>http://www.phpdeveloper.org/news/14670</guid>
      <link>http://www.phpdeveloper.org/news/14670</link>
      <description><![CDATA[<p>
On NETTUTS.com today there's <a href="http://net.tutsplus.com/tutorials/wordpress/intermediate-wp-plugins-most-popular-by-views">a new tutorial</a> for the WordPress users/developers out there showing you how to create a "Most Popular By Views" plugin for your site.
</p>
<blockquote>
As you continue writing for WordPress more and more, the level of difficulty and complexity of your plugins will eventually reach far beyond the simple back-end data manipulation, as demonstrated in our <a href="http://net.tutsplus.com/tutorials/wordpress/your-first-wordpress-plugin-simple-optimization/">beginner's article</a>. In this installment we'll cover in-depth: database interaction, Admin Widgets, and Sidebar Widgets. Today's example will be a custom built "Most Popular by Views" plugin, which creates an admin area widget for us to view, and a sidebar widget for visitors to see.
</blockquote>
<p>
Besides waling through the whole process, the tutorial offers <a href="http://s3.amazonaws.com/nettuts/717_wpPlugin/finished%20plugin.zip">a download of the source</a> if you want to get started right away. The resulting plugin can be used on both the admin and public sides of the site as a widget that can be dropped in easily. Code to create both the widget and the database table it needs for a backend are included.
</p>]]></description>
      <pubDate>Fri, 18 Jun 2010 08:37:26 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[DevShed: Using Nested Views with CodeIgniter]]></title>
      <guid>http://www.phpdeveloper.org/news/12269</guid>
      <link>http://www.phpdeveloper.org/news/12269</link>
      <description><![CDATA[<p>
The "Introduction to CodeIgniter" series continues on DevShed with <a href="http://www.devshed.com/c/a/PHP/Using-Nested-Views-with-CodeIgniter/">this new article</a>, a look at nested views in their sample application.
</p>
<blockquote>
In this third chapter of the series I'm going to discuss one that bases its functionality on the loader class that comes bundled with CI. [...] By means of this method, it is very simple to replace in one single step all the variables included into multiple views with actual data. Therefore, in the next few lines I'm going to discuss how to use it to generate a dynamic web document, which will display some database contents.
</blockquote>
<p>
After a quick review of loading views sequentially, they look at the new stuff - a "<a href="http://www.devshed.com/c/a/PHP/Using-Nested-Views-with-CodeIgniter/2/">master view</a>" that can load multiple other views inside. To pass information into this master view, they use the "$this->load->vars()" method included in the framework.
</p>]]></description>
      <pubDate>Fri, 03 Apr 2009 07:56:01 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[DevShed: Adding CSS to Handling Views with CodeIgniter]]></title>
      <guid>http://www.phpdeveloper.org/news/12221</guid>
      <link>http://www.phpdeveloper.org/news/12221</link>
      <description><![CDATA[<p>
DevShed has posted the <a href="http://www.devshed.com/c/a/PHP/Adding-CSS-to-Handling-Views-with-CodeIgniter/?kc=rss">latest article</a> in their "introduction to views in CodeIgniter" series - a look at working with the views to add more layout/design to them with CSS.
</p>
<blockquote>
Now it's time to continue exploring the capabilities given by CodeIgniter when it comes to handling views. Since the visual appearance of the web page mentioned above was pretty rudimentary, in this second article I'm going to improve it a bit to make it look more appealing and professional. 
</blockquote>
<p>
To add in their CSS, they <a href="http://www.devshed.com/c/a/PHP/Adding-CSS-to-Handling-Views-with-CodeIgniter/2/">update their header_view.php file</a> to includes the styles in the template. The views for each block are then loaded via the controller - header, content and footer areas.
</p>]]></description>
      <pubDate>Fri, 27 Mar 2009 08:46:10 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Site News: New PHPDeveloper.org Weekly Newsletter Offered]]></title>
      <guid>http://www.phpdeveloper.org/news/4714</guid>
      <link>http://www.phpdeveloper.org/news/4714</link>
      <description><![CDATA[Starting this week, PHPDeveloper.org is going to offer a new service to its readers. In conjunction with the daily news posting (and resulting feed), we are now going to proide our readers with a weekly newsletter - a summary of all of the stories that were posted.
<p>
Signup is quick and easy - simply head over to <a href="http://www.phpdeveloper.org/newsletter.php">our signup page</a> and enter your email address and submit the form. That's all it takes to get the latest weekly PHP news delivered to your mailbox.
<p>
And, of course, PHPDeveloper.org never shares any information it gets from its users with outside sources, so you can rest assured that your email address will not be shared or sold off to anyone.
<p>
So, if you'd like to recieve email summaries of all of the great news, views, and community happenings that you see here each week delivered right to your email, <a href="http://www.phpdeveloper.org/newsletter.php">head over and signup now</a>!]]></description>
      <pubDate>Mon, 23 Jan 2006 08:56:18 -0600</pubDate>
    </item>
  </channel>
</rss>
