| Current Path : /home/helpink/www/components/com_jbusinessdirectory/classes/payment/processors/ |
| Current File : /home/helpink/www/components/com_jbusinessdirectory/classes/payment/processors/Cash.php |
<?php
/**
* @package J-BusinessDirectory
*
* @author CMSJunkie http://www.cmsjunkie.com/
* @copyright Copyright (C) 2007 - 2022 CMSJunkie. All rights reserved.
* @license https://www.gnu.org/licenses/agpl-3.0.en.html
*/
defined('_JEXEC') or die('Restricted access');
class Cash extends IPaymentProcessor {
public $type;
public $name;
public function initialize($data) {
if (isset($data->type)) {
$this->type = $data->type;
}
if (isset($data->name)) {
$this->name = $data->name;
}
}
public function getPaymentGatewayUrl() {
}
public function getPaymentProcessorHtml($data = null) {
$html = "<ul id=\"payment_form_$this->type\" style=\"display:none\" class=\"form-list\">
<li>
" . JText::_('LNG_CASH_PROC_INFO', true) . "
</li>
</ul>";
return $html;
}
public function getHtmlFields() {
$html = '';
return $html;
}
public function processTransaction($data, $controller = "payment") {
$result = new stdClass();
$result->transaction_id = 0;
$result->amount = $data->amount;
$result->payment_date = date("Y-m-d");
$result->response_code = 0;
$result->order_id = $data->id;
$result->currency = $data->currency;
$result->processor_type = $this->type;
$result->payment_status = PAYMENT_STATUS_PAID;
$result->status = PAYMENT_SUCCESS;
$result->payment_method = "cash";
return $result;
}
public function getPaymentDetails($paymentDetails) {
echo JText::_('LNG_PROCESSOR_CASH');
}
}