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
Requires
- php: >=7.0.0
- yiisoft/yii2: ^2.0
- yiisoft/yii2-bootstrap: ~2.0.0
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' ]);