
<?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>Codex ofoZ Technologies &#187; Events</title>
	<atom:link href="http://codex.oxfoz.com/tag/events/feed/" rel="self" type="application/rss+xml" />
	<link>http://codex.oxfoz.com</link>
	<description>oXfoZ developpment blog</description>
	<lastBuildDate>Mon, 21 Dec 2009 23:06:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>New Plugin: Post Event [Presentation]</title>
		<link>http://codex.oxfoz.com/2009/08/12/new-plugin-post-event/</link>
		<comments>http://codex.oxfoz.com/2009/08/12/new-plugin-post-event/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 09:24:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Post Event]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[event management]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[google map]]></category>
		<category><![CDATA[iCal]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://codex.oxfoz.com/?p=4</guid>
		<description><![CDATA[You often ask how could you create event using wordpress, organize jobs meeting, party or holidays with your friends and contact them easily ?
Then "Post Event" is THE events plugin for wordpress you are looking for!]]></description>
			<content:encoded><![CDATA[<h2 style="color:#0a71b3">Description</h2>
<p>You often ask how could you create event using wordpress, organize jobs meeting, party or holidays with your friends and contact them easily ?<br />
Then &#8220;Post Event&#8221; is THE events plugin for wordpress you are looking for!</p>
<p>Post Event allows you to define event information (date, location, schedule&#8230;) directly in the post administration page. All event information is automatically displayed in the post page (single.php), including Google Maps AND iCal link (integration in your agenda) without any code modification!</p>
<p>It is very usefull (Google Maps and iCal integration), high-performance and can be use for any event.<br />
We have based the development on wordpress structure, without any modification of the database (events details are loaded as meta of the posts).<br />
The plugin is provided in english and french but can be translated in any languages (.po file included).</p>
<h2 style="color:#0a71b3">Installation</h2>
<p>This plugin will be located in the WordPress plugin folder and activated from the admin panel.</p>
<p>* Download the plugin here: http://wordpress.org/extend/plugins/post-event,<br />
* Upload the plugin to the wp-content/plugins folder in your WordPress directory (wp-content/plugins),<br />
* Activate in your admin panel (under the &#8220;plugins&#8221; section).<br />
* Don&#8217;t forget to define a google key in the admin/settings menu ! This key will allow you to generate google maps for your events</p>
]]></content:encoded>
			<wfw:commentRss>http://codex.oxfoz.com/2009/08/12/new-plugin-post-event/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Plugin: Post Event [Frequently Asked Questions]</title>
		<link>http://codex.oxfoz.com/2009/08/12/new-plugin-post-event-frequently-asked-questions/</link>
		<comments>http://codex.oxfoz.com/2009/08/12/new-plugin-post-event-frequently-asked-questions/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 09:22:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Post Event]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[event management]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[google map]]></category>
		<category><![CDATA[iCal]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://codex.oxfoz.com/?p=39</guid>
		<description><![CDATA[What are the modification in the admin panel after plugin activation?
I want to display in my home page the 5 next events of cat "evenementSportif". Can we do that?!
What are the other functions I can call on the front side?
How can I translate Post Event in my own language?]]></description>
			<content:encoded><![CDATA[<h2 style="color:#0a71b3">Frequently Asked Questions</h2>
<p>-&gt; What are the modification in the admin panel after plugin activation?</p>
<p>* A new meta box named &#8216;PostEventSectionId&#8217; is created in the right sidebar when you edit or create a post. This is where you will be able to edit the event<br />
* A new section &#8220;Post Event&#8221; is available in the option settings</p>
<p>-&gt; I want to display in my home page the 5 next events of cat &#8220;evenementSportif&#8221;. Can we do that?!</p>
<p>Of course <img src='http://codex.oxfoz.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  You just need to call &#8220;query_events&#8221; function, with the same arguments as the standard query_posts:</p>
<p>&lt;?php query_events(&#8216;category_name=evenementSportif&amp;showposts=5&#8242;); ?&gt;<br />
&lt;ul&gt;<br />
&lt;?php if (have_posts()) : while (have_posts()) : the_post();?&gt;<br />
&lt;li&gt;&lt;a href=&#8221;&lt;?php the_permalink() ?&gt;&#8221;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;small&gt;&lt;?php echo mysql2date(get_option(&#8216;date_format&#8217;), get_post_event_end_date(), true) ?&gt;&lt;/small&gt;&lt;/li&gt;<br />
&lt;?php endwhile; endif; ?&gt;<br />
&lt;/ul&gt;</p>
<p>-&gt; What are the other functions I can call on the front side?</p>
<p>Functions you can call on front-side :<br />
query_events: load event from databases and sort them by start date, by desc as default, Sort order could be change in admin panel.<br />
get_post_event_ical: return event iCal document parametre: void.<br />
get_post_event_start_date: return event start date parametre: void.<br />
get_post_event_end_date: return event end date parametre: void.<br />
get_post_event_start_time: return event start time parametre: void.<br />
get_post_event_end_time: return event end date parametre: void.<br />
get_post_event_place: return event place parametre: void.<br />
get_post_event_as_object: return event as object: void.<br />
the_post_event_html: display event details parametre: void.<br />
the_post_event_map: display event map parametre: void.</p>
<p>-&gt; How can I translate Post Event in my own language? =</p>
<p>To create a language file you have to create a document like: PostEvent-lang_LANG.mo wich is compiled version of lang_LANG.po.<br />
To create a language file you need gettext and the command line to enter is : msgfmt lang_LANG.po -o PostEvent-lang_LANG.mo</p>
]]></content:encoded>
			<wfw:commentRss>http://codex.oxfoz.com/2009/08/12/new-plugin-post-event-frequently-asked-questions/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>New Plugin: Post Event [Screenshot]</title>
		<link>http://codex.oxfoz.com/2009/08/12/new-plugin-post-event-screenshot/</link>
		<comments>http://codex.oxfoz.com/2009/08/12/new-plugin-post-event-screenshot/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 09:21:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Post Event]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[event management]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[google map]]></category>
		<category><![CDATA[iCal]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://codex.oxfoz.com/?p=40</guid>
		<description><![CDATA[Some screen shots: Admin general options and events options; front-side integration]]></description>
			<content:encoded><![CDATA[<h2 style="color:#0a71b3">Screenshots</h2>
<h5><em><span style="color: #888888">Click the picture to enlarge</span></em></h5>
<p>1. First screen shot corresponds to the general options (Google API Key&#8230;)<br />
<a href="http://codex.oxfoz.com/files/2009/08/screenshot-1-1023x470.png"><img class="alignnone size-large wp-image-25" src="http://codex.oxfoz.com/files/2009/08/screenshot-1-1023x470.png" alt="screenshot-1" width="500" /></a><br />
2. In the second screen shot, we can see all the event options (meta box): date, location&#8230;<br />
<a href="http://codex.oxfoz.com/files/2009/08/screenshot-2-1024x474.png"><img class="alignnone size-large wp-image-26" src="http://codex.oxfoz.com/files/2009/08/screenshot-2-1024x474.png" alt="screenshot-2" width="500" /></a><br />
3. Third screen shot corresponds to the event in the front side&#8230;<br />
<a href="http://codex.oxfoz.com/files/2009/08/Screenshot-3-1024x461.png"><img class="alignnone size-large wp-image-27" src="http://codex.oxfoz.com/files/2009/08/Screenshot-3-1024x461.png" alt="Screenshot-3" width="500" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://codex.oxfoz.com/2009/08/12/new-plugin-post-event-screenshot/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

