PHP code example of uranum / yii2-define-location

1. Go to this page and download the library: Download uranum/yii2-define-location library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

uranum / yii2-define-location example snippets


'modules' => [
    'location' => [
        'class' => 'uranum\location\Module',
        'userModelClass' => 'frontend\modules\user\models\User', // здесь указать класс модели User,
        'vkSecretToken' => 'your_secret_vk_token', // получить в настройках своего приложения в vk.com  https://vk.com/editapp?id=[your_id]&section=options
    ],
]

bootstrap' => [
    ....,
    'location', 
    'uranum\location\InitApp'
],

php yii migrate --migrationPath=@uranum/location/migrations

echo  \uranum\location\widget\Location::widget([
    // здесь можно настроить публичные свойства виджета, задав свои значения (загляните в исходный код)
]);