Skip to content

Instantly share code, notes, and snippets.

@gskema
Last active August 29, 2015 14:20
Show Gist options
  • Save gskema/51aa05a814fa510a2202 to your computer and use it in GitHub Desktop.
Save gskema/51aa05a814fa510a2202 to your computer and use it in GitHub Desktop.
Overrding PrestaShop module instance class
<?php
if (!defined('_PS_VERSION_'))
exit;
class BlockUserInfoOverride extends BlockUserInfo
{
public function hookDisplayNav($params)
{
return '<div class="header_user_info"><a>Test</a></div>';
// return $this->display(__FILE__, 'nav.tpl');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment