create a button to call skype from an array nav in yii2

0

good afternoon I hope you can help me with this little problem I have an app in yii2 and I need a button <a href="tel:+12300000000">WhatsApp 24/7 +12300000000 (Jose)</a> that contains that link to use the functions when they open the app on a mobile or call from Skype on the PC, whatever. the problem is that I'm using yii2 and I have this code in Main.php

'

  echo Nav::widget([
        'options' => ['class' => 'navbar-right '],
        'items' => [
            ['label' => 'WhatsApp 24/7 +12300000000 (Jose)', 'url' => ['01245']],            
        ],
    ]);'

and no idea what else to do. beforehand thank you for your time

    
asked by Gilberto Asuaje 24.05.2018 в 23:21
source

1 answer

0

solved this line sun change it ['label' => 'WhatsApp 24/7 +12300000000 (Jose)', 'url' => ['01245']]

for

['label' => 'WhatsApp 24/7 +12300000000 (Jose)', 'url' => 'tel:01245']

since the brackets cause it to be redirected to an address within the folder Site in any way thank you very much for the time

    
answered by 28.05.2018 / 18:02
source