| Current Path : /var/www/html/components/com_osmembership/plugins/ |
| Current File : /var/www/html/components/com_osmembership/plugins/os_payment.php |
<?php
/**
* @package Joomla
* @subpackage Membership Pro
* @author Tuan Pham Ngoc
* @copyright Copyright (C) 2012 - 2026 Ossolution Team
* @license GNU/GPL, see LICENSE.php
*/
defined('_JEXEC') or die;
use Joomla\CMS\Factory;
class os_payment
{
public $paymentFee = false;
/**
* Title of payment method
* @var string
*/
public $title = null;
/**
* Name of payment method
*
* @var string
*/
public $_name = null;
/**
* Creditcard payment method ?
*
* @var string
*/
public $_creditCard = false;
/**
* Require card cvv code ?
*
* @var bool
*/
public $_cardCvv = false;
/**
* Require creditcard type ?
*
* @var bool
*/
public $_cardType = false;
/**
* Require card holder name ?
*
* @var bool
*/
public $_cardHolderName = false;
public function __construct()
{
$this->loadLanguage();
}
/**
* Getter method for name property
*
* @return string
*/
public function getName()
{
return $this->_name;
}
/**
* Setter method for name property
*
* @param string $value
*/
public function setName($value)
{
$this->_name = $value;
}
public function getTitle()
{
return $this->title;
}
public function setTitle($title)
{
$this->title = $title;
}
/**
* Getter method for cardType property
*
* @return bool
*/
public function getCreditCard()
{
if ($this->_creditCard)
{
return 1;
}
return 0;
}
/**
* Setter method for creditCard
*
* @param $value
*/
public function setCreditCard($value)
{
$this->_creditCard = $value;
}
/**
* Setter method for cardCvv
*
* @return bool
*/
public function getCardCvv()
{
if ($this->_cardCvv)
{
return 1;
}
return 0;
}
/**
* Setter method for cardCvv
*
* @param bool
*/
public function setCardCvv($value)
{
$this->_cardCvv = $value;
}
/**
* Getter method for cardType
*
* @return bool
*/
public function getCardType()
{
if ($this->_cardType)
{
return 1;
}
return 0;
}
/**
* Setter method for CardType property
*
* @param bool $value
*/
public function setCardType($value)
{
$this->_cardType = $value;
}
/**
* Getter method for CardHolderName
*
* @return bool
*/
public function getCardHolderName()
{
if ($this->_cardHolderName)
{
return 1;
}
return 0;
}
/**
* Setter method for CardHolderName
*
* @param bool $value
*/
public function setCardHolderName($value)
{
$this->_cardHolderName = $value;
}
/**
* Load language file for this payment plugin
*/
public function loadLanguage()
{
$pluginName = $this->getName();
$lang = Factory::getApplication()->getLanguage();
$tag = $lang->getTag();
if (!$tag)
{
$tag = 'en-GB';
}
$lang->load($pluginName, JPATH_ROOT, $tag);
}
}