16 lines
423 B
PHP
16 lines
423 B
PHP
<?php
|
|
use_helper('stUrl', 'stBackend');
|
|
|
|
if ($related_object instanceof GiftCard && !$related_object->isNew())
|
|
{
|
|
$url = url_for('@stGiftCardPlugin?action=edit&id='.$related_object->getId());
|
|
|
|
$name = $related_object->getCode();
|
|
|
|
$title =<<<HTML
|
|
<a href="$url"><span>$title <em>$name</em></span></a>
|
|
HTML;
|
|
}
|
|
|
|
include sfConfig::get('sf_module_cache_dir').'/autoStGiftCardBackend/templates/_header.php';
|
|
?>
|