This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
redir/application/classes/Model/Redir.php

21 lines
455 B
PHP
Raw Normal View History

2011-07-20 23:53:38 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* Main redirector model
*
* @package Redir
* @category Models
* @author Deon George
2013-04-13 06:17:56 +00:00
* @copyright (c) 2010-2013 Deon George
2011-07-20 23:53:38 +00:00
* @license http://dev.leenooks.net/license.html
*/
class Model_Redir extends ORM {
protected $_model_names_plural = FALSE;
2013-04-13 06:17:56 +00:00
protected $_table_names_plural = FALSE;
protected $_has_many = array(
'referrer'=>array('far_key'=>'id'),
);
2011-07-20 23:53:38 +00:00
}
?>