mirror of
https://github.com/rottenwheel/moner.ooo.git
synced 2025-01-25 02:33:04 -03:00
bc4761ac46
Enhanced the configuration and display logic to allow specifying preferred currencies, which are now ordered at the top of the list. This improves user experience by prioritizing commonly used currencies. This also eliminates duplicate entries for the currently selected currency in the drop-down.
12 lines
No EOL
593 B
PHP
12 lines
No EOL
593 B
PHP
<?php
|
|
return [
|
|
'servers_guru' => true, // Show the "Servers Guru" attribution link in the info text
|
|
'attribution' => '', // Custom attribution HTML to show in the info text
|
|
'footer_links' => [ // Custom links to show in the footer
|
|
['text' => 'Clearnet', 'url' => 'https://calc.revuo-xmr.com'],
|
|
['text' => 'Tor', 'url' => 'http://calc.revuo75joezkbeitqmas4ab6spbrkr4vzbhjmeuv75ovrfqfp47mtjid.onion']
|
|
],
|
|
'preferred_currencies' => [ // Currencies that should be displayed at the top of the lists
|
|
'usd', 'eur', 'gbp', 'cad', 'btc', 'eth', 'ltc'
|
|
]
|
|
]; |