1
This commit is contained in:
parent
5bfcc626cb
commit
e83e396418
@ -42,8 +42,8 @@ class PassController extends BaseAuthedController {
|
|||||||
$data = emptyReplace(json_decode($row['data'], true), array());
|
$data = emptyReplace(json_decode($row['data'], true), array());
|
||||||
$this->_rspData(array(
|
$this->_rspData(array(
|
||||||
'time_info' => array(
|
'time_info' => array(
|
||||||
'name'=>strtotime($this->currSeasonMeta['battlepass_name']),
|
'name'=>$this->currSeasonMeta['battlepass_name'],
|
||||||
'sub_name'=>strtotime($this->currSeasonMeta['battlepass_sub_name']),
|
'sub_name'=>$this->currSeasonMeta['battlepass_sub_name'],
|
||||||
'begin_time'=>strtotime($this->currSeasonMeta['begin_time']),
|
'begin_time'=>strtotime($this->currSeasonMeta['begin_time']),
|
||||||
'end_time'=>strtotime($this->currSeasonMeta['end_time'])
|
'end_time'=>strtotime($this->currSeasonMeta['end_time'])
|
||||||
),
|
),
|
||||||
@ -166,14 +166,6 @@ class PassController extends BaseAuthedController {
|
|||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function activePlatinumPass(){
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public function buyPassLevel(){
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public function resetPassLevel(){
|
public function resetPassLevel(){
|
||||||
|
|
||||||
}
|
}
|
||||||
|
25
webapp/services/callback/ActiveCbService.php
Normal file
25
webapp/services/callback/ActiveCbService.php
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace services;
|
||||||
|
|
||||||
|
require_once('phpcommon/bchelper.php');
|
||||||
|
|
||||||
|
require_once('models/Nft.php');
|
||||||
|
require_once('models/ActivateNft.php');
|
||||||
|
require_once('models/BuyRecord.php');
|
||||||
|
require_once('models/ActivateNftEvent.php');
|
||||||
|
|
||||||
|
use phpcommon;
|
||||||
|
use models\Nft;
|
||||||
|
use models\ActivateNft;
|
||||||
|
use models\BuyRecord;
|
||||||
|
use models\ActivateNftEvent;
|
||||||
|
|
||||||
|
class ActiveCbService {
|
||||||
|
|
||||||
|
public function process()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
10
webapp/services/callback/BuyLevelCbService.php
Normal file
10
webapp/services/callback/BuyLevelCbService.php
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
|
namespace services;
|
||||||
|
|
||||||
|
|
||||||
|
class BuyLevelCbService
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user