Coder Social home page Coder Social logo

henrikbjorn / gravatarbundle Goto Github PK

View Code? Open in Web Editor NEW
128.0 7.0 38.0 92 KB

Simple wrapper to gravatar API for Symfony2 - Provides a configurable service and a template helper

Home Page: http://knpbundles.com/henrikbjorn/GravatarBundle

License: MIT License

PHP 99.65% Makefile 0.35%

gravatarbundle's Introduction

GravatarBundle

Deprecated

Build Status

Installation

  1. Add this bundle to your projects composer.json
"require": { 
    "ornicar/gravatar-bundle" : "~1.0"
}
  1. Run composer update to install the bundle and regenerate the autoloader
$ composer update ornicar/gravatar-bundle
  1. Add this bundle to your application's kernel:
// application/ApplicationKernel.php
public function registerBundles()
{
    return array(
        // ...
        new Ornicar\GravatarBundle\OrnicarGravatarBundle(),
        // ...
    );
}
  1. Configure the gravatar service, templating helper and Twig extension in your config:
# application/config/config.yml
ornicar_gravatar: ~
  1. 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 example:

<img src="{{ 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:

<img src="{{ gravatar('[email protected]', size, rating, default, secure) }}" />

For more information look at the gravatar implementation pages.

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.