<?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>free Zend Framework screencasts - Zendcasts &#187; zend_tool</title>
	<atom:link href="http://www.zendcasts.com/tag/zend_tool/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zendcasts.com</link>
	<description>free Zend Framework screencasts. Video tutorials to get you up to speed with different parts of the Zend Framework and enterprise PHP development.</description>
	<lastBuildDate>Mon, 12 Dec 2011 21:14:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Reporting with Zend_Tool and Zend_Log</title>
		<link>http://www.zendcasts.com/reporting-with-zend_tool-and-zend_log/2010/04/</link>
		<comments>http://www.zendcasts.com/reporting-with-zend_tool-and-zend_log/2010/04/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 15:16:05 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[simplexml]]></category>
		<category><![CDATA[zend_log]]></category>
		<category><![CDATA[zend_tool]]></category>

		<guid isPermaLink="false">http://www.zendcasts.com/?p=336</guid>
		<description><![CDATA[Reporting with Zend_Tool and Zend_Log This video uses a collection of powerful PHP libraries in order to illustrate how easy it really is to build a command-line tool for reporting against XML files. We start off by logging visitor statistics in the controller into a log file with Zend_Log. Once data has been collected, we&#8217;re…]]></description>
			<content:encoded><![CDATA[<p>Reporting with Zend_Tool and Zend_Log</p>
<p>This video uses a collection of powerful PHP libraries in order to illustrate how easy it really is to build a command-line tool for reporting against XML files. We start off by logging visitor statistics in the controller into a log file with Zend_Log. Once data has been collected, we&#8217;re then able to utilize SimpleXML, Zend_Date and the Zend_Tool component to build out a very simple reporting tool. This is of course just an example of what&#8217;s possible. What comes to mind for me is building a cron job for generating reports based on the zf.sh executable, or even just doing backups at the command-line with the help of a fully integrated Zend Framework installation.</p>
<p>I&#8217;ve noticed that configuration information isn&#8217;t properly loaded into Zend_Tool and am still trying to figure out the design decisions there. You&#8217;ll notice that I was having some timezone issues with regards to Zend_Date and it seems that specifying a timezone in my application.ini file didn&#8217;t resolve the issue.</p>
<p>Grab a <a href="http://zendcasts.googlecode.com/svn/trunk/zc54-reporting-with-zend-tool-and-zend-log/zc54-reporting-with-zend-tool-and-zend-log.zip">copy of the project</a> or <a href="http://code.google.com/p/zendcasts/source/browse/#svn/trunk/zc54-reporting-with-zend-tool-and-zend-log">browse the repository</a>.</p>
<p>Enjoy!</p>

]]></content:encoded>
			<wfw:commentRss>http://www.zendcasts.com/reporting-with-zend_tool-and-zend_log/2010/04/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
<enclosure url="http://www.zendcasts.com/wp-content/uploads/2010/04/zc54-zend-tool-parsing-xml-from-zend-log-desktop.mov" length="122491077" type="video/quicktime" />
<enclosure url="http://www.zendcasts.com/wp-content/uploads/2010/04/zc54-zend-tool-parsing-xml-from-zend-log-iphone.m4v" length="123064044" type="video/x-m4v" />
		</item>
		<item>
		<title>Integrating Zend_Tool Into Your Application</title>
		<link>http://www.zendcasts.com/integrating-zend_tool-into-your-application/2010/04/</link>
		<comments>http://www.zendcasts.com/integrating-zend_tool-into-your-application/2010/04/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 21:30:32 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[Web Architecture]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[command-line]]></category>
		<category><![CDATA[zend_manifest]]></category>
		<category><![CDATA[zend_tool]]></category>

		<guid isPermaLink="false">http://www.zendcasts.com/?p=333</guid>
		<description><![CDATA[This screencast should help you setup Zend_Tool in your Zend Framework application. Zend_Tool is a command line entry point into your application. Currently, Zend_Tool is used to scaffold (build generic files) the Zend Framework project structure, modules, controllers, database table classes and other tedious processes. The goal of this video is to start looking at…]]></description>
			<content:encoded><![CDATA[<p>This screencast should help you setup Zend_Tool in your Zend Framework application. Zend_Tool is a command line entry point into your application. Currently, Zend_Tool is used to scaffold (build generic files) the Zend Framework project structure, modules, controllers, database table classes and other tedious processes. The goal of this video is to start looking at how we can generate our own Manifest and Provider classes so that custom command line tools can be integrated into the Zend Framework application.</p>
<p>The advantage of such integration is far reaching: deployable web applications using the Zend Framework can have &#8220;installers&#8221; and other frameworks, like Doctrine, can easily become first class citizens within the Zend Framework eco-system.</p>
<p>Grab a <a href="http://zendcasts.googlecode.com/svn/trunk/zc53-integrating-zend-tool-into-your-application/zc53-integrating-zend-tool-into-your-application.zip">copy of the project</a> or <a href="http://code.google.com/p/zendcasts/source/browse/#svn/trunk/zc53-integrating-zend-tool-into-your-application">browse the repository</a>.</p>
<p>Enjoy!<br />
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zendcasts.com/integrating-zend_tool-into-your-application/2010/04/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
<enclosure url="http://www.zendcasts.com/wp-content/uploads/2010/04/zc53-integrating-zend-tool-into-your-application-desktop.mov" length="92396985" type="video/quicktime" />
<enclosure url="http://www.zendcasts.com/wp-content/uploads/2010/04/zc53-integrating-zend-tool-into-your-application-iphone.m4v" length="94503135" type="video/x-m4v" />
		</item>
	</channel>
</rss>

