mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2024-12-15 11:38:32 +01:00
4a6ddc3639
Buttons now support full capitalization of the default button names. For example, Previously, GitHub would be displayed as Github. Now, the proper capitalization is uses.
14 lines
292 B
PHP
14 lines
292 B
PHP
<?php
|
|
|
|
$buttonNames = array(
|
|
'github' => 'GitHub',
|
|
'gitlab' => 'GitLab',
|
|
'linkedin' => 'linkedIn',
|
|
'paypal' => 'PayPal',
|
|
'soundcloud' => 'SoundCloud',
|
|
'tiktok' => 'TikTok',
|
|
'whatsapp' => 'WhatsApp',
|
|
'wordpress' => 'WordPress',
|
|
'youtube' => 'YouTube',
|
|
);
|