mirror of
https://github.com/rottenwheel/moner.ooo.git
synced 2024-11-10 05:03:44 +01:00
49be7374b1
Enhanced configuration by introducing a dynamic GitHub URL. This change ensures the GitHub link in all language files is consistently updated based on the configuration, increasing maintainability and consistency across translations.
13 lines
659 B
PHP
13 lines
659 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'
|
|
],
|
|
'github_url' => 'https://github.com/rottenwheel/moner.ooo/',
|
|
]; |