20 lines
381 B
PHP
20 lines
381 B
PHP
<?php
|
|
|
|
require_once('mt/PayMethod.php');
|
|
|
|
class PayMethodController extends BaseAuthedController
|
|
{
|
|
|
|
public function getPayMethods()
|
|
{
|
|
$token_type = getReqVal('token_type', 99);
|
|
$payMethods = mt\PayMethod::getPayMethods($token_type);
|
|
$this->_rspData(
|
|
array(
|
|
'pay_methods' => $payMethods,
|
|
)
|
|
);
|
|
}
|
|
|
|
}
|