dev-master
9999999-dev https://github.com/ollieLtd/OhEmojiBundleTranslates emoji characters to HTML/CSS
MIT
The Requires
- php >=5.3.2
- symfony/framework-bundle *
by Ollie Harridge
emoji
Translates emoji characters to HTML/CSS
Symfony2 bundle which uses php-emoji to create a Twig extension that converts iPhone emoji icons to html., (*1)
Install this bundle as usual by adding to deps:, (*2)
// /deps [OhEmojiBundle] git=https://github.com/ollietb/OhEmojiBundle target=/bundles/Oh/EmojiBundle
and running the vendors script, (*3)
php bin/vendors install
Register the namespace in app/autoload.php
:, (*4)
// app/autoload.php $loader->registerNamespaces(array( // ... 'Oh' => __DIR__.'/../vendor/bundles', ));
Register the bundle in app/AppKernel.php
:, (*5)
// app/AppKernel.php public function registerBundles() { return array( // ... new Oh\EmojiBundle\OhEmojiBundle(), ); }
Add the following line to app/config/config.yml
:, (*6)
imports: - { resource: @OhEmojiBundle/Resources/config/services.yml }
finally publish the assets, (*7)
php app/console assets:install --symlink web
and include the css in your stylesheets, (*8)
<link rel="stylesheet" href="{{asset('bundles/ohemoji/css/emoji.css')}}">
Simply use the function to automatically wrap spans around your emoji characters., (*9)
{{ "This text contains some emoji !" | iphone_emoji }}
Would output, (*10)
This text contains some emoji <span class="emoji emoji1f4f1"></span>!
There's also a google_emoji
function, because for some reason they use different standards., (*11)
Not needed - this is just a Symfony2 wrapper for another library which has its own tests https://github.com/iamcal/php-emoji, (*12)
Translates emoji characters to HTML/CSS
MIT
emoji