Skip to content

Instantly share code, notes, and snippets.

@weierophinney
Created October 13, 2014 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weierophinney/c1ea3098a8fbd5a45702 to your computer and use it in GitHub Desktop.
Save weierophinney/c1ea3098a8fbd5a45702 to your computer and use it in GitHub Desktop.
<?php
function injectLogoLink($e)
{
$halEntity = $e->getParam('entity');
$halEntity->getLinks()->add(\ZF\Hal\Link\Link::factory(
'rel' => 'logo',
'route' => array(
'name' => 'cart-logo',
'params' => array(
'id' => $halEntity->id,
),
),
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment