<?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>phpway</title>
	<atom:link href="http://www.phpway.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpway.org</link>
	<description>Open Source Web Development Framework</description>
	<lastBuildDate>Wed, 06 Oct 2010 20:32:08 +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>Installation and first controller</title>
		<link>http://www.phpway.org/2010/10/06/installation-and-first-controller/</link>
		<comments>http://www.phpway.org/2010/10/06/installation-and-first-controller/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 04:18:11 +0000</pubDate>
		<dc:creator>misiek303</dc:creator>
				<category><![CDATA[Controller]]></category>
		<category><![CDATA[View]]></category>

		<guid isPermaLink="false">http://www.phpway.org/?p=1392</guid>
		<description><![CDATA[Installation and first controller Create a minimum of your vhost ServerName phpway DocumentRoot /var/www/phpway/public If vhost is installed succesfully framework will ask you to create and give writable permissins to log file. touch /var/www/phpway/public/../log/development.log chmod 777 /var/www/phpway/public/../log/development.log Now, edit config/routes.php file and add first route to your controlelr. On default action is index. In our [...]]]></description>
		<wfw:commentRss>http://www.phpway.org/2010/10/06/installation-and-first-controller/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Html Helper</title>
		<link>http://www.phpway.org/2010/10/01/html-helper/</link>
		<comments>http://www.phpway.org/2010/10/01/html-helper/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 22:48:40 +0000</pubDate>
		<dc:creator>misiek303</dc:creator>
				<category><![CDATA[View]]></category>

		<guid isPermaLink="false">http://www.phpway.org/?p=1364</guid>
		<description><![CDATA[Html Helper link_to() $this-&#62;link_to($name, array( $url_options = array(), $html = array() )) Example = $this-&#62;link_to('Link', array('url' =&#62; array('action' =&#62; 'my_action', 'controller' =&#62; 'my_controller', 'id' =&#62; '1', 'param' =&#62; 'param'), 'html' =&#62; array('class' =&#62; 'link_class'))) Html &#60;a class="link_class" href="/my_controller/my_action/1&#38;param=param"&#62;Link&#60;/a&#62; link_to_remote() $this-&#62;link_to_remote($name, array( $url_options = array(), $ajax_options = array(), $html = array() )) Example = $this-&#62;link_to_remote('Link', array('url' [...]]]></description>
		<wfw:commentRss>http://www.phpway.org/2010/10/01/html-helper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>translate</title>
		<link>http://www.phpway.org/2010/10/01/translate/</link>
		<comments>http://www.phpway.org/2010/10/01/translate/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 22:42:54 +0000</pubDate>
		<dc:creator>misiek303</dc:creator>
				<category><![CDATA[Support]]></category>

		<guid isPermaLink="false">http://www.phpway.org/?p=1353</guid>
		<description><![CDATA[Usage for apps of multiple languages. $this->translate ("some text"); If you specify other languages confg/config.ini file this way: translations = pl phpway will create new file pl.php in config/dictionary/ directory config/dictionary/pl.php with new content. $text['some text']='some text'; Here you can type text in polish language. $text['some text']='jakis tekst'; To show your app with polish language [...]]]></description>
		<wfw:commentRss>http://www.phpway.org/2010/10/01/translate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smtp</title>
		<link>http://www.phpway.org/2010/10/01/1350/</link>
		<comments>http://www.phpway.org/2010/10/01/1350/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 22:40:50 +0000</pubDate>
		<dc:creator>misiek303</dc:creator>
				<category><![CDATA[Support]]></category>

		<guid isPermaLink="false">http://www.phpway.org/?p=1350</guid>
		<description><![CDATA[Smtp configuration edit config/config.ini [ActionMailer] address = mail.example.com port = 25 domain = example.com user_name = admin@example password = user_password ttl = false Code setting basic header $this->Mail->to('"USER NAME" '); $this->Mail->from('"USER NAME" '); $this->Mail->subject("SUBJECT"); adding attachments $this>Mail->attachment(DIR_PUBLIC . 'file.txt'); $this>Mail->attachment(DIR_PUBLIC . 'another_file.txt'); setting body $body = $this->render_to_string('/notifier/registration'); $this->Mail->plain($body); or $this->Mail->html($body); or $this->Mail->body($body); send an email [...]]]></description>
		<wfw:commentRss>http://www.phpway.org/2010/10/01/1350/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>render</title>
		<link>http://www.phpway.org/2010/10/01/render/</link>
		<comments>http://www.phpway.org/2010/10/01/render/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 20:57:13 +0000</pubDate>
		<dc:creator>misiek303</dc:creator>
				<category><![CDATA[Controller]]></category>

		<guid isPermaLink="false">http://www.phpway.org/?p=1343</guid>
		<description><![CDATA[partial partial with ajax action nothing]]></description>
		<wfw:commentRss>http://www.phpway.org/2010/10/01/render/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>render_to_string</title>
		<link>http://www.phpway.org/2010/10/01/render_to_string/</link>
		<comments>http://www.phpway.org/2010/10/01/render_to_string/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 20:54:51 +0000</pubDate>
		<dc:creator>misiek303</dc:creator>
				<category><![CDATA[Controller]]></category>

		<guid isPermaLink="false">http://www.phpway.org/?p=1339</guid>
		<description><![CDATA[$this->render_to_string('/folder/_partial_name'); $this->render_to_string('/folder/folder/partial_name')]]></description>
		<wfw:commentRss>http://www.phpway.org/2010/10/01/render_to_string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>field_error</title>
		<link>http://www.phpway.org/2010/10/01/field_error/</link>
		<comments>http://www.phpway.org/2010/10/01/field_error/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 20:53:31 +0000</pubDate>
		<dc:creator>misiek303</dc:creator>
				<category><![CDATA[Controller]]></category>

		<guid isPermaLink="false">http://www.phpway.org/?p=1336</guid>
		<description><![CDATA[Reads error message for given model and column $this-> field_error ('/user/email')]]></description>
		<wfw:commentRss>http://www.phpway.org/2010/10/01/field_error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>before_filter</title>
		<link>http://www.phpway.org/2010/10/01/before_filter/</link>
		<comments>http://www.phpway.org/2010/10/01/before_filter/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 20:52:38 +0000</pubDate>
		<dc:creator>misiek303</dc:creator>
				<category><![CDATA[Controller]]></category>

		<guid isPermaLink="false">http://www.phpway.org/?p=1333</guid>
		<description><![CDATA[Runs functions before controller method]]></description>
		<wfw:commentRss>http://www.phpway.org/2010/10/01/before_filter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>flash</title>
		<link>http://www.phpway.org/2010/10/01/flash/</link>
		<comments>http://www.phpway.org/2010/10/01/flash/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 20:51:41 +0000</pubDate>
		<dc:creator>misiek303</dc:creator>
				<category><![CDATA[Controller]]></category>

		<guid isPermaLink="false">http://www.phpway.org/?p=1329</guid>
		<description><![CDATA[Write $this->flash('name', 'message') Read print $this->flash('name')]]></description>
		<wfw:commentRss>http://www.phpway.org/2010/10/01/flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>render_component</title>
		<link>http://www.phpway.org/2010/10/01/render_component/</link>
		<comments>http://www.phpway.org/2010/10/01/render_component/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 20:49:44 +0000</pubDate>
		<dc:creator>misiek303</dc:creator>
				<category><![CDATA[Controller]]></category>

		<guid isPermaLink="false">http://www.phpway.org/?p=1325</guid>
		<description><![CDATA[$this->render_component(array('controller' => 'name', 'action' => 'name', 'param' => 'name'));]]></description>
		<wfw:commentRss>http://www.phpway.org/2010/10/01/render_component/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

