<?xml version="1.0" encoding="UTF-8" ?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
			<title>pm-fx.com | RSS (english)</title>
			<link>http://pm-fx.com/en/rss</link>
			<description></description>
			<language>en</language>
			<copyright>piotr matysiak portfolio 2006</copyright>
			<ttl>120</ttl><item>
   <title>Monitor your MODX Evo performance</title>
   <link>http://pm-fx.com/en/blog/2012/monitor-your-modx-evo-performance</link>
   <description><![CDATA[ <p>This is a short piece of code that I used to always place in my MODX projects. It's very useful and helps monitor MODX performance. 
Thanks to special MODX tags, it simply shows how many queries were made outside cache, how much time they took, how long it took to...</p> ]]></description>
   <pubDate>Sun, 22 Apr 2012 13:26:40 +0200</pubDate>
   <guid isPermaLink="false">http://pm-fx.com/en/blog/2012/monitor-your-modx-evo-performance</guid>
   <dc:creator>piotr matysiak portfolio</dc:creator>
   
</item> 

<item>
   <title>Uncached Ditto call with pagination</title>
   <link>http://pm-fx.com/en/blog/2012/uncached-ditto-call-with-pagination</link>
   <description><![CDATA[ <p>How to achive cached document and uncached Ditto with pagination in MODX Evo.
It's a known problem - or maybe I should say difficulty - to have Ditto with pagination inside a document which have caching turned on. 
"Why?" you may ask. When you have cached document with uncached Ditto call,...</p> ]]></description>
   <pubDate>Thu, 19 Apr 2012 16:43:12 +0200</pubDate>
   <guid isPermaLink="false">http://pm-fx.com/en/blog/2012/uncached-ditto-call-with-pagination</guid>
   <dc:creator>piotr matysiak portfolio</dc:creator>
   
</item> 

<item>
   <title>Filling eForm report dynamically</title>
   <link>http://pm-fx.com/en/blog/2012/filling-eform-report-dynamically</link>
   <description><![CDATA[ <p>eForm function that you will find below, was a life saver for me not so long ago. 
eForm is one of MODX most popular snippet. It is responsible for generating and processing forms in MODX Evo. It works like a charm with static form like those used for contact/feedback/booking.
But hey,...</p> ]]></description>
   <pubDate>Wed, 31 Aug 2011 13:18:16 +0200</pubDate>
   <guid isPermaLink="false">http://pm-fx.com/en/blog/2012/filling-eform-report-dynamically</guid>
   <dc:creator>piotr matysiak portfolio</dc:creator>
   
</item> 

<item>
   <title>Setting placeholder via simple snippet</title>
   <link>http://pm-fx.com/en/blog/2012/setting-placeholder-via-simple-snippet</link>
   <description><![CDATA[ <p>It's not often situation but sometimes there is a need to set up your own placeholder. For example I needed to do this when I wanted to process data given to PHx (in this situation PHx was trimming HTML tags and shortening content). PHx refused to process data retrieved from...</p> ]]></description>
   <pubDate>Wed, 31 Aug 2011 13:17:48 +0200</pubDate>
   <guid isPermaLink="false">http://pm-fx.com/en/blog/2012/setting-placeholder-via-simple-snippet</guid>
   <dc:creator>piotr matysiak portfolio</dc:creator>
   
</item> 

<item>
   <title>MODX Evo - checking user group</title>
   <link>http://pm-fx.com/en/blog/2011/modx-evo-checking-user-group</link>
   <description><![CDATA[ <p>Sometimes there is a need to display part of website only for specific user group. In this case, how can we check (in frontend) if currently logged user belongs to a group called for example "Partners"? PHx modifiers and a little snippet which gives us true/false (when we give it...</p> ]]></description>
   <pubDate>Wed, 31 Aug 2011 13:17:26 +0200</pubDate>
   <guid isPermaLink="false">http://pm-fx.com/en/blog/2011/modx-evo-checking-user-group</guid>
   <dc:creator>piotr matysiak portfolio</dc:creator>
   
</item> 

<item>
   <title>MODX - current date snippet</title>
   <link>http://pm-fx.com/en/blog/2011/modx-current-date-snippet</link>
   <description><![CDATA[ <p>Snippet displaying current date with possibility of changing format by php date().
Snippet
Snippet name: currentDate
&lt;?php// Displaying current date// Usage example: [ [ currentDate?format=`d.m.Y` ] ]// By: Piotr Matysiak / pm-fx.comif($format)$output = date(\"$format\");else$output = date(\"d.m.y\");return $output;?&gt; 
Usage example
[ [ currentDate ] ] = [ [ currentDate?format=`d.m.Y` ] ] =  
Parameters:

format -...</p> ]]></description>
   <pubDate>Wed, 31 Aug 2011 13:09:53 +0200</pubDate>
   <guid isPermaLink="false">http://pm-fx.com/en/blog/2011/modx-current-date-snippet</guid>
   <dc:creator>piotr matysiak portfolio</dc:creator>
   
</item> 

<item>
   <title>Getting variable value from _GET</title>
   <link>http://pm-fx.com/en/blog/2011/modx-getting-variable-value-from-get</link>
   <description><![CDATA[ <p>Simple piece of PHP which will get value from any _GET variable.
Snippet
Snippet name: GET
&lt;?php// Getting variable from _GET// Usage example: [ [ GET?v=`yourGetVariable` ] ]// By: Piotr Matysiak / pm-fx.com$output = $_GET[$v];if(!$_GET[$v]){$output = 'none';}return $output;?&gt; 
Usage example
[ [ GET?v=`yourGetVariable` ] ] 
Parameters:

v - variable name existing in GET

For example let's...</p> ]]></description>
   <pubDate>Wed, 31 Aug 2011 13:00:52 +0200</pubDate>
   <guid isPermaLink="false">http://pm-fx.com/en/blog/2011/modx-getting-variable-value-from-get</guid>
   <dc:creator>piotr matysiak portfolio</dc:creator>
   
</item> 

<item>
   <title>Check if MaxiGallery have images...</title>
   <link>http://pm-fx.com/en/blog/2011/check-if-maxigallery-have-images</link>
   <description><![CDATA[ <p>The snippet below checks if MaxiGallery have images and if it does, displays full image path.It is very useful when we have listing of documents where main picture comes from MaxiGallery.&nbsp;Snippet was made for&nbsp;twojewczasy.pl&nbsp;and it works like a charm :)
Snippet
Snippet name MaxiGallery_getThumb
&lt;?php// by pm-fx.com$table = $modx-&gt;getFullTableName( 'maxigallery' );$query = $modx-&gt;db-&gt;query('SELECT...</p> ]]></description>
   <pubDate>Tue, 30 Aug 2011 12:49:34 +0200</pubDate>
   <guid isPermaLink="false">http://pm-fx.com/en/blog/2011/check-if-maxigallery-have-images</guid>
   <dc:creator>piotr matysiak portfolio</dc:creator>
   
</item> 

<item>
   <title>MODX Evo - clearCache snippet</title>
   <link>http://pm-fx.com/en/blog/2011/modx-evo-clearcache-snippet</link>
   <description><![CDATA[ <p>Have you ever wonder how to clear cache via snippet? It's just too easy ;)
&lt;?phpinclude_once $modx-&gt;config['base_path']."manager/processors/cache_sync.class.processor.php";$sync = new synccache();$sync-&gt;setCachepath("assets/cache/");$sync-&gt;setReport(false);$sync-&gt;emptyCache();?&gt;</p> ]]></description>
   <pubDate>Thu, 16 Jun 2011 16:57:29 +0200</pubDate>
   <guid isPermaLink="false">http://pm-fx.com/en/blog/2011/modx-evo-clearcache-snippet</guid>
   <dc:creator>piotr matysiak portfolio</dc:creator>
   
</item> 

<item>
   <title>MODX - generating meta tags</title>
   <link>http://pm-fx.com/en/blog/2011/modx-generating-meta-tags-with-metax</link>
   <description><![CDATA[ <p>I found MetaX&nbsp;about month ago. It is a snippet that generates beautiful meta tags for your site. I was sceptic at first, because I had my own simple tool, but I gave MetaX a chance. What can I say? It was worth it!
Pros

automatization
clean code
checking for favicon (mobile too)
checking for keywords...</p> ]]></description>
   <pubDate>Sat, 19 Mar 2011 10:48:07 +0100</pubDate>
   <guid isPermaLink="false">http://pm-fx.com/en/blog/2011/modx-generating-meta-tags-with-metax</guid>
   <dc:creator>piotr matysiak portfolio</dc:creator>
   
</item> 

	</channel>
</rss>
