PATH:
home
/
letacommog
/
letaweb
/
admin
/
api
/
settings
<?php class BillingManager extends BaseManager { // execute subscription cancel request public function actionCancelSubscription() { $id = $_REQUEST['id']; $subscription = Subscription::model()->findByPK($id); $payment_type = $subscription->payment_type; $payment = Yii::app()->payment->getModule($payment_type); if(isset($payment)) { $response = $payment->doCancel($subscription); if (($response == true)) { $this->ajaxSuccess(1); } else $this->ajaxError($response); } else $this->ajaxError(0); } }
[+]
..
[-] DomainManager.php
[edit]
[-] PageManager.php
[edit]
[+]
contributor
[-] BillingManager.php
[edit]
[-] ContributorManager.php
[edit]
[-] Code_injectionManager.php
[edit]