9 lines
243 B
PHP
9 lines
243 B
PHP
<?php
|
|
if (isset($related_object) && $related_object instanceof Product)
|
|
{
|
|
echo st_get_partial('stProduct/header', array('related_object' => $related_object, 'title' => $title));
|
|
}
|
|
else
|
|
{
|
|
include st_admin_get_template_path(__FILE__);
|
|
} |