Hello Team,
Understading correctly , CB do nto support anymore Virtuemart Natively.
My need would be to trigger an action when cart is processed for payment.
I think the best solution would be to implement a custom CB trigger and use it through CB auto actions.
My first reference is
www.joomlapolis.com/documentation/18358-using-cb-triggers
and I followed this post as well :
link
to reformalize and make it easier ,
I must
insert at the appropriate location on virtuemart code the follwing to raise a new trigger :
Code:
global $_PLUGINS;
if ( ( ! file_exists( JPATH_SITE . '/libraries/CBLib/CBLib/Core/CBLib.php' ) ) || ( ! file_exists( JPATH_ADMINISTRATOR . '/components/com_comprofiler/plugin.foundation.php' ) ) ) {
echo 'CB not installed'; return;
}
include_once( JPATH_ADMINISTRATOR . '/components/com_comprofiler/plugin.foundation.php' );
cbimport( 'cb.html' );
cbimport( 'language.front' );
$_PLUGINS->loadPluginGroup( 'user' );
$_PLUGINS->trigger( 'VirtueMart_Checkout', array( $cartvalue,$cart_id ) );
Then , I assume I should create a reference of this somewhere in CB auto action right ? where and how ? ( jsut as ex, to have it availabe lin the drop down list ? )
Thx !