Skip to content

Instantly share code, notes, and snippets.

@gskema
Created May 10, 2015 08:28
Show Gist options
  • Save gskema/0adf2da86ff78750d161 to your computer and use it in GitHub Desktop.
Save gskema/0adf2da86ff78750d161 to your computer and use it in GitHub Desktop.
Clean method override
<?php
if (!defined('_PS_VERSION_'))
exit;
class BlockUserInfoOverride extends BlockUserInfo
{
public function hookDisplayTop($params)
{
$this->smarty->assign(array(
'company_name' => ($this->context->customer->logged ? $this->context->customer->company : false),
);
return parent::hookDisplayTop($params);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment