oh/emoji-bundle

Translates emoji characters to HTML/CSS

Installs: 25 148

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 1

Language:CSS

Type:symfony-bundle

dev-master 2017-02-27 12:18 UTC

This package is not auto-updated.

Last update: 2024-04-22 09:40:14 UTC


README

Symfony2 bundle which uses php-emoji to create a Twig extension that converts iPhone emoji icons to html.

Installation

Install this bundle as usual by adding to deps:

// /deps
[OhEmojiBundle]
   git=https://github.com/ollietb/OhEmojiBundle
   target=/bundles/Oh/EmojiBundle

and running the vendors script

php bin/vendors install

Register the namespace in app/autoload.php:

// app/autoload.php
$loader->registerNamespaces(array(
    // ...
    'Oh' => __DIR__.'/../vendor/bundles',
));

Register the bundle in app/AppKernel.php:

// app/AppKernel.php
public function registerBundles()
{
    return array(
        // ...
        new Oh\EmojiBundle\OhEmojiBundle(),
    );
}

Add the following line to app/config/config.yml:

imports:
	- { resource: @OhEmojiBundle/Resources/config/services.yml }

finally publish the assets

php app/console assets:install --symlink web

and include the css in your stylesheets

<link rel="stylesheet" href="{{asset('bundles/ohemoji/css/emoji.css')}}">

Usage (Twig)

iphone_emoji

Simply use the function to automatically wrap spans around your emoji characters.

{{ "This text contains some emoji !" | iphone_emoji }}

Would output

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.

Tests

Not needed - this is just a Symfony2 wrapper for another library which has its own tests https://github.com/iamcal/php-emoji

Credits