2amigos / yii2-disqus-widget
DISQUS widget for Yii2.
Installs: 25 607
Dependents: 1
Suggesters: 0
Security: 0
Stars: 25
Watchers: 24
Forks: 5
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: *
Requires (Dev)
- phpunit/phpunit: 4.*
This package is auto-updated.
Last update: 2023-08-16 02:59:57 UTC
README
DISQUS widget helps you to render your DISQUS comments thread or DISQUS comments thread count on your Yii2 applications.
Installation
The preferred way to install this extension is through composer.
Either run
composer require 2amigos/yii2-disqus-widget:~1.0
or add
"2amigos/yii2-disqus-widget" : "~1.0"
to the require section of your application's composer.json
file.
Usage
To display DISQUS comments
use dosamigos\disqus\Comments; echo Comments::widget([ // see http://help.disqus.com/customer/portal/articles/472098-javascript-configuration-variables 'shortname' => '{yourforumshortname}', 'identifier' => 'article_identifier' ]);
To display DISQUS comments count, first setup the link where you wish to display the comments (visit DISQUS integration)
<a href="http://example.com/#disqus_thread">article</a>
By default Disqus looks up the count using the comment count links href attribute. However, the count can also be looked up using a Disqus identifier:
<a href="http://example.com/#disqus_thread" data-disqus-identifier="article_identifier">article</a>
Then is just a matter to render the CommentsCount widget:
use dosamigos\disqus\CommentsCount; CommentsCount::widget([ 'shortname' => '{yourforumshortname}', 'identifier' => 'article_identifier' ]);
Further Information
Please, check the DISQUS developers documentation for further information about its integration and configuration options.
Contributing
Please see CONTRIBUTING for details.
Credits
License
The BSD License (BSD). Please see License File for more information.
Web development has never been so fun!
www.2amigos.us