added some useful models and controllers
This commit is contained in:
parent
9bb724147e
commit
1d4b2a3314
44 changed files with 6424 additions and 0 deletions
19
library/DidgeridooArtwork/Page/Plugin/Abstract.php
Normal file
19
library/DidgeridooArtwork/Page/Plugin/Abstract.php
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
abstract class DidgeridooArtwork_Page_Plugin_Abstract
|
||||
{
|
||||
protected $_con;
|
||||
protected $_view;
|
||||
|
||||
public final function __construct()
|
||||
{
|
||||
$this->_con = Katharsis_DatabaseConnector::getConnection();
|
||||
$this->_view = Katharsis_View::getInstance();
|
||||
$this->init();
|
||||
}
|
||||
|
||||
public function init()
|
||||
{
|
||||
}
|
||||
|
||||
abstract public function render($parameters);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue