Added default icon and referrer tracking

This commit is contained in:
Deon George
2013-04-14 18:31:53 +10:00
parent 00a9d3a057
commit 7d670ef236
4 changed files with 37 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* Main redirector model
*
* @package Redir
* @category Models
* @author Deon George
* @copyright (c) 2010-2013 Deon George
* @license http://dev.leenooks.net/license.html
*/
class Model_Referrer extends ORM {
protected $_model_names_plural = FALSE;
protected $_table_names_plural = FALSE;
protected $_belongs_to = array(
'redir'=>array(),
);
}
?>