<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Delivering Quality &#187; code generation</title>
	<atom:link href="http://www.markdeepwell.com/tag/code-generation/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.markdeepwell.com</link>
	<description>A Software Developers View of the World</description>
	<lastBuildDate>Thu, 29 Jul 2010 16:44:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Symfony CRUD Generator</title>
		<link>http://www.markdeepwell.com/2009/07/symfony-crud-generator/</link>
		<comments>http://www.markdeepwell.com/2009/07/symfony-crud-generator/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 01:01:22 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[code generation]]></category>
		<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">http://www.markdeepwell.com/?p=35</guid>
		<description><![CDATA[The symfony CRUD generator is a very useful tool for speeding up your web development. When you need a list of items that you can list and edit, you are most likely building a standard CRUD (create-read-update-delete) interface. This is common functionality that is found in most applications. Since this is such a common task, [...]]]></description>
			<content:encoded><![CDATA[<p>The symfony <a href="http://www.symfony-project.org/forms/1_2/en/04-Propel-Integration#chapter_04_the_crud_generator">CRUD generator</a> is a very useful tool for speeding up your web development. When you need a list of items that you can list and edit, you are most likely building a standard CRUD (create-read-update-delete) interface. This is common functionality that is found in most applications. Since this is such a common task, it makes perfect sense that the symfony <a href="http://www.symfony-project.org/">web framework</a> has a tool to build it for you.</p>
<p>For example: Lets say your web application allow users to sign-up (surprise!) and you  need a user management tool in the admin section to manage these users. To create this in symfony, you&#8217;d run the following:</p>
<pre><code>./symfony propel:generate-crud admin user User
</code></pre>
<p>This assumes you have an admin application, and a User model file. With that one line, it will create a listing of all users with the ability to edit and delete them. It generates HTML and PHP code that you can modify to your requirements. Fantastic for less than a minute of work!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markdeepwell.com/2009/07/symfony-crud-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
