By Christian Harel on Friday, 24 August 2018
Posted in General Issues
Likes 0
Views 742
Votes 0
Hello i create a paypal apps to generate iten after subscription
1 i install my app like a plugin
2 i actived my plugin
3 no app in list apps view of payplan ...
i don't understand why
can you help me ?
regards
It seems like you missing a folder from your zip file.

e.g. zipFile/flexiapp/app/flexiapp/... only show those 3 files.

By the way, i did install your custom app into my local instance, but i realise there got some error, perhaps you can compare with one of the payplans existing app and see how it goes.

e.g. adminpay app, you can install this app from the Payplans app store. JoomlaFolder/plugins/payplans/adminpay
·
Friday, 24 August 2018 18:02
·
0 Likes
·
0 Votes
·
0 Comments
·
ok ... i update my plugin ...
i have error Warning: Declaration of PayplansAppFlexiapp::isApplicable(PayplansIfaceApptriggerable $refObject, $eventname = '') should be compatible with PayplansApp::isApplicable($refObject = NULL, $eventName = '') in /home/lafacethno/www/plugins/payplans/flexiapp/flexiapp/app/flexiapp/flexiapp.php on line 151
i try to studdy your case but i don't find solution (i reupload it)
·
Friday, 24 August 2018 18:36
·
0 Likes
·
0 Votes
·
0 Comments
·
Try download my attached file and see how it goes.

JoomlaFolder/plugins/payplans/flexiapp/flexiapp/app/flexiapp/flexiapp.php
JoomlaFolder/plugins/payplans/flexiapp/flexiapp/app/flexiapp/flexiapp.xml
·
Friday, 24 August 2018 22:14
·
0 Likes
·
0 Votes
·
0 Comments
·
hello thanks for helping ...
now i need to understand event because i have some problem with it ..
the goal of this plugin is to create a item for each new subscription (line 112-114)

$data['title'] = $user->get('username');
$data['text'] = '';
$data['author'] = int($user->get('id'));

but this return

0 - Call to a member function get() on null

=> i think but i can do a new fault ... that user is create after my plugin trigger ...
how i can acheive this, execute this plugin after paid ?
regards
·
Monday, 27 August 2018 16:45
·
0 Likes
·
0 Votes
·
0 Comments
·
Hm, may i know where you get this app installer?

It look like the code, it doesn't define what is this $user variable.

If after user registration complete, then only trigger this, you can try replace to this following code.


$userid = $new->getBuyer();
$userObj = JFactory::getUser($userid);

$data['title'] = $userObj->get('username');
$data['author'] = $userid;
·
Monday, 27 August 2018 19:38
·
0 Likes
·
0 Votes
·
0 Comments
·
ok i understand more !
i update my code that cool not complete but works
but my code creat 2 items .... and before paiement was complet ..
did we have an event after paid ?

public function onPayplansSubscriptionAfterSave($prev, $new)
·
Monday, 27 August 2018 20:39
·
0 Likes
·
0 Votes
·
0 Comments
·
You can use this following code to check whether this user already pay for this subscription.

[gist type="php"]
// no need to trigger if previous and current state is same
if ($prev != null && $prev->getStatus() == $new->getStatus()) {
return true;
}

$newStatus = $new->getStatus();

// if subscription is active
if ($newStatus == PayplansStatus::SUBSCRIPTION_ACTIVE) {
// dot the code here
}

[/gist]
·
Tuesday, 28 August 2018 11:55
·
0 Likes
·
0 Votes
·
0 Comments
·
yes that work !!!
thanks !
·
Tuesday, 28 August 2018 16:09
·
0 Likes
·
0 Votes
·
0 Comments
·
You're most welcome.

Just for your information, I have locked and marked this thread as resolved to avoid confusions in the future. Please start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiries.

Thanks for understanding
·
Tuesday, 28 August 2018 16:10
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post