If you want an alert box to be pop up while uninstalling module asking for confirmation or any other message use the below code.
In the installation file of your module add the following line of code.
public function __construct()
{
$this->confirmUninstall = $this->l(‘Are you sure you want to uninstall this module’);
}
Be the first to comment.