derekisbusy/yii2-forcecopy

Adds a button to quickly turn forcecopy on/off in the asset manager .

Installs: 873

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 0

Open Issues: 0

Type:yii2-extension

1.0.1 2017-02-08 23:37 UTC

This package is auto-updated.

Last update: 2024-04-25 07:03:12 UTC


README

Latest Release Software License Total Downloads

Adds a button to quickly turn forceCopy on/off in the debug toolbar.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist --dev derekisbusy/yii2-forcecopy "*"

or add

"derekisbusy/yii2-forcecopy": "*"

to the require section of your composer.json file.

Setup Config

Add the forcecopy panel to the debug panels list in your configuration file :

    'debug' => [
        'class' => 'yii\debug\Module',
        'panels' => [
            'forcecopy' => ['class' => 'derekisbusy\forcecopy\ForcecopyPanel']
        ]
    ],

Usage

The extension will add a section to the debug toolbar indicating whether or not forceCopy is on or off. Click the forcecopy status label to change it's state on or off.