akun/yii2-copy-text

yii2 copy-text

Installs: 3

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/akun/yii2-copy-text

0.0.4 2019-08-16 08:36 UTC

This package is auto-updated.

Last update: 2026-01-16 23:38:09 UTC


README

usage

  • single use
echo CopyText::widget([
    'text' => 'something to copy'
]);
  • full config
echo CopyText::widget([
    'text' => [
        'msg' => 'something to copy',
        'tag' => 'span',
        'options' => [
            'class' => 'js-copy-target'
        ]
    ],
    'button' => [
        'msg' => 'copy',
        'tag' => 'a',
        'options' => [
            'class' => 'btn btn-primary js-copy-button'
        ]
    ],
    'copiedText' => 'copied'
]);