You can use the view helper provided with ZfcUser (i.e. the one you specified in your question, mtbikemike ). Use dynamic injection to load the view helper by adding the following to your module configuration (module.config.php). You may need to integrate the code below with any existing module.config.php content, of course.
return array(
'di' => array(
'instance' => array(
'Zend\View\HelperLoader' => array(
'parameters' => array(
'map' => array(
'zfcUserIdentity' => 'ZfcUser\View\Helper\ZfcUserIdentity',
'zfcUserLoginWidget' => 'ZfcUser\View\Helper\ZfcUserLoginWidget',
),
),
),
),
),
);
, , zfcUserIdentity, zfcUserLoginWidget.