if_mcClass.inc.php 437 Bytes
<?php

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 * Description of class_mcClass
 *
 * @author Frederick <frederick at mensch.coop>
 */
interface mciClass {
	//put your code here
}

class mcClass {
	protected $mcID;
	public function __toString() {
		$var_string = mcObjectStatistic::get__toString($this);
		$var_string .= '['.$this->mcID.']';
		return $var_string;
	}
}

?>