<?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>Tarik KALLIDA blog&#039;s</title>
	<atom:link href="http://tkallida.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://tkallida.org</link>
	<description>A Web developer</description>
	<lastBuildDate>Wed, 28 Apr 2010 15:48:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Remove Generator META in Joomla</title>
		<link>http://tkallida.org/web-development/joomla/remove-generator-meta-in-joomla/</link>
		<comments>http://tkallida.org/web-development/joomla/remove-generator-meta-in-joomla/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 14:21:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla 1.5]]></category>
		<category><![CDATA[generator]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[remove]]></category>

		<guid isPermaLink="false">http://tkallida.org/?p=39</guid>
		<description><![CDATA[For security reason, you may want to remove generator META in your joomla project :

for this you can simply add this line :
 $this-&#62;setGenerator(''); 
in the top of your &#8216;index.php&#8217; template file.
]]></description>
			<content:encoded><![CDATA[<p>For security reason, you may want to remove generator META in your joomla project :</p>
<p><a href="http://tkallida.org/media/2010/04/setgenerator.png"><img src="http://tkallida.org/media/2010/04/setgenerator.png" alt="" title="setgenerator" width="550" height="37" class="alignnone size-full wp-image-40" /></a></p>
<p>for this you can simply add this line :</p>
<pre class="brush: php;"> $this-&gt;setGenerator(''); </pre>
<p>in the top of your &#8216;index.php&#8217; template file.</p>
]]></content:encoded>
			<wfw:commentRss>http://tkallida.org/web-development/joomla/remove-generator-meta-in-joomla/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Test if you’re on the homepage in Joomla</title>
		<link>http://tkallida.org/web-development/joomla/test-if-you%e2%80%99re-on-the-homepage-in-joomla/</link>
		<comments>http://tkallida.org/web-development/joomla/test-if-you%e2%80%99re-on-the-homepage-in-joomla/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 14:13:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla 1.5]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[jooma]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://tkallida.org/?p=34</guid>
		<description><![CDATA[Hello,
today I&#8217;ll show you an elegant way to check if we are in the home page of our Joomla project :
 $IsHomePage =  false;
$menu = &#38;JSite::getMenu();
if( $menu-&#62;_default == $menu-&#62;_active)
{
	$IsHomePage = true;
}
it&#8217;s specialy helpfull for intergators (templates).
]]></description>
			<content:encoded><![CDATA[<p>Hello,</p>
<p>today I&#8217;ll show you an elegant way to check if we are in the home page of our Joomla project :</p>
<pre class="brush: php;"> $IsHomePage =  false;
$menu = &amp;JSite::getMenu();
if( $menu-&gt;_default == $menu-&gt;_active)
{
	$IsHomePage = true;
}</pre>
<p>it&#8217;s specialy helpfull for intergators (templates).</p>
]]></content:encoded>
			<wfw:commentRss>http://tkallida.org/web-development/joomla/test-if-you%e2%80%99re-on-the-homepage-in-joomla/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Create a new select &#8220;option&#8221; and inject it</title>
		<link>http://tkallida.org/web-development/mootools/create-a-new-select-option-and-inject-it/</link>
		<comments>http://tkallida.org/web-development/mootools/create-a-new-select-option-and-inject-it/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 20:21:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mootools]]></category>

		<guid isPermaLink="false">http://tkallida.org/?p=24</guid>
		<description><![CDATA[I&#8217;ve been looking this evening for a way to inject an &#8220;option&#8221; into select list using Mootools (work for 1.11 and 1.2 version),
Here the solution :

var MyElement =  new Element('option');    
MyElement.inject($('my_select'));
MyElement.setProperty('value','0');
MyElement.appendText('hello');

]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been looking this evening for a way to inject an &#8220;option&#8221; into select list using Mootools (work for 1.11 and 1.2 version),</p>
<p>Here the solution :</p>
<pre class="brush: php;">
var MyElement =  new Element('option');    
MyElement.inject($('my_select'));
MyElement.setProperty('value','0');
MyElement.appendText('hello');
</pre>
]]></content:encoded>
			<wfw:commentRss>http://tkallida.org/web-development/mootools/create-a-new-select-option-and-inject-it/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Modify module position in prestashop</title>
		<link>http://tkallida.org/web-development/prestashop/modify-module-position-in-prestashop/</link>
		<comments>http://tkallida.org/web-development/prestashop/modify-module-position-in-prestashop/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 21:52:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Prestashop]]></category>
		<category><![CDATA[modify]]></category>
		<category><![CDATA[module]]></category>
		<category><![CDATA[position]]></category>

		<guid isPermaLink="false">http://tkallida.org/web-development/modify-module-position-in-prestashop/</guid>
		<description><![CDATA[Back Office &#62;&#62; Modules &#62;&#62; Positions
if you try to move module from right to left (for example), normally and logically you try to edit it :

but the option “Hook intro” is disabled , humm very confusing 
the only way that I’ve found is to delete the module, and re-transplant it.
]]></description>
			<content:encoded><![CDATA[<p><strong><em>Back Office &gt;&gt; Modules &gt;&gt; Positions</em></strong></p>
<p>if you try to move module from right to left (for example), normally and logically you try to edit it :</p>
<p><a href="http://tkallida.org/media/2010/02/module_position1.jpg"></a><a href="http://tkallida.org/media/2010/02/module_position1.jpg"><img class="alignnone size-full wp-image-21" title="module_position1" src="http://tkallida.org/media/2010/02/module_position1.jpg" alt="" width="461" height="226" /></a></p>
<p>but the option “Hook intro” is disabled , humm very confusing <img src="http://www.tkallida.org/wp-includes/images/smilies/icon_neutral.gif" alt=":-|" /></p>
<p>the only way that I’ve found is to <strong>delete</strong> the module, and re-<strong>transplant</strong> it.</p>
]]></content:encoded>
			<wfw:commentRss>http://tkallida.org/web-development/prestashop/modify-module-position-in-prestashop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
