wiperawa / yii2-copy-to-clipboard-widget
Simple widget with copy to clipboard button
Installs: 57
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2025-03-24 03:45:38 UTC
README
Simple widget that display text with 'copy to clipboard' button.
Installation
The preferred way to install this extension is through composer.
Either run
$ php composer.phar require wiperawa/yii2-copy-to-clipboard-widget "dev-master"
or add
"wiperawa/yii2-copy-to-clipboard-widget": "dev-master"
to the require
section of your composer.json
file.
Usage
<?= \wiperawa\copytoclipboard\CopyToClipboardWidget::widget([ 'content' => 'Some text to be copied to clipboard', //'containerOptions' => ['class' => 'd-flex'], // optional //'copyBtnOptions' => [], //optional //'copyBtnIcon' => '<span class="fa fa-clipboard-list"></span>' //'copiedIcon' => '<span class="fa fa-check-double"></span>', ]) ?>