23 lines
593 B
PHP
23 lines
593 B
PHP
<?php
|
|
use Lycoreco\Includes\Routing\Router;
|
|
|
|
$user_nav = array(
|
|
'users:profile' => 'Information',
|
|
'users:wishlist' => 'My wishlist',
|
|
'users:orders' => 'My orders'
|
|
);
|
|
?>
|
|
|
|
<div class="profile-tabs">
|
|
<?php foreach ($user_nav as $router_name => $title): ?>
|
|
<?php if($router_name == Router::$current_router_name): ?>
|
|
|
|
<div class="btn btn-tab active"><?php echo $title ?></div>
|
|
|
|
<?php else: ?>
|
|
|
|
<a href="<?php the_permalink($router_name) ?>" class="btn btn-tab"><?php echo $title ?></a>
|
|
|
|
<?php endif; ?>
|
|
<?php endforeach; ?>
|
|
</div>
|