Hi,
I would like to store a session variable on a page, which I will then reuse on another page of my site. I'm wondering what is the most boonex-compatible way to do this. In PHP you use sessions, but I'm not sure if boonex is using that or not. I searched the sources for session_start and coudn't find except in some side plugins, so I guess it's not the standard way.
Thanks.
|
In Dolphin it's better to use BxDolSession class, just use:
BxDolSession::getInstance()->setValue('aaa', 'some value');
...
BxDolSession::getInstance()->getValue('aaa');
Rules → http://www.boonex.com/terms |
Thanks! Exactly what I needed! |
AlexT, it's time to have some documentation that exposes the available classes/functions. Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz |
AlexT, it's time to have some documentation that exposes the available classes/functions.
Yes, what is out there is not up to date. Also, info on building forms. I had to use the info for Dolphin 8 which was not completely accurate; Modzzz was kind enough to help fill in some blanks. And any updates for such things as building modules.
Geeks, making the world a better place |
AlexT, it's time to have some documentation that exposes the available classes/functions.
Does this help?
https://www.boonex.com/doc/classes.html
https://www.boonex.com/doc/hierarchy.html
It confuses me but it might work for some.
~~~~~~~~~~~~~~~~~~~~~~ Michel - Meta-Travel.com ~~~~~~~~~~~~~~~~~~~~~~
TravelNotes.org - The Online Guide to Travel |
You can use this as a guide but it is not completely accurate for Dolphin Pro. It will help you to understand how to build forms in Dolphin but use it only as a guide and not how everything is handled in Dolphin Pro.
https://www.boonex.com/n/dolphin-8-form
Geeks, making the world a better place |
You can use this as a guide but it is not completely accurate for Dolphin Pro. It will help you to understand how to build forms in Dolphin but use it only as a guide and not how everything is handled in Dolphin Pro.
https://www.boonex.com/n/dolphin-8-form
Ignore the part about a forms table, there isn't a forms table in Dolphin Pro.
Geeks, making the world a better place |
Ok, those links are of good help. Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz |