first commit

This commit is contained in:
2025-03-12 17:06:23 +01:00
commit 2241f7131f
13185 changed files with 1692479 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
use_helper('stProducerImage');
if ($related_object instanceof Producer && !$related_object->isNew())
{
$image = st_producer_image_path($related_object, 'thumb');
$url = url_for('@stProducer?id='.$related_object->getId());
$name = $related_object->getOptName();
$title = <<<HTML
<a href="$url"><img src="$image" alt="$name"> <span>$name</span></a>
<span>- $title</span>
HTML;
}
include st_admin_get_template_path(__FILE__);
?>