KT-personal-website/app/Utils/Selected.php

17 lines
294 B
PHP
Raw Permalink Normal View History

2024-10-22 12:26:08 +02:00
<?php
namespace App\Utils;
class Selected {
static function selected($var, $ref) {
$testPostsPage = explode('/', $ref);
if ($testPostsPage[1] === 'post') {
$ref = '/posts';
}
if ($var === $ref) {
return 'active';
}
}
}