<?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>CodeSanity &#187; PHP</title>
	<atom:link href="http://codesanity.net/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://codesanity.net</link>
	<description>PHP, Javascript &#38; Technology Ramblings</description>
	<lastBuildDate>Wed, 07 Jul 2010 00:28:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>If you&#8217;re smart, don&#8217;t use Smarty</title>
		<link>http://codesanity.net/2010/06/dont-use-smarty/</link>
		<comments>http://codesanity.net/2010/06/dont-use-smarty/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 20:13:12 +0000</pubDate>
		<dc:creator>Tom Schlick</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[shorthand]]></category>
		<category><![CDATA[smarty]]></category>
		<category><![CDATA[template engine]]></category>
		<category><![CDATA[views]]></category>

		<guid isPermaLink="false">http://codesanity.net/?p=256</guid>
		<description><![CDATA[Template engines such as Smarty can seem like the way to go when planning your application but that decision can have some bad operational consequences later down the road when you need to scale.]]></description>
			<content:encoded><![CDATA[<p>Today in the world of web frameworks people are looking for the perfect marriage of technology to scale their applications &amp; provide rapid development. Through this time of transition some really great advancements have come out such as CodeIgniter, Ruby on Rails, &amp; jQuery. Unfortunately, some of the things that are popular now seem to be good but can actually hurt your application. I&#8217;m talking about template engines in PHP.</p>
<h2>Why They Are Bad</h2>
<p>Template languages like Smarty are essentially another programming language built on top of PHP. This is a problem because php is what we call an<a href="http://en.wikipedia.org/wiki/Interpreted_language" target="_blank"> interpreted language</a> which means every time you load the page it is parsed on the fly and is outputted. When you add a template language on top of this the template language has to be interpreted, converted to php and then interpreted as php and outputted. This doubles the amount of work that the cpu has to do to return the page the user requested.</p>
<p>At one point in an application I&#8217;ve been working on, I noticed that smarty was accounting for 60% of page load time. The page load time was still under a second but thats a huge amount of the process just for smarty to convert to php.</p>
<h2>What About Designers!?</h2>
<p>Using a template language just because you are working with designers is a poor excuse. Those designers could just as easily learn PHP Shorthand as they could something link Smarty. By teaching your designers small amounts of PHP, your giving them the knowledge to help with other areas of your application without having to learn something new.</p>
<h2>When It&#8217;s Appropriate</h2>
<p>Sometimes a template language is the perfect solution. For instance if you were creating a CMS application where your users would have to edit template code you might want to use a template language. It would allow you to restrict which functions could be executed on the views side so that your application would be more secure. This is ok for CMS type apps like WordPress and Expression Engine, but its usually something you dont need when your app is just something that your company will be editing.</p>
<p>For use with codeigniter views, I have my own template library built and extended off of the initial work of Phil Sturgeon. You can take a look at his library here <a href="http://github.com/philsturgeon/codeigniter-template" target="_blank">http://github.com/philsturgeon/codeigniter-template</a> and I may release mine in the future.</p>
<p><!-- e131a55b1591440881a06e5b69532149 --></p>
]]></content:encoded>
			<wfw:commentRss>http://codesanity.net/2010/06/dont-use-smarty/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Why You Should Always Use Active Record</title>
		<link>http://codesanity.net/2010/03/active-record/</link>
		<comments>http://codesanity.net/2010/03/active-record/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 01:52:58 +0000</pubDate>
		<dc:creator>Tom Schlick</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[active record]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[escaped]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[queries]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://codesanity.net/?p=205</guid>
		<description><![CDATA[Active Record can be a very useful tool in your developer arsenal. It allows you to code faster and helps ensure your queries execute without security issues.]]></description>
			<content:encoded><![CDATA[<p>I recently came across a post over at <a href="http://stackoverflow.com" target="_blank">Stack Overflow</a> about the <a href="http://stackoverflow.com/questions/2394355/is-it-a-good-idea-to-use-codeigniters-active-record-library-to-manipulate-mysql-d" target="_blank">pros and cons of using the active record class</a> that CodeIgniter provides. I outlined to the poster several advantages of using the active record class as well as the disadvantages.</p>
<h2>Security</h2>
<p>Through the development cycle of a web application, you are going to write hundreds if not thousands of queries for each specific thing you want your application to do. That means for each query you write you will have to wrap it with functions that make it safe so that SQL injection and other malicious things cannot take place. Now say if you write 1000 queries through he course of your development and you forget to properly escape them 1% of the time (very very conservative). You will have 10 possible places for your malicious users to bring down your system.</p>
<p>If you had used Active Record you wouldn&#8217;t have had that happen. Active Record doesn&#8217;t forget to escape and filter those queries. You wouldn&#8217;t have a client calling you at 3am because their pride and joy is displaying porn ads or even worse that their customer&#8217;s personal information has been leaked to hackers.</p>
<h2>Performance</h2>
<p>One of his concerns was the performance impact that the Active Record class imposed. Coming from someone who uses the AR class every day in my 9-5, I have never noticed a significant performance impact on any of the queries I write. I dont know the exact benchmarks of it but I would think the most it adds to any query would by around .0001 seconds. I think the small impact it has on your application is well worth the peace of mind that all of your queries are secure from the few malicious users you are bound to cross paths with.</p>
<h2>Complex Queries</h2>
<p>The Active Record class does a pretty good job at 99% of the queries you are most likely to run. It powers through insert/update/select/delete queries with no problem at all. However it is not perfect. If your application demands a few complex queries you can very easily switch back to straight SQL with $this-&gt;db-&gt;query(); . This way you get the best of both worlds. You can be secure in your cookie cutter queries that you write all the time but when you have to do something that is a little more complicated you have the ability to switch very easily.</p>
<h4>In my opinion there isn&#8217;t a real reason not to use CodeIgniter&#8217;s Active Record. The benefits it provides far outweigh the downsides. Unless of course your someone who never makes a mistake in programming, in that case forget everything I have told you.</h4>
]]></content:encoded>
			<wfw:commentRss>http://codesanity.net/2010/03/active-record/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Structure Models in your MVC based Web Application</title>
		<link>http://codesanity.net/2009/11/structure-models-mvc-based-web-application/</link>
		<comments>http://codesanity.net/2009/11/structure-models-mvc-based-web-application/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 05:01:20 +0000</pubDate>
		<dc:creator>Tom Schlick</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[active record]]></category>
		<category><![CDATA[applications architecture]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[controller]]></category>
		<category><![CDATA[crud]]></category>
		<category><![CDATA[model]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[view]]></category>

		<guid isPermaLink="false">http://codesanity.net/?p=99</guid>
		<description><![CDATA[MVC has defiantly changed the way applications are written over the past few years. It is more organized and developer-friendly, but it comes with a bit of a learning curve. I will cover what models are and how I use them to speed up my application development.]]></description>
			<content:encoded><![CDATA[<h1>MVC</h1>
<p>Ever since I started using <a href="http://codeigniter.com">CodeIgniter</a> about a year and a half ago, I feel that my coding style has drastically improved as well as the speed, security, and reliability of my applications. This is mostly due to CodeIgniter&#8217;s <a href="http://en.wikipedia.org/wiki/Model-view-controller">MVC</a> approach to the structure of the application. It separates your code into three stages:</p>
<ul>
<li>Model &#8211; Used to interact with your database or data source and return the data back to your application</li>
<li>View &#8211; Holds all of the display logic such as html, css and javascript</li>
<li>Controller &#8211; Sort of the middleman, used to coordinate all the actions from Models and Libraries into a View to display to the user&#8217;s browser</li>
</ul>
<h1>CRUD</h1>
<p><a href="http://en.wikipedia.org/wiki/Create,_read,_update_and_delete">CRUD (Create, read, update and delete)</a> is a way of structuring your code that interfaces with your database. Those four actions handle 99% of the actions you will do with the data in your database so why should we duplicate functionality every time we need to do something? For my examples I will be using the <a href="http://codeigniter.com/user_guide/database/active_record.html">Active Record Class</a> in CodeIgniter but it would be just as easy for you to use simple SQL statements in your PHP code.</p>
<p>Ok that&#8217;s enough of the vocabulary lesson, lets get into some code.</p>
<h1>Start of the Model</h1>
<p><script src="http://gist.github.com/464047.js?file=gistfile1.php"></script></p>
<p>All we are doing here is declaring the model as &#8220;Blog_model&#8221; and we will save this code in blog_model.php in the models folder in Codeigniter.</p>
<h1>Create</h1>
<p>Creating data is pretty simple, especially in codeigniter. You should only need a single function to create data for each table in your database. This is how i structure my insert functions.</p>
<p><script src="http://gist.github.com/464050.js?file=gistfile1.php"></script></p>
<p>Now what the code above is actually doing is this. When i call $this-&gt;whatever_model-&gt;insert_blog_post($data); , i pass a $data variable which is actually just an array with the index names matching to the database field names. If you are familiar with <a href="http://codeigniter.com/user_guide/database/active_record.html" target="_blank">CodeIgniter&#8217;s Active Record Class</a> this approach is nothing new to you.</p>
<h1>Read</h1>
<p>Reading information from a database is nothing new. You send a select query to a database and it returns results, how could it get any simpler? Well what usually ends up happening over the development of an application is that the developer will create multiple functions that essentially do the same thing. One function will query the database based on the Unique ID # of an item. Another will query checking to see if a particular title in that blog post already exists. So how can these be combined? Well you can create a single function that actually interacts with the database. It is passed a few parameters that tell it what query to run and it does just that. This function is called by other functions that pass those specific parameters. Here is an example.</p>
<p><script src="http://gist.github.com/464053.js?file=gistfile1.php"></script></p>
<h1>Update</h1>
<p>Now updating an row (or many rows) in the database is just as easy as adding a row. The first parameter is your where statement which includes the conditions that the rows must have to be updates. The second parameter is the data that will be inserted into those selected rows.</p>
<p><script src="http://gist.github.com/464055.js?file=gistfile1.php"></script></p>
<p>Pretty simple right? Now all you have to do from anywhere in your application to update a row in blog_posts is $this-&gt;blog_model-&gt;update_blog_post(array(&#8216;ID&#8217; =&gt; 5), array(&#8216;title&#8217; =&gt; &#8216;Getting Started with CRUD&#8217;));</p>
<h1>Delete</h1>
<p>Just as you might suspect, deleting a post is just as simple as adding or updating a post.</p>
<p><script src="http://gist.github.com/464058.js?file=gistfile1.php"></script></p>
<p>Now just run the command $this-&gt;blog_model-&gt;delete_blog_post(array(&#8216;ID&#8217; =&gt; &#8217;223&#8242;));</p>
<h2>Thats it!</h2>
<p>If you have any questions or comments be sure to leave them below!</p>
]]></content:encoded>
			<wfw:commentRss>http://codesanity.net/2009/11/structure-models-mvc-based-web-application/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Mozenda Data Scraping with CodeIgniter</title>
		<link>http://codesanity.net/2009/04/mozenda-data-scraping-codeigniter/</link>
		<comments>http://codesanity.net/2009/04/mozenda-data-scraping-codeigniter/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 07:23:23 +0000</pubDate>
		<dc:creator>Tom Schlick</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[mozenda]]></category>

		<guid isPermaLink="false">http://codesanity.net/?p=51</guid>
		<description><![CDATA[Mozenda is a very powerful data scraping service. If you have ever found yourself writing scripts or manually copying and pasting data from one website to another then mozenda is for you. They have a very nice, full featured REST API which will be the focus of this article.]]></description>
			<content:encoded><![CDATA[<h1>Overview</h1>
<p>I use Mozenda all the time. When scraping crappy static html pages it is very difficult to find consistency with markup. So thats where Mozenda comes in. I create an agent to scrape a collection of data in a specific order. It can select data between html tags, select data thats supposed to be in one featured place on the page, or it can skip over it if the data you are looking for is not there. It is truely a lifesaving service for anyone that updates mass amounts of data on a regular basis. You cant beat the price of $49/month either (just think how much you would have to pay someone to scrape all of that data for you). I have created a CodeIgniter Library (regular php class compatible) to interact with this api in a easy way. Now lets get to it!</p>
<h1>Download</h1>
<address><a href="http://github.com/trs21219/mozenda-api" target="_blank">http://github.com/trs21219/mozenda-api</a></address>
<h1>Documentation</h1>
<p>First off you need to set your api key and set what format you would like the results to be returned to you in. If you don&#8217;t have an api key then</p>
<p>1. Login to your account at http://Login.Mozenda.com</p>
<p>2. Click the &#8216;Account&#8217; link located in the top right corner of the web page.</p>
<p>3. Look for the &#8216;API Web Service Key&#8217; section under the &#8216;Account Details&#8217; tab, then click &#8216;Generate a New Key&#8217;. You will be required to provide this key in all requests to the API.</p>
<p>If you already have your API key then all you need to worry about is setting your output format. The two options are array (php array) and json.</p>
<h3 style="padding-left: 30px;">Configuring Your Library</h3>
<p style="padding-left: 30px;">[code language='php']<br />
$config_array = array('output_format' =&gt; 'json', 'api_key' =&gt; 'MY-SUPER-SECRET-KEY');<br />
$this-&gt;mozenda_api-&gt;config($config_array);<br />
[/code]</p>
<h3 style="padding-left: 30px;">Collection.GetList</h3>
<p style="padding-left: 30px;">Returns a list of collections for an account</p>
<p>[code language='php']</p>
<p>$data = $this-&gt;mozenda_api-&gt;collection_get_list();</p>
<p>[/code]</p>
<h3 style="padding-left: 30px;">Collection.GetViews</h3>
<p style="padding-left: 30px;">Gets a list of views for a particular collection</p>
<p>[code language='php']</p>
<p>$data = $this-&gt;mozenda_api-&gt;collection_get_views($collection_id);</p>
<p>[/code]</p>
<h3 style="padding-left: 30px;">Collection.GetFields</h3>
<p style="padding-left: 30px;">Returns a list of fields that are in that collection with their details</p>
<p>[code language='php']</p>
<p>$data = $this-&gt;mozenda_api-&gt;collection_get_fields($collection_id);</p>
<p>[/code]</p>
<h3 style="padding-left: 30px;">Collection.AddItem</h3>
<p style="padding-left: 30px;">Adds an item to a collection with the values specified.</p>
<p>[code language='php']</p>
<p>$items = array('Username' =&gt; 'John', 'Phone_Number' =&gt; '555-0123');</p>
<p>$data = $this-&gt;mozenda_api-&gt;collection_add_item($collection_id, $items);</p>
<p>[/code]</p>
<h3 style="padding-left: 30px;">Collection.UpdateItem</h3>
<p style="padding-left: 30px;">Updates an item in the collection.</p>
<p>[code language='php']</p>
<p>$items = array('Username' =&gt; 'Peter', 'Phone_Number' =&gt; '555-9876');</p>
<p>$data = $this-&gt;mozenda_api-&gt;collection_update_item($collection_id, $item_id, $items);</p>
<p>[/code]</p>
<h3 style="padding-left: 30px;">Collection.DeleteItem</h3>
<p style="padding-left: 30px;">Deletes an item from a collection.</p>
<p>[code language='php']</p>
<p>$data = $this-&gt;mozenda_api-&gt;collection_delete_item($collection_id, $item_id);</p>
<p>[/code]</p>
<h3 style="padding-left: 30px;">Collection.Clear</h3>
<p style="padding-left: 30px;">Clears the contents of a collection but leaves the collection intact.</p>
<p>[code language='php']</p>
<p>$data = $this-&gt;mozenda_api-&gt;collection_clear($collection_id);</p>
<p>[/code]</p>
<h3 style="padding-left: 30px;">Collection.Delete</h3>
<p style="padding-left: 30px;">Deletes the collection and all data within it.</p>
<p>[code language='php']</p>
<p>$data = $this-&gt;mozenda_api-&gt;collection_delete($collection_id);</p>
<p>[/code]</p>
<h3 style="padding-left: 30px;">View.GetItems</h3>
<p style="padding-left: 30px;">Returns items from a view.</p>
<p>[code language='php']</p>
<p>$data = $this-&gt;mozenda_api-&gt;view_get_items($view_id);</p>
<p>[/code]</p>
<h3 style="padding-left: 30px;">Agent.GetList</h3>
<p style="padding-left: 30px;">Returns a list of your agents with their ID, Name, Settings, Description, and other important information.</p>
<p>[code language='php']</p>
<p>$data = $this-&gt;mozenda_api-&gt;agent_get_list();</p>
<p>[/code]</p>
<h3 style="padding-left: 30px;">Agent.GetJobs</h3>
<p style="padding-left: 30px;">Returns a list of your agent&#8217;s jobs with detailed information.</p>
<p>[code language='php']</p>
<p>$data = $this-&gt;mozenda_api-&gt;agent_get_jobs($agent_id);</p>
<p>[/code]</p>
<h3 style="padding-left: 30px;">Agent.Run</h3>
<p style="padding-left: 30px;">Starts or resumes the Agent.</p>
<p>[code language='php']</p>
<p>$data = $this-&gt;mozenda_api-&gt;agent_run($agent_id);</p>
<p>[/code]</p>
<h3 style="padding-left: 30px;">Agent.Delete</h3>
<p style="padding-left: 30px;">Deletes an agent and all associated schedules for that agent.</p>
<p>[code language='php']</p>
<p>$data = $this-&gt;mozenda_api-&gt;agent_delete($agent_id)</p>
<p>[/code]</p>
<h3 style="padding-left: 30px;">Job.Get</h3>
<p style="padding-left: 30px;">Gets the details of a job by the Job ID.</p>
<p>[code language='php']</p>
<p>$data = $this-&gt;mozenda_api-&gt;job_get($job_id);</p>
<p>[/code]</p>
<h3 style="padding-left: 30px;">Job.Cancel</h3>
<p style="padding-left: 30px;">Cancels a Job in the system. Note, a job must be in a Paused or Error State to cancel a job.</p>
<p>[code language='php']</p>
<p>$data = $this-&gt;mozenda_api-&gt;job_cancel($job_id);</p>
<p>[/code]</p>
<h3 style="padding-left: 30px;">Job.Pause</h3>
<p style="padding-left: 30px;">Issues the &#8216;Pause&#8217; command for a job currently running in the system.</p>
<p>[code language='php']</p>
<p>$data = $this-&gt;mozenda_api-&gt;job_pause($job_id);</p>
<p>[/code]</p>
<h3 style="padding-left: 30px;">Job.Resume</h3>
<p style="padding-left: 30px;">Resumes a job that is in a Paused or Error state.</p>
<p>[code language='php']</p>
<p>$data = $this-&gt;mozenda_api-&gt;job_resume($job_id);</p>
<p>[/code]</p>
<p>I would really recommend taking a look at the official documentation on the mozenda website <a href=" https://server31.mozenda.com/api" target="_blank">show here.</a></p>
<h2>That&#8217;s It!</h2>
<p>That pretty much wraps it all up. If you have any questions or find a bug please use the comments and ill do my best to fix it.</p>
<p><em>NOTE: The descriptions of what the commands do was copied from the mozenda documentation to make it easier for the end user to understand. I do not take any credit in writing the descriptions.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://codesanity.net/2009/04/mozenda-data-scraping-codeigniter/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Envato Marketplace API with CodeIgniter</title>
		<link>http://codesanity.net/2009/04/evanto-marketplace-api-codeigniter/</link>
		<comments>http://codesanity.net/2009/04/evanto-marketplace-api-codeigniter/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 04:32:45 +0000</pubDate>
		<dc:creator>Tom Schlick</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[evanto]]></category>

		<guid isPermaLink="false">http://codesanity.net/?p=23</guid>
		<description><![CDATA[Envato recently released an API for thier various Marketplaces. I have taken the various methods of interacting with this data and compiled it into one, easy to use codeigniter library. It can also be used as a standalone php class if you wish. The class is currently PHP5 and requires you have json_encode, json_decode, and curl functions available.]]></description>
			<content:encoded><![CDATA[<h1>Overview</h1>
<p>So I created this library mostly out of boredom. It includes functions to interact with all of the options &amp; functionality that the current version (&#8220;EDGE&#8221;) provides. It was designed to be a CodeIgniter library but it can easily be ported over to php in just a few steps. It allows you to output the data in json, array, or raw (the format that the request was [json, xml]). So lets get to it!</p>
<h1>Download</h1>
<p>[download id="1"]</p>
<h1>Documentation</h1>
<h2 style="padding-left: 30px;">Configuration</h2>
<p style="padding-left: 30px;">There are several options you can set in the configuration that will make the library behave differently.</p>
<ul>
<li>username &#8211; obviously your username for the envato marketplaces</li>
<li>api_key &#8211; your api key for the marketplaces ( you should never set this in view of the public, its sort of like a password ).</li>
<li>api_format &#8211; the format you want the library to request, this can be altered with the next option (output format) &#8211; options incude : json, array, xml (default is json)</li>
<li>output_format &#8211; the format you want the library to return to you. options: array (default), json, raw (unaltered/formatted data straight from the feed) note: to get xml format back you need to set this to raw and set api_format to xml</li>
</ul>
<p style="padding-left: 30px;">This is how you can set the config information with a simple function and array.<br />
[code language='php']<br />
$this->envato_api->config(array('api_format' => 'json', 'output_format' => 'array', 'username' => 'joesmith', 'api_key' => 'MYSUPERSECRETKEY'));<br />
[/code]
</p>
<p style="padding-left: 30px;">Place the configuration code above the functions listed below.</p>
<h2 style="padding-left: 30px;">Public Functions</h2>
<p style="padding-left: 30px;">These are functions that do not require a username and api key to access. They are mostly things such as the latest files on the marketplaces, the most popular threads, etc.</p>
<p style="padding-left: 30px;">
<h3 style="padding-left: 30px;">Blog Posts</h3>
<p style="padding-left: 30px;">A list of blog posts for a particular site. Requires a site parameter.</p>
<p>[code language='php']<br />
$data = $this->envato_api->public_blog_posts('sitename');<br />
$this->evanto_api->clear();<br />
[/code]</p>
<h3 style="padding-left: 30px;">Active Threads</h3>
<p style="padding-left: 30px;">Threads with the most recent messages activity. Requires a site parameter.</p>
<p>[code language='php']<br />
$data = $this->envato_api->public_threads_active('sitename');<br />
$this->evanto_api->clear();<br />
[/code]</p>
<h3 style="padding-left: 30px;">Number of Files in Categories</h3>
<p style="padding-left: 30px;">Shows the number of files in the major categories of a particular site. Requires a site paramater.</p>
<p>[code language='php']<br />
$data = $this->envato_api->public_files_number('sitename');<br />
$this->evanto_api->clear();<br />
[/code]</p>
<h3 style="padding-left: 30px;">Category New Files</h3>
<p style="padding-left: 30px;">New files, recently uploaded to a particular site. Requires site and category paramaters.</p>
<p>[code language='php']<br />
$data = $this->envato_api->public_files_new('sitename', 'categoryname');<br />
$this->evanto_api->clear();<br />
[/code]</p>
<h3 style="padding-left: 30px;">Popular Files</h3>
<p style="padding-left: 30px;">Returns the popular files for a particular site. Requires a site paramater.</p>
<p>[code language='php']<br />
$data = $this->envato_api->public_files_popular('sitename');<br />
$this->evanto_api->clear();<br />
[/code]</p>
<h3 style="padding-left: 30px;">New User Files</h3>
<p style="padding-left: 30px;">Shows the newest 10 files a user has uploaded to a particualr site. Requires username and site paramaters.</p>
<p>[code language='php']<br />
$data = $this->envato_api->public_files_user_new('username', 'sitename');<br />
$this->evanto_api->clear();<br />
[/code]</p>
<h3 style="padding-left: 30px;">Random New Files</h3>
<p style="padding-left: 30px;">Shows a random list of newly uploaded files from a particular site (i.e. like the homepage). Requires a site paramater.</p>
<p>[code language='php']<br />
$data = $this->envato_api->public_files_new_random('sitename');<br />
$this->evanto_api->clear();<br />
[/code]</p>
<h3 style="padding-left: 30px;">API Releases</h3>
<p style="padding-left: 30px;">Returns Release and Set information for the API (used to generate the documentation).</p>
<p>[code language='php']<br />
$data = $this->envato_api->public_releases();<br />
$this->evanto_api->clear();<br />
[/code]</p>
<p style="padding-left: 30px;">
<h2 style="padding-left: 30px;">Private User Functions</h2>
<p style="padding-left: 30px;">These are functions that DO require a username and API key to access. They include things such as account information, billing statements, etc. <strong>Make sure to set your username &amp; api key inside the script or with the config function above.</strong></p>
<p style="padding-left: 30px;">
<h3 style="padding-left: 30px;">User Vitals</h3>
<p style="padding-left: 30px;">Return a users username and balance.</p>
<p>[code language='php']<br />
$data = $this->envato_api->user_vitals();<br />
$this->evanto_api->clear();<br />
[/code]</p>
<h3 style="padding-left: 30px;">User Account</h3>
<p style="padding-left: 30px;">Returns the first name, surname, total earnings, total deposits, balance (deposits + earnings), country and current commission rate for sales.</p>
<p>[code language='php']<br />
$data = $this->envato_api->user_account();<br />
$this->evanto_api->clear();<br />
[/code]</p>
<h3 style="padding-left: 30px;">User Earnings &amp; Monthly Sales</h3>
<p style="padding-left: 30px;">Returns the monthly sales data, as displayed on the user&#8217;s earnings page.</p>
<p>[code language='php']<br />
$data = $this->envato_api->user_earnings();<br />
$this->evanto_api->clear();<br />
[/code]</p>
<h3 style="padding-left: 30px;">User Statement</h3>
<p style="padding-left: 30px;">Returns the last 100 events as seen on the user&#8217;s statement page.</p>
<p>[code language='php']<br />
$data = $this->envato_api->user_statement();<br />
$this->evanto_api->clear();<br />
[/code]</p>
<h3 style="padding-left: 30px;">User Recent Sales</h3>
<p style="padding-left: 30px;">Shows the 50 recent sales of the user&#8217;s items.</p>
<p>[code language='php']<br />
$data = $this->envato_api->user_recent_sales();<br />
$this->evanto_api->clear();<br />
[/code]</p>
<h3 style="padding-left: 30px;">User Multiple</h3>
<p style="padding-left: 30px;">This function will return multiple sets of data at once. if you dont supply anything in the parameters it will return all of the results by default. The options inside the array below are the only options you have. You can use as many or as little as you need.</p>
<p>[code language='php']<br />
$data = $this->envato_api->user_multiple(array('account', 'vitals', 'earnings-adn-sales-by-month', 'statement', 'recent-sales'));<br />
$this->evanto_api->clear();<br />
[/code]</p>
<h2>Done!</h2>
<p>We are all done! If you have any questions, suggestions, bugs or just wanna say thanks then reply in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://codesanity.net/2009/04/evanto-marketplace-api-codeigniter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)
Content Delivery Network via Amazon Web Services: S3: assets.codesanity.net.s3.amazonaws.com

Served from: codesanity.net @ 2010-09-09 19:28:32 -->