<?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/"
	>

<channel>
	<title>ActiveCodeline</title>
	<atom:link href="http://activecodeline.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://activecodeline.com</link>
	<description>E-Commerce developer with Magento and Wordpress</description>
	<pubDate>Mon, 05 Jan 2009 00:28:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Utilize FireBug (and FirePHP) to speed up Magento development</title>
		<link>http://activecodeline.com/utilize-firebug-and-firephp-to-speed-up-magento-development/</link>
		<comments>http://activecodeline.com/utilize-firebug-and-firephp-to-speed-up-magento-development/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 00:26:07 +0000</pubDate>
		<dc:creator>branko</dc:creator>
		
		<category><![CDATA[Magento]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[ZendFramework]]></category>

		<category><![CDATA[debugg]]></category>

		<category><![CDATA[firebug]]></category>

		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://activecodeline.com/?p=406</guid>
		<description><![CDATA[Upsss&#8230; it&#8217;s 1 hour after midnight, still not sleeping. Hopefully I&#8217;ll manage to wake up in the morning, since I&#8217;m working. Anyhow&#8230; here&#8217;s a little something I made for you guys (for those who find it useful).
I was playing around with Zend Framework today, checking out available classes and methods. My eyes filled with yoj [...]]]></description>
			<content:encoded><![CDATA[<p>Upsss&#8230; it&#8217;s 1 hour after midnight, still not sleeping. Hopefully I&#8217;ll manage to wake up in the morning, since I&#8217;m working. Anyhow&#8230; here&#8217;s a little something I made for you guys (for those who find it useful).</p>
<p>I was playing around with Zend Framework today, checking out available classes and methods. My eyes filled with yoj when I came across <strong>Zend_Wildfire_Plugin_FirePhp</strong> class. It&#8217;s located under <strong>/Zend/Wildfire/Plugin/FirePhp.php</strong> folder in ZendFramework. It&#8217;s around 600 hundred lines or so. What&#8217;s cool about this class is that it has this cool method you can use to shoot out messages to FireBug. If my info is correct, this class is added to <strong>ZendFramework</strong> from version <strong>1.6</strong>. As of time of this writing, latest version of <strong>Magento</strong> is <strong>1.2.0.1</strong> and it comes packed with <strong>ZendFramework 1.7.2</strong> which is also the latest version as of time of this writing. So, there you go, bingo. We now have this cool little class that can save as a bunch of time (or not).<span id="more-406"></span></p>
<p>My point is, the PHP debugging solution generally suck. I know, it&#8217;s a hard word, and I like to avoid statements like that as much as I can, but sometimes the feeling just take you over <img src='http://activecodeline.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I wrote a little function that you can use in Magento to output messages to FireBug. This, off course, is just my version of doing things. Feel free to implement some different solution if you find my lacking in some aspect.</p>
<p><strong>Here is my function</strong></p>
<p><em>/**<br />
*<br />
* @author Branko Ajzele<br />
* @license GPL<br />
*<br />
* @param object $var Object we wish to debug in FireBug<br />
* @param string $label Nice little label we wish to add so we can see it in FireBug<br />
* @param string $style String holding one of values: &#8216;LOG&#8217;, &#8216;INFO&#8217;, &#8216;WARN&#8217;, &#8216;ERROR&#8217;, &#8216;TRACE&#8217;, &#8216;EXCEPTION&#8217;, &#8216;TABLE&#8217;<br />
* @return void Return null if Mage::setIsDeveloperMode(false) otherwise return message to browser<br />
*/<br />
function acl($var, $label, $style = &#8216;LOG&#8217;)<br />
{<br />
if(Mage::getIsDeveloperMode())<br />
{<br />
$request = new Zend_Controller_Request_Http();<br />
$response = new Zend_Controller_Response_Http();<br />
$channel = Zend_Wildfire_Channel_HttpHeaders::getInstance();<br />
$channel-&gt;setRequest($request);<br />
$channel-&gt;setResponse($response);</em></p>
<p><em>/*<br />
* Start output buffering<br />
*/<br />
ob_start();</em></p>
<p><em>Zend_Wildfire_Plugin_FirePhp::send($var, $label, $style);</em></p>
<p><em>/*<br />
Style     Description<br />
LOG     Displays a plain log message<br />
INFO     Displays an info log message<br />
WARN     Displays a warning log message<br />
ERROR     Displays an error log message that increments Firebug&#8217;s error count<br />
TRACE     Displays a log message with an expandable stack trace<br />
EXCEPTION     Displays an error long message with an expandable stack trace<br />
TABLE     Displays a log message with an expandable table</em></p>
<p><em>*/</em></p>
<p><em>/*<br />
* Flush log data to browser<br />
*/<br />
$channel-&gt;flush();<br />
$response-&gt;sendHeaders();<br />
}<br />
else<br />
{<br />
return null;<br />
}<br />
}</em></p>
<p>All you need to do is to place it inside the index.php file, the one inside the root Magento folder. You need to place it after Mage::setIsDeveloperMode(true); statement. Which by the way you need to uncomment (in development environment). That&#8217;s it, your done.</p>
<p>Now all you need to do is go into one of your template files like /catalog/product/view.phtml and call this function like</p>
<p><em><strong>acl($this-&gt;debug(), &#8216;Product view page aka view.phtml VAR: $this&#8217;);</strong></em><br />
or<br />
<strong><em> acl($_product-&gt;debug(), &#8216;Product view page aka view.phtml VAR: $_product&#8217;);</em></strong></p>
<p>I provided a screenshot below for you to see the result of the two function calls.</p>
<p><a href="http://activecodeline.com/wp-content/uploads/2009/01/magentodebugwith-zend_wildfire_plugin_firephp.jpeg"><img class="alignnone size-medium wp-image-408" title="magentodebugwith-zend_wildfire_plugin_firephp" src="http://activecodeline.com/wp-content/uploads/2009/01/magentodebugwith-zend_wildfire_plugin_firephp-300x187.jpg" alt="magentodebugwith-zend_wildfire_plugin_firephp" width="300" height="187" /></a></p>
<p>And here is the full version of my <a href="http://activecodeline.com/wp-content/uploads/2009/01/indexphp.zip">index.php</a> file.</p>
<p>To <strong>summarize</strong>. For this to work you need</p>
<ul>
<li><a href="http://www.mozilla.com/en-US/firefox/">Firefox</a> with installed <a href="http://www.getfirebug.com/">FireBug</a> and <a href="http://www.firephp.org/">FirePHP</a></li>
<li>Copy - Paste my function from above to your index.php file</li>
<li>Just call acl() function with appropriate params inside one of your template files</li>
</ul>
<p>Although this may not be the &#8220;happiest&#8221; soultion, since some messages get duplicated in FireBug if you call acl function from controllers, hope some of you find this useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://activecodeline.com/utilize-firebug-and-firephp-to-speed-up-magento-development/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Code completion on Magento&#8217;s $this object in ZendStudio</title>
		<link>http://activecodeline.com/code-completion-on-magento-this-object-in-zendstudio/</link>
		<comments>http://activecodeline.com/code-completion-on-magento-this-object-in-zendstudio/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 14:03:50 +0000</pubDate>
		<dc:creator>branko</dc:creator>
		
		<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://activecodeline.com/?p=400</guid>
		<description><![CDATA[One of the issues with Magento is figuring out what method object has. Sure you can use something like
echo &#8216;&#60;pre&#62;&#8217;;
print_r(get_class_methods(get_class($this)));
echo &#8216;&#60;/pre&#62;&#8217;;
to get the list of available methods. But is there an easier and most important, faster way to list methods and other relevant object class stuff? If, ba default, you write &#8220;$this-&#62;&#8221; then press &#8220;Ctrl [...]]]></description>
			<content:encoded><![CDATA[<p>One of the issues with Magento is figuring out what method object has. Sure you can use something like</p>
<p><em>echo &#8216;&lt;pre&gt;&#8217;;<br />
print_r(get_class_methods(get_class($this)));<br />
echo &#8216;&lt;/pre&gt;&#8217;;</em></p>
<p>to get the list of available methods. But is there an easier and most important, faster way to list methods and other relevant object class stuff? If, ba default, you write &#8220;$this-&gt;&#8221; then press &#8220;Ctrl + Space&#8221; in ZendStudio or NetBeans6.5 you would get&#8230; nothing. Both of these IDE&#8217;s cannot recognize the object context.</p>
<p>If you are using ZendStudio there is a cool trick you can do in order to enable code completion upon $this object inside your template.phtml files.</p>
<p><a href="http://activecodeline.com/wp-content/uploads/2009/01/zendstudio-variableobjectcontext-autocompletemethodnames.jpeg"><img class="alignnone size-medium wp-image-401" title="zendstudio-variableobjectcontext-autocompletemethodnames" src="http://activecodeline.com/wp-content/uploads/2009/01/zendstudio-variableobjectcontext-autocompletemethodnames-300x187.jpg" alt="zendstudio-variableobjectcontext-autocompletemethodnames" width="300" height="187" /></a></p>
<p>All you need to do is to write something like</p>
<p><strong>/* @var $this Companyname_Modulename_Block_Myentity */</strong></p>
<p>Now if you were to write something like &#8220;$this-&gt;&#8221; and press &#8220;Ctrl + Space&#8221; you would see Code Assistant showing you the list of available methods. What&#8217;s cool is that it also shows you the list of inherited methods.</p>
<p>This approach however does not work for NetBeans.</p>
]]></content:encoded>
			<wfw:commentRss>http://activecodeline.com/code-completion-on-magento-this-object-in-zendstudio/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Duplicated modules in Magento?</title>
		<link>http://activecodeline.com/duplicated-modules-in-magento/</link>
		<comments>http://activecodeline.com/duplicated-modules-in-magento/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 00:07:25 +0000</pubDate>
		<dc:creator>branko</dc:creator>
		
		<category><![CDATA[Magento]]></category>

		<category><![CDATA[duplicated]]></category>

		<category><![CDATA[module]]></category>

		<guid isPermaLink="false">http://activecodeline.com/?p=393</guid>
		<description><![CDATA[Well, I just lost half of hour trying to find the reason why my module gets duplicated on one of my pages. I was preparing some materials for a seminar I&#8217;m holding few days from now, when I got lost trying to solve the issue of my module being duplicated on one of pages I [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I just lost half of hour trying to find the reason why my module gets duplicated on one of my pages. I was preparing some materials for a seminar I&#8217;m holding few days from now, when I got lost trying to solve the issue of my module being duplicated on one of pages I assigned it to.</p>
<p>Just in case some of you got into the same situation, let me save you some trouble. Golden rule, do not forget to assign a name to a module. Will save you some headache.</p>
<p>I provided my screen shot below for you to see what I&#8217;m talking about.</p>
<p><a href="http://activecodeline.com/wp-content/uploads/2009/01/module1.jpg"><a href="http://activecodeline.com/wp-content/uploads/2009/01/module1.jpeg"><img class="alignnone size-medium wp-image-394" title="module1" src="http://activecodeline.com/wp-content/uploads/2009/01/module1-300x187.jpg" alt="module1" width="300" height="187" /></a><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://activecodeline.com/duplicated-modules-in-magento/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Zend Studio for Eclipse Professional &#124; review at Inchoo.net</title>
		<link>http://activecodeline.com/zend-studio-for-eclipse-professional-review-at-inchoonet/</link>
		<comments>http://activecodeline.com/zend-studio-for-eclipse-professional-review-at-inchoonet/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 11:20:18 +0000</pubDate>
		<dc:creator>branko</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://activecodeline.com/?p=388</guid>
		<description><![CDATA[For those interested, here is a short overview of Zend Studio for Eclipse Professional 6.1 I wrote at Inchoo.net. I say short because Zend Studio is huge&#8230; lots, and lots of features. Would be insane to go and list all of them.
I suggest you download it and try it out. Must say it looks great. [...]]]></description>
			<content:encoded><![CDATA[<p>For those interested, <a href="http://inchoo.net/wordpress/zend-studio-for-eclipse-professional-edition-6-1/">here</a> is a short overview of <strong><a href="http://www.zend.com/en/products/studio/">Zend Studio for Eclipse Professional 6.1</a></strong> I wrote at <a href="http://inchoo.net">Inchoo.net</a>. I say short because Zend Studio is huge&#8230; lots, and lots of features. Would be insane to go and list all of them.</p>
<p>I suggest you download it and try it out. Must say it looks great. I&#8217;m considering the possibility to purchase a license. I love the latests NetBeans because of it&#8217;s support for PHP, however seeing ZendStudio got my heart beating faster <img src='http://activecodeline.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Have a look&#8230; see for your self. Please shoot some thoughts and comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://activecodeline.com/zend-studio-for-eclipse-professional-review-at-inchoonet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Magento 1.2.0 out (found a little bug)</title>
		<link>http://activecodeline.com/magento-120-out-found-a-little-bug/</link>
		<comments>http://activecodeline.com/magento-120-out-found-a-little-bug/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 14:16:54 +0000</pubDate>
		<dc:creator>branko</dc:creator>
		
		<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://activecodeline.com/?p=374</guid>
		<description><![CDATA[Well, Magento 1.2.0 is out. Just downloaded it, installed and found a little bug   If you go to product view page and look under Additional information section you will see raw HTML outputted to the screen. That is if you have assigned any of the additional information to the product you are viewing.
I [...]]]></description>
			<content:encoded><![CDATA[<p>Well, Magento 1.2.0 is out. Just downloaded it, installed and found a little bug <img src='http://activecodeline.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  If you go to product view page and look under Additional information section you will see raw HTML outputted to the screen. That is if you have assigned any of the additional information to the product you are viewing.</p>
<p>I provided two of the screenshots for you to see what am I talking about.</p>
<p><a href="http://activecodeline.com/wp-content/uploads/2008/12/m120.jpg"><img class="alignnone size-thumbnail wp-image-375" title="m120" src="http://activecodeline.com/wp-content/uploads/2008/12/m120-150x150.jpg" alt="m120" width="150" height="150" /></a> <a href="http://activecodeline.com/wp-content/uploads/2008/12/m120b.jpg"><img class="alignnone size-thumbnail wp-image-376" title="m120b" src="http://activecodeline.com/wp-content/uploads/2008/12/m120b-150x150.jpg" alt="m120b" width="150" height="150" /></a></p>
<p>And here is one way how you can fix this.</p>
<p>Open the following file<br />
<strong> /app/code/core/Mage/Catalog/Block/Product/View/Attributes.php</strong></p>
<p>Now on line 71 you will see the following code<br />
<strong> $value = $this-&gt;htmlEscape($value);</strong></p>
<p>Just replace it with<br />
<strong> $value = $value;</strong></p>
<p>My first impression on new Magento? Behaves faster&#8230; not sure, time will show <img src='http://activecodeline.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://activecodeline.com/magento-120-out-found-a-little-bug/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Do you use some kind of code snippet manager?</title>
		<link>http://activecodeline.com/do-you-use-some-kind-of-code-snippet-manager/</link>
		<comments>http://activecodeline.com/do-you-use-some-kind-of-code-snippet-manager/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 12:15:58 +0000</pubDate>
		<dc:creator>branko</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://activecodeline.com/do-you-use-some-kind-of-code-snippet-manager/</guid>
		<description><![CDATA[Hi guys, and girls. I have a quick one&#8230; Does anyone of you use any kind of code snippet manager software. I&#8217;m thinking of implementing that philosophy into our team. A lot of code parts has been rewritten from scratch so I would like to speed some thing up. I only have one condition for [...]]]></description>
			<content:encoded><![CDATA[<p>Hi guys, and girls. I have a quick one&#8230; Does anyone of you use any kind of code snippet manager software. I&#8217;m thinking of implementing that philosophy into our team. A lot of code parts has been rewritten from scratch so I would like to speed some thing up. I only have one condition for code snipper management software. I need it to save passwords in a &#8220;open&#8221; manner, like plain text or XML files or even to database. Basically I would like to make a intranet solution latter based on those code snippets. Any ideas? Please, share some thoughts.</p>
]]></content:encoded>
			<wfw:commentRss>http://activecodeline.com/do-you-use-some-kind-of-code-snippet-manager/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Starting out with GIT, Version Control System</title>
		<link>http://activecodeline.com/starting-out-with-git-version-control-system/</link>
		<comments>http://activecodeline.com/starting-out-with-git-version-control-system/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 22:25:23 +0000</pubDate>
		<dc:creator>branko</dc:creator>
		
		<category><![CDATA[OpenSource]]></category>

		<guid isPermaLink="false">http://activecodeline.com/?p=371</guid>
		<description><![CDATA[Recently our company decided to switch to GIT. First thing i noticed about GIT Version Control System is that it&#8217;s written by Linus. Cool  I couldn&#8217;t help my self so I watched entire Google Tach Talk speech that Linus held.

If you are just starting out with GIT, I would strongly suggest you check out [...]]]></description>
			<content:encoded><![CDATA[<p>Recently our company decided to switch to GIT. First thing i noticed about GIT Version Control System is that it&#8217;s written by Linus. Cool <img src='http://activecodeline.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> I couldn&#8217;t help my self so I watched entire Google Tach Talk speech that Linus held.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/4XpnKHJAok8&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/4XpnKHJAok8&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>If you are just starting out with GIT, I would strongly suggest you check out the above video. After that I suggest you jump to <a href="http://www.gitcasts.com/">gitcasts.com</a>. There are some great screencasts to get you started on using GIT. And finally, go to official GITs documentation at <a href="http://git.or.cz/">git.or.cz</a>.</p>
<p>Finally there is <a href="http://github.com/">github.com</a>, the GIT hosting solution. All of these are free so they should get you up n running with GIT in a day or so.</p>
<p>Although GIT is somewhat harder to learn than Subversion is, these materials should get you up n running.</p>
]]></content:encoded>
			<wfw:commentRss>http://activecodeline.com/starting-out-with-git-version-control-system/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Yet another article on listing products on sale in Magento</title>
		<link>http://activecodeline.com/yet-another-article-on-listing-products-on-sale-in-magento/</link>
		<comments>http://activecodeline.com/yet-another-article-on-listing-products-on-sale-in-magento/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 14:36:42 +0000</pubDate>
		<dc:creator>branko</dc:creator>
		
		<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://activecodeline.com/?p=366</guid>
		<description><![CDATA[For those interested, I wrote an article on listing items on sale in Magento. I already wrote somewhat similar article before, however this one is far more useful and flexible. You can read it at Inchoo.net or access it via direct link.
]]></description>
			<content:encoded><![CDATA[<p>For those interested, I wrote an article on listing items on sale in Magento. I already wrote somewhat similar article before, however this one is far more useful and flexible. You can read it at <a href="http://inchoo.net">Inchoo.net</a> or access it via direct <a href="http://inchoo.net/ecommerce/magento/more-flexible-approach-for-listing-out-products-on-sale-in-magento">link</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://activecodeline.com/yet-another-article-on-listing-products-on-sale-in-magento/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Switched to new theme</title>
		<link>http://activecodeline.com/switched-to-new-theme/</link>
		<comments>http://activecodeline.com/switched-to-new-theme/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 16:38:25 +0000</pubDate>
		<dc:creator>branko</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://activecodeline.com/?p=364</guid>
		<description><![CDATA[For the last few days I&#8217;ve been trying to redesign site in my head. Finally I decided to ditch my previous theme and go with the free one. I wanted to give a lighter look to my site and emphasize the content over graphics, however I have no free time of my own to play [...]]]></description>
			<content:encoded><![CDATA[<p>For the last few days I&#8217;ve been trying to redesign site in my head. Finally I decided to ditch my previous theme and go with the free one. I wanted to give a lighter look to my site and emphasize the content over graphics, however I have no free time of my own to play around with Photoshop. I feel much comfortable with this one <img src='http://activecodeline.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://activecodeline.com/switched-to-new-theme/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A word of update, ActiveDealers plugin under dev</title>
		<link>http://activecodeline.com/a-word-of-update-activedealers-plugin-under-dev/</link>
		<comments>http://activecodeline.com/a-word-of-update-activedealers-plugin-under-dev/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 17:05:54 +0000</pubDate>
		<dc:creator>branko</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[eav]]></category>

		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://activecodeline.com/?p=359</guid>
		<description><![CDATA[It&#8217;s been a while since my last post. I simply have to much on my mind and under my fingers, typing all that code. Last weekend I started development of a wordpress plugin I call ActiveDealers. Here are two screenshots for all of you interested in what&#8217;s it about.
Main idea of building the plugin using [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since my last post. I simply have to much on my mind and under my fingers, typing all that code. Last weekend I started development of a wordpress plugin I call ActiveDealers. Here are two screenshots for all of you interested in what&#8217;s it about.</p>
<div id="attachment_360" class="wp-caption alignnone" style="width: 310px"><a href="http://activecodeline.com/wp-content/uploads/2008/12/e2a_1.jpg"><img src="http://activecodeline.com/wp-content/uploads/2008/12/e2a_1-300x154.jpg" alt="Dynamic addition of attributes during application lifetime" title="e2a_1" width="300" height="154" class="size-medium wp-image-360" /></a><p class="wp-caption-text">Dynamic addition of attributes during application lifetime</p></div><br />
<div id="attachment_361" class="wp-caption alignnone" style="width: 310px"><a href="http://activecodeline.com/wp-content/uploads/2008/12/e2a_2.jpg"><img src="http://activecodeline.com/wp-content/uploads/2008/12/e2a_2-300x154.jpg" alt="Entities (dealers) with dynamicly added attributes" title="e2a_2" width="300" height="154" class="size-medium wp-image-361" /></a><p class="wp-caption-text">Entities (dealers) with dynamicly added attributes</p></div>
<p>Main idea of building the plugin using EAV database model came from Magento platform. My job focus is entirely on Magento and Wordpress development so some ideas and application design philosophie of Magento seemed so tasty so I decided to implement them in WP plugin. Still need to implement the Google Maps and photo upload to specific dealer (entity), then some testing and possible code refactoring until I release it. Not sure on the license yet. Will keep you posted.</p>
<p>If some of you are looking for a quality custom WordPress plugin development, feel free to contact us at <a href="http://surgeworks.com">Surgeworks</a> or <a href="http://inchoo.net">Inchoo</a>.</p>
<p>Wish you all the best for holidays&#8230; Cheers&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://activecodeline.com/a-word-of-update-activedealers-plugin-under-dev/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
