Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/philippfrenzel/yii2pinit

Pin It Button for Yii2
https://github.com/philippfrenzel/yii2pinit

Last synced: about 2 months ago
JSON representation

Pin It Button for Yii2

Awesome Lists containing this project

README

        

yii2pinit
=========

Pin It Button for Yii2

Setup
=====

Pls add the image you want to show as overlay to your pictures within the folder

web/img/pinterest.png

Should be interlaced and not to big;)

Sample CKEDITOR
===============

```php
$pinterest = <<< SCRIPT
{instanceReady: function() {
this.dataProcessor.htmlFilter.addRules({
elements: {
img: function( el ) {
if ( !el.attributes.alt )
el.attributes.alt = 'pinterest-image';
var fragment = CKEDITOR.htmlParser.fragment.fromHtml( '

'+el.getOuterHtml()+'
' );
el.replaceWith(fragment);
}
}
});
}}
SCRIPT;
```