Giter Club home page Giter Club logo

gravatarbundle's Introduction

OrnicarGravatarBundle

Build Status

Installation

  1. Add this bundle to your projects composer.json

    "require: { "ornicar/gravatar-bundle" : "dev-master" }

  2. Run composer update to install the bundle and regenerate the autoloader

    composer.phar update

  3. Add this bundle to your application's kernel:

     // application/ApplicationKernel.php
     public function registerBundles()
     {
         return array(
             // ...
             new Ornicar\GravatarBundle\OrnicarGravatarBundle(),
             // ...
         );
     }
    
  4. Configure the gravatar service, templating helper and Twig extension in your config:

     # application/config/config.yml
     ornicar_gravatar: ~
    
  5. If you always have some default for your gravatars such as size, rating or default it can be configured in your config

    # application/config/config.yml
    ornicar_gravatar:
       rating: g
       size: 80
       default: mm
    

Usage

All you have to do is use the helper like this example:

  <img src="<?php echo $view['gravatar']->getUrl('[email protected]') ?>" />

Or with parameters:

  <img src="<?php echo $view['gravatar']->getUrl('[email protected]', '80', 'g', 'defaultimage.png', true) ?>" />

The only required parameter is the email adress. The rest have default values.

If you use twig you can use the helper like this exemple:

  {{ gravatar('[email protected]') }}

Or if you want to check if a gravatar email exists:

  {% if gravatar_exists('[email protected]') %}
        The email is an gravatar email
  {% endif %}

Or with parameters:

  {{ gravatar('[email protected]', size, rating, default, secure) }}

For more information look at the gravatar implementation pages.

gravatarbundle's People

Contributors

aleph-fr avatar benji07 avatar ccc-warwick-otoole avatar dator avatar dvelopment avatar helios-ag avatar helmer avatar henrikbjorn avatar herzult avatar lemoinem avatar mbontemps avatar ornicar avatar pborreli avatar stfalcon avatar stof avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.