forex-formula/yii2-jstimezonedetect

Yii 2 jsTimeZoneDetect Asset

2.0.2 2020-07-30 16:13 UTC

This package is not auto-updated.

Last update: 2024-05-04 09:00:03 UTC


README

Yii 2 jsTimeZoneDetect Asset

https://pellepim.bitbucket.io/jstz/

Configuration

<?php

$timeZone = yii\jstimezonedetect\TimeZone::detect(); 

return [
    'timeZone' => $timeZone,
    'components' => [
        'formatter' => ['defaultTimeZone' => $timeZone],
        'db' => [
            'class' => 'yii\db\Connection',
            'dsn' => 'mysql:host=localhost;dbname=yii2advanced',
            'username' => 'root',
            'password' => '',
            'charset' => 'utf8',
            'on afterOpen' => function (yii\base\Event $event) {
                /* @var $db yii\db\Connection */
                $db = $event->sender;
                $db->createCommand('SET time_zone = :timeZone;', ['timeZone' => date('P')])->execute();
            }
        ]
    ]
];