themexpert / digicom

An Open Source Digital Product Selling extension for Joomla! created by ThemeXpert
http://www.themexpert.com
GNU General Public License v2.0
27 stars 18 forks source link

Id session #373

Closed gui8515 closed 7 years ago

gui8515 commented 7 years ago

Hello, how do I get the ID session in Digicom

I would like to do integration with seblod

Sem título.png

https://s18.postimg.org/n5f4skk55/Sem_t_tulo.png

shamsbd71 commented 7 years ago

hi @gui8515 There is a class for digicom session DigiComSiteHelperSession just call it like this:

$session = new DigiComSiteHelperSession();
$sid = $session->_sid;

From digicom component you can call this class from anywhere but if you try to load it from outside digicom component, use this code:

JLoader::discover('DigiComSiteHelper', JPATH_ROOT . '/components/com_digicom/helpers');

thanks