Spade
Mini Shell
| Directory:~$ /home/lmsyaran/www/administrator/components/com_rsticketspro/tables/ |
| [Home] [System Details] [Kill Me] |
<?php
/**
* @package RSTickets! Pro
*
* @copyright (c) 2010 - 2016 RSJoomla!
* @link https://www.rsjoomla.com
* @license GNU General Public License
http://www.gnu.org/licenses/gpl-3.0.en.html
*/
defined('_JEXEC') or die('Restricted access');
class RsticketsproTableTicketfiles extends JTable
{
public $id = null;
public $ticket_id;
public $ticket_message_id;
public $filename;
public $downloads;
protected $_columnAlias = array(
'hits' => 'downloads'
);
public function __construct(& $db)
{
parent::__construct('#__rsticketspro_ticket_files',
'id', $db);
}
public function check()
{
if (!$this->id)
{
$this->downloads = 0;
}
return true;
}
public function getRealPath()
{
$hash = md5($this->id . ' ' . $this->ticket_message_id);
return RST_UPLOAD_FOLDER . '/' . $hash;
}
}