initial commit
This commit is contained in:
commit
f2ff442d8a
21 changed files with 1559 additions and 0 deletions
23
application/model/Example.php
Normal file
23
application/model/Example.php
Normal file
|
@ -0,0 +1,23 @@
|
|||
<?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()
|
||||
{
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue