Skip to content

Instantly share code, notes, and snippets.

@unlocomqx
Created March 29, 2025 12:49
Show Gist options
  • Save unlocomqx/54563ad60fbbe530d6939a72c164b03e to your computer and use it in GitHub Desktop.
Save unlocomqx/54563ad60fbbe530d6939a72c164b03e to your computer and use it in GitHub Desktop.
<?php
// Attach module to hook
$this->registerHook('actionCartDuplicate');
// Run custom logic when the hook is triggered
public function hookActionCartDuplicate($params)
{
$id_cart_old = $params['oldCartId'];
$id_cart_new = $params['newCartId'];
// custom logic to duplicate data related to the old cart
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment