seinheit.ch/application/model/Example.php
2011-04-08 03:27:38 +12:00

23 lines
No EOL
509 B
PHP

<?php
/**
* Example Model
* Use models do define an interface
* between data holders and your application. You can implement your
* business logic in model classes as well.
*
* @author Karl Pannek <info@katharsis.in>
* @version 0.5.2
* @package Katharsis
*/
class Example extends Katharsis_Model_Abstract
{
/**
* Init method, will be called when this class is instanced
* Use this method instead of __construct()
*
* @return void
*/
public function init()
{
}
}