<?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>Tech aspirant &#187; Symfony</title>
	<atom:link href="http://www.techaspirant.com/tag/Symfony/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techaspirant.com</link>
	<description>Freelance Project Developer &#124; Consultant - Cochin, Trivandrum, Calicut</description>
	<lastBuildDate>Wed, 21 Mar 2012 10:00:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to set default values (input field) in symfony 1.4 generated forms</title>
		<link>http://www.techaspirant.com/how-to-set-values-input-field-in-symfony-1-4-generated-forms/</link>
		<comments>http://www.techaspirant.com/how-to-set-values-input-field-in-symfony-1-4-generated-forms/#comments</comments>
		<pubDate>Mon, 17 May 2010 04:41:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[framework]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[default]]></category>
		<category><![CDATA[doctrine]]></category>
		<category><![CDATA[input]]></category>

		<guid isPermaLink="false">http://www.techaspirant.com/?p=351</guid>
		<description><![CDATA[I was trying to set default values for an input field. public function executeNew(sfWebRequest $request) { $this->customer = Doctrine::getTable(&#8216;Customer&#8217;)->find(array($request->getParameter(&#8216;customer&#8217;))); $this->forward404Unless($this->customer); $this->form = new CallLogForm(); $this->form->setDefault(&#8216;customer_id&#8217;,$request->getParameter(&#8216;customer&#8217;)); } This is the way to set hidden values of default values for an input<span class="ellipsis">&#8230;</span> <a href="http://www.techaspirant.com/how-to-set-values-input-field-in-symfony-1-4-generated-forms/"><div class="read-more">Read more &#8250;</div><!-- end of .read-more --></a>]]></description>
		<wfw:commentRss>http://www.techaspirant.com/how-to-set-values-input-field-in-symfony-1-4-generated-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symfony Study Guide &#8211; Small Project Implementation</title>
		<link>http://www.techaspirant.com/symfony-study-guide-small-project-implementation/</link>
		<comments>http://www.techaspirant.com/symfony-study-guide-small-project-implementation/#comments</comments>
		<pubDate>Sat, 15 May 2010 12:29:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[framework]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[CRM]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[small]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.techaspirant.com/?p=343</guid>
		<description><![CDATA[Download Symfony Sandbox 1.4 Source : www.symfony-project.org/installation Requirement : Xampp or Wamp Package PHP: 5.2 Above Download Symfony and put this into your website root Rename sf_sandbox to your project name. Here it is CRM open config/properties.yml file and put<span class="ellipsis">&#8230;</span> <a href="http://www.techaspirant.com/symfony-study-guide-small-project-implementation/"><div class="read-more">Read more &#8250;</div><!-- end of .read-more --></a>]]></description>
		<wfw:commentRss>http://www.techaspirant.com/symfony-study-guide-small-project-implementation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Symfony 1.4 Doctrine Pagination</title>
		<link>http://www.techaspirant.com/symfony-1-4-doctrine-pagination/</link>
		<comments>http://www.techaspirant.com/symfony-1-4-doctrine-pagination/#comments</comments>
		<pubDate>Fri, 14 May 2010 06:51:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[database]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Project Managament]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[symfony 1.4 Doctrine Pagination]]></category>

		<guid isPermaLink="false">http://www.techaspirant.com/?p=334</guid>
		<description><![CDATA[Doctrine Pagination is made very simple . public function executeIndex(sfWebRequest $request) { $this-&#62;pager = new sfDoctrinePager('TableName', sfConfig::get('app_max_jobs_on_homepage'); $this-&#62;pager-&#62;setQuery(Doctrine::getTable('TableName')-&#62;createQuery('a')); $this-&#62;pager-&#62;setPage($request-&#62;getParameter('page', 1)); $this-&#62;pager-&#62;init(); } Success page &#60;?php foreach ($pager-&#62;getResults() as $post): ?&#62;&#60;div&#62; &#60;?php if($post-&#62;getTitle()) { echo link_to($post-&#62;getTitle(), &#8216;news/fullstory?expand=&#8217;.$post-&#62;getId(),&#8217;class=&#8221;mhead&#8221;&#8216;); } ?&#62; &#60;?php if($post-&#62;getDn2()!=&#8221;)<span class="ellipsis">&#8230;</span> <a href="http://www.techaspirant.com/symfony-1-4-doctrine-pagination/"><div class="read-more">Read more &#8250;</div><!-- end of .read-more --></a>]]></description>
		<wfw:commentRss>http://www.techaspirant.com/symfony-1-4-doctrine-pagination/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to deploy Symfony project using sync or rsync</title>
		<link>http://www.techaspirant.com/how-to-deploy-symfony-project-using-sync-or-rsync/</link>
		<comments>http://www.techaspirant.com/how-to-deploy-symfony-project-using-sync-or-rsync/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 12:26:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Misk]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[deploy]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[sync]]></category>

		<guid isPermaLink="false">http://arunrajr.com/blog/?p=179</guid>
		<description><![CDATA[install rsync http://trac.symfony-project.org/wiki/SymfonySyncOnWindows Download rsync and extract it to c:\windows\system32 Then run the command symfony project:deploy production Using rsync for Incremental File Transfer Uploading the whole project again and again is little irritating .. ! It is wastage of time<span class="ellipsis">&#8230;</span> <a href="http://www.techaspirant.com/how-to-deploy-symfony-project-using-sync-or-rsync/"><div class="read-more">Read more &#8250;</div><!-- end of .read-more --></a>]]></description>
		<wfw:commentRss>http://www.techaspirant.com/how-to-deploy-symfony-project-using-sync-or-rsync/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symfony &#8211; The PHP Frame work :: Based on MVC architecture !!</title>
		<link>http://www.techaspirant.com/symfony-the-php-frame-work-based-on-mvc-architecture/</link>
		<comments>http://www.techaspirant.com/symfony-the-php-frame-work-based-on-mvc-architecture/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 10:12:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[framework]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[prototype]]></category>
		<category><![CDATA[Symfony]]></category>

		<guid isPermaLink="false">http://arunrajr.com/blog/archives/16</guid>
		<description><![CDATA[Symfony is a full-stack framework, a library of cohesive classes written in PHP5 . Symfony provides an architecture, components and tools for developers to build complex web applications faster. Symfony help you to develop your applications @ early, low cost, secure<span class="ellipsis">&#8230;</span> <a href="http://www.techaspirant.com/symfony-the-php-frame-work-based-on-mvc-architecture/"><div class="read-more">Read more &#8250;</div><!-- end of .read-more --></a>]]></description>
		<wfw:commentRss>http://www.techaspirant.com/symfony-the-php-frame-work-based-on-mvc-architecture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

