<?php
use Orchard\FeatureFlags\Context\AccountContext;
use Orchard\FeatureFlags\FeatureService as SplitFeatureService;

$featuresServiceClient = new SplitFeatureService($logger);
$userContext = AccountContext::fromLegacy((string)$_SESSION['S_USERID'], 'oa');
$isDistributionTypeUpdatesFeatureEnabled = $featuresServiceClient->isVariant(
    'distribution_type_updates',
    'enabled',
    $userContext
);
?>
<ul id="topNav">
        <li <?php if ($this->current_topNav== "my_page") echo 'class="current"';?>><a href="/">My Page</a></li>
	<li <? if ($this->current_topNav== "relationships") echo 'class="current"';?>><a href="/relationships.php">Relationships</a></li>
	<li <? if ($this->current_topNav== "reports") echo 'class="current"';?>><a href="/reports.php">Reports</a></li>
	<li <? if ($this->current_topNav== "marketing") echo 'class="current"';?>><a href="/marketing.php">Marketing</a></li>
	<li <? if ($this->current_topNav== "accounting") echo 'class="current"';?>><a href="/accounting.php">Accounting</a></li>
	<li <? if ($this->current_topNav== "warehouse") echo 'class="current"';?>><a href="/warehouse.php">Warehouse</a></li>
<?	if($this->oa_acl->checkUserPermission(188)) { ?>
	<li <? if ($this->current_topNav== "technology") echo 'class="current"';?>><a href="/technology">Technology</a></li>
<?	} ?>
<?	if ($this->oa_acl->checkUserPermission(1)) { ?>
	<li <? if ($this->current_topNav== "users") echo 'class="current"';?>><a href="/users/view_users.php">Users</a></li>
<?	}
	$tp_last_search = 'direct_delivery';//get_last_search();
	if(empty($tp_last_search))
		$search_url = get_search_form_location($tp_last_search);
	else
		$search_url = "/search/search_lbl_copy.php";
?>
        <li <?php if ($this->current_topNav== "search") echo 'class="current"';?>><a href="<?=$search_url?>">Search</a></li>
</ul>
<?php if ($isDistributionTypeUpdatesFeatureEnabled): ?>
<div class="alertNotice">
    <strong>Notice: Distribution Type Updates Coming Soon.</strong> We are making changes to how we manage distribution delivery rights to align with the products we support. Full Track will become "Digital Audio", Video Master will become "Digital Video" and we're adding "Physical Audio". No action needed - Existing data will carry over automatically.<br>
    Questions? Contact <a href="mailto:product-support@sonymusic-pde.com">product-support@sonymusic-pde.com</a>.
</div>
<?php endif; ?>
