<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Zend_Acl part 1: Misconceptions and simple ACLs</title>
	<atom:link href="http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/feed/" rel="self" type="application/rss+xml" />
	<link>http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/</link>
	<description>Software development with a focus on web-related technologies</description>
	<lastBuildDate>Wed, 08 Sep 2010 07:53:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: mask3d</title>
		<link>http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/comment-page-1/#comment-61782</link>
		<dc:creator>mask3d</dc:creator>
		<pubDate>Wed, 28 Jul 2010 19:37:27 +0000</pubDate>
		<guid isPermaLink="false">http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/#comment-61782</guid>
		<description>most of the time resources are dynamic they stay in a databases!</description>
		<content:encoded><![CDATA[<p>most of the time resources are dynamic they stay in a databases!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pedro Bento</title>
		<link>http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/comment-page-1/#comment-56817</link>
		<dc:creator>Pedro Bento</dc:creator>
		<pubDate>Wed, 14 Apr 2010 17:21:31 +0000</pubDate>
		<guid isPermaLink="false">http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/#comment-56817</guid>
		<description>finally a tutorial that works!!! thanks</description>
		<content:encoded><![CDATA[<p>finally a tutorial that works!!! thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Getting the information out there &#171; Poolczar says</title>
		<link>http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/comment-page-1/#comment-54007</link>
		<dc:creator>Getting the information out there &#171; Poolczar says</dc:creator>
		<pubDate>Fri, 26 Feb 2010 19:39:37 +0000</pubDate>
		<guid isPermaLink="false">http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/#comment-54007</guid>
		<description>[...] I started to configure this website with a configuration switch between LDAP and DB auth, and found http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/ by Jani Hartikainen very helpful.  By the way, I&#8217;m building the site on Zend Framework in [...]</description>
		<content:encoded><![CDATA[<p>[...] I started to configure this website with a configuration switch between LDAP and DB auth, and found <a href="http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/" rel="nofollow">http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/</a> by Jani Hartikainen very helpful.  By the way, I&#8217;m building the site on Zend Framework in [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Best of 2009 &#124; CodeUtopia - The blog of Jani Hartikainen</title>
		<link>http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/comment-page-1/#comment-50133</link>
		<dc:creator>Best of 2009 &#124; CodeUtopia - The blog of Jani Hartikainen</dc:creator>
		<pubDate>Tue, 29 Dec 2009 18:34:56 +0000</pubDate>
		<guid isPermaLink="false">http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/#comment-50133</guid>
		<description>[...] Zend_Acl part 1: Misconceptions and Simple ACLs [...]</description>
		<content:encoded><![CDATA[<p>[...] Zend_Acl part 1: Misconceptions and Simple ACLs [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anandhi</title>
		<link>http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/comment-page-1/#comment-41737</link>
		<dc:creator>Anandhi</dc:creator>
		<pubDate>Mon, 31 Aug 2009 10:46:59 +0000</pubDate>
		<guid isPermaLink="false">http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/#comment-41737</guid>
		<description>hi am newbie to zend framework can u tell me where to add the following code
$role = &#039;guest&#039;;
if(isset($_SESSION[&#039;auth&#039;]))
  $role = &#039;user&#039;;
 
$acl = new My_Acl();
 
if($acl-&gt;isAllowed($role, &#039;news&#039;, &#039;comment&#039;)) {
  //Some code here to display a news box
}
and can send me the source code to my email id(anandhi.cse@gmail.com)??</description>
		<content:encoded><![CDATA[<p>hi am newbie to zend framework can u tell me where to add the following code<br />
$role = &#8216;guest&#8217;;<br />
if(isset($_SESSION['auth']))<br />
  $role = &#8216;user&#8217;;</p>
<p>$acl = new My_Acl();</p>
<p>if($acl-&gt;isAllowed($role, &#8216;news&#8217;, &#8216;comment&#8217;)) {<br />
  //Some code here to display a news box<br />
}<br />
and can send me the source code to my email id(anandhi.cse@gmail.com)??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zend Auth [1.8] With Bootstrap - Zend Framework Forum</title>
		<link>http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/comment-page-1/#comment-36391</link>
		<dc:creator>Zend Auth [1.8] With Bootstrap - Zend Framework Forum</dc:creator>
		<pubDate>Sun, 31 May 2009 14:25:08 +0000</pubDate>
		<guid isPermaLink="false">http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/#comment-36391</guid>
		<description>[...] Just an other starting point Zend_Acl part 1: Misconceptions and simple ACLs &#124; CodeUtopia [...]</description>
		<content:encoded><![CDATA[<p>[...] Just an other starting point Zend_Acl part 1: Misconceptions and simple ACLs | CodeUtopia [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zend_Acl part 1: Misconceptions and simple ACLs &#124; CodeUtopia</title>
		<link>http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/comment-page-1/#comment-36338</link>
		<dc:creator>Zend_Acl part 1: Misconceptions and simple ACLs &#124; CodeUtopia</dc:creator>
		<pubDate>Sat, 30 May 2009 18:08:49 +0000</pubDate>
		<guid isPermaLink="false">http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/#comment-36338</guid>
		<description>[...] the rest here: Zend_Acl part 1: Misconceptions and simple ACLs &#124; CodeUtopia   Share and [...]</description>
		<content:encoded><![CDATA[<p>[...] the rest here: Zend_Acl part 1: Misconceptions and simple ACLs | CodeUtopia   Share and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tims Blog &#187; Blog Archive &#187; In Training</title>
		<link>http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/comment-page-1/#comment-36060</link>
		<dc:creator>Tims Blog &#187; Blog Archive &#187; In Training</dc:creator>
		<pubDate>Tue, 26 May 2009 06:47:23 +0000</pubDate>
		<guid isPermaLink="false">http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/#comment-36060</guid>
		<description>[...] zend_acl part 1 [...]</description>
		<content:encoded><![CDATA[<p>[...] zend_acl part 1 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2009-05-19 &#171; sySolution</title>
		<link>http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/comment-page-1/#comment-35537</link>
		<dc:creator>links for 2009-05-19 &#171; sySolution</dc:creator>
		<pubDate>Tue, 19 May 2009 15:01:13 +0000</pubDate>
		<guid isPermaLink="false">http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/#comment-35537</guid>
		<description>[...] Zend_Acl part 1: Misconceptions and simple ACLs &#124; CodeUtopia (tags: zendframework zend_acl) [...]</description>
		<content:encoded><![CDATA[<p>[...] Zend_Acl part 1: Misconceptions and simple ACLs | CodeUtopia (tags: zendframework zend_acl) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: An idea for improving CakePHP’s ACL system &#124; linkfeedr</title>
		<link>http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/comment-page-1/#comment-31906</link>
		<dc:creator>An idea for improving CakePHP’s ACL system &#124; linkfeedr</dc:creator>
		<pubDate>Sun, 12 Apr 2009 20:44:48 +0000</pubDate>
		<guid isPermaLink="false">http://codeutopia.net/blog/2009/02/06/zend_acl-part-1-misconceptions-and-simple-acls/#comment-31906</guid>
		<description>[...] Click here to visit the full article on the original website.Recently, I stumbled upon an article about ACL in the Zend framework, written by Jani Hartikainen. While reading it, I realized that probably many people struggle with [...]</description>
		<content:encoded><![CDATA[<p>[...] Click here to visit the full article on the original website.Recently, I stumbled upon an article about ACL in the Zend framework, written by Jani Hartikainen. While reading it, I realized that probably many people struggle with [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
