PHP code example of thinker-g / yii2-ishtar-gate

1. Go to this page and download the library: Download thinker-g/yii2-ishtar-gate 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/ */

    

thinker-g / yii2-ishtar-gate example snippets


    return [
        ...
        'aliases' => [
            '@thinker_g\IshtarGate' => '@runtime/tmp-extensions/yii2-ishtar-gate'
        ]
        ...
    ]


    ...
    'modules' => [
        'ishtarDemo' => [
            'class' => 'thinker_g\IshtarGate\Module'
        ]
    ],
    ...


    ...
    'bootstrap' => ['log', 'ishtarDemo'],
    ...

   ...
    'modules' => [
        'ishtarDemo' => [
            'class' => 'thinker_g\IshtarGate\Module',
            'enabled' => true
        ]
    ],
    ...

    ...
    'modules' => [
        'ishtarDemo' => [
            'class' => 'thinker_g\IshtarGate\Module',
            'enabled' => true,
            'blockerRoutes' => ['site/about'],
        ],
        ...
    ],
    ...

    ...
    'modules' => [
        'ishtarDemo' => [
            'class' => 'thinker_g\IshtarGate\Module',
            'enabled' => true,
            'exceptRoutes' => [
                'site/about'
            ],
        ],
        ...
    ],
    ...

    ...
    'modules' => [
        'ishtarDemo' => [
            'class' => 'thinker_g\IshtarGate\Module',
            'enabled' => true,
            'onlyRoutes' => [
                'site/signup'
            ],
        ],
        ...
    ],
    ...

        ...
        'modules' => [
            'ishtarDemo' => [
                'class' => 'thinker_g\IshtarGate\Module',
                'enabled' => true,
                ...
                'news' => [
                    '2014-10-20 12:15' => 'Site will be down for maintenance at {ts}.',
                    '2014-12-25 00:30:00' => 'Site will be down soon for maintenance.',
                    'Jan 01, 2015' => 'Site will be down for maintenance on {ts}.',
                ],
                ...
            ]
        ],
        ...
    

        ...
        'modules' => [
            'ishtarDemo' => [
                'class' => 'thinker_g\IshtarGate\Module',
                'enabled' => true,
                'news' => [
                    ...
                ],
                'newsTicker' => [
                    'class' => 'thinker_g\IshtarGate\INewsTickerAsset',
                    'pluginOptions' => [
                        'effect' => 'slide',
                        'speed' => 3000,
                        'dir' => 'ltr',
                        'color' => '#fff',
                        'font_size' => 13,
                        'font_family' => 'arial',
                        'delay_after' => 5000
                    ]
                ]
                ...
            ],
        ],
        ...