mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-24 17:22:06 +01:00
13 lines
240 B
PHP
13 lines
240 B
PHP
<?php
|
|
|
|
namespace AppBundle\Routing;
|
|
|
|
class LegacyRouter
|
|
{
|
|
public function getAdminUrl($page, $options = [])
|
|
{
|
|
$options['page'] = $page;
|
|
return '/pages/administration/index.php?' . http_build_query($options);
|
|
}
|
|
}
|