| Current Path : /var/www/html/administrator/components/com_jssupportticket/tables/ |
| Current File : /var/www/html/administrator/components/com_jssupportticket/tables/ticketviaemail.php |
<?php
/**
* @Copyright Copyright (C) 2012 ... Ahmad Bilal
* @license GNU/GPL http://www.gnu.org/copyleft/gpl.html
* Company: Buruj Solutions
+ Contact: www.burujsolutions.com , info@burujsolutions.com
* Created on: May 03, 2012
^
+ Project: JS Tickets
^
*/
defined('_JEXEC') or die('Restricted access');
class Tableticketviaemail extends JTable {
var $id = null;
var $attachment = null;
var $mailreadtype = null;
var $emailpassword = null;
var $emailaddress = null;
var $hostname = null;
var $hosttype = null;
var $emailssl = null;
var $hostportnumber = null;
var $status = null;
function __construct(&$db) {
parent::__construct('#__js_ticket_ticketsemail', 'id', $db);
}
/**
* Validation
*
* @return boolean true if buffer is valid
*
*/
function check() {
return true;
}
}
?>