Show:

File: platform/plugins/Streams/classes/Streams/Total.php

<?php
/**
 * @module Streams
 */
/**
 * Class representing 'Total' rows in the 'Streams' database
 * You can create an object of this class either to
 * access its non-static methods, or to actually
 * represent a total row in the Streams database.
 *
 * @class Streams_Total
 * @extends Base_Streams_Total
 */
class Streams_Total extends Base_Streams_Total
{
	/**
	 * The setUp() method is called the first time
	 * an object of this class is constructed.
	 * @method setUp
	 */
	function setUp()
	{
		parent::setUp();
	}

	/**
	 * Implements the __set_state method, so it can work with
	 * with var_export and be re-imported successfully.
	 * @method __set_state
	 * @param {array} $array
	 * @return {Streams_Total} Class instance
	 */
	static function __set_state(array $array) {
		$result = new Streams_Total();
		foreach($array as $k => $v)
			$result->$k = $v;
		return $result;
	}
};