Your IP : 216.73.216.231


Current Path : /home/digilove/public_html/components/com_marketplace/tables/
Upload File :
Current File : /home/digilove/public_html/components/com_marketplace/tables/seller.php

<?php
/**
 * Marketplace - Component Marketplace 
 * ******************************************************************
 *
 * PHP version 7.0
 *
 * @category   Component
 * @package    Joomla
 * @author     WebKul software private limited <support@webkul.com>
 * @copyright  2010 WebKul software private limited
 * @license    http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 * @version    GIT:5.2
 * @filesource http://store.webkul.com
 * @link       Technical Support:  webkul.uvdesk.com
 * ******************************************************************
 */
// no direct access
defined('_JEXEC') or die('Restricted access');
// Include library dependencies
jimport('joomla.filter.input');
/**
 * TableSeller class
 * 
 * @category Component
 * @package  Joomla
 * @author   WebKul software private limited <support@webkul.com>
 * @license  http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 * @link     Technical Support:  webkul.uvdesk.com
 */
class TableSeller extends JTable
{
    var $seller_id = null;
    var $is_seller = null;
    var $screenname = null;
    var $gender = null;
    var $first_name = null;
    var $last_name = null;
    var $social_mode = null;
    var $social_id = null;
    var $address = null;
    var $zip = null;
    var $companybanner = null;
    var $companylogo = null;
    var $companylocality = null;
    var $companyname = null;
    var $companydescription = null;
    var $countrylogo = null;
    var $descriptioninhtml = null;
    var $payment_mode = null;
    var $payment_desc = null;
    var $shop_location = null;
    /**
     * __construct function
     *
     * @param [type] $db var
     */
    function __construct(&$db)
    {
        parent::__construct('#__marketplace_sellerprofile', 'seller_id', $db);
    }
}