Download the PHP package artdarek/gravatarer without Composer
On this page you can find all versions of the php package artdarek/gravatarer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download artdarek/gravatarer
More information about artdarek/gravatarer
Files in artdarek/gravatarer
Package gravatarer
Short Description Gravatar for Laravel 4.
License MIT
Homepage https://github.com/artdarek/gravatarer
Informations about the package gravatarer
Gravatarer - Laravel 4 Service Provider
Gravatarer is a simple Gravatar.com service provider for Laravel 4. A Gravatar is a Globally Recognized Avatar. You upload it and create your profile just once, and then when you participate in any Gravatar-enabled site, your Gravatar image will automatically follow you there. Gravatar is a free service for site owners, developers, and users.
- Installation
- Registering the Package
- Usage
- Generating gravatar url by user() method
- Generating gravatar url by make() method
- Generating HTM avatar code
Installation
Use composer to install this package:
Registering the Package
Add the Gravatarer Service Provider to your config in app/config/app.php
:
Usage
Generating gravatar url by user() method
Generating avatar with default settings is very simple and all you have to do is to call
user()
method with user email as a paramterer:
If you want to customize avatar a little bit you can set some more parameters using additional methods
like size()
, rating()
, defaultImage()
.
U can also chain all methods:
Generating gravatar url by make() method
Basic way to generate gravatar url is just to call make()
method with
user email address as a parameter (all other parameters will be loaded from defaults).
U can aslo chain methods:
If you want specify size of avatar or some other additional parameters you can do this
by passing array with parameters to make()
method:
Generating HTM avatar code
With Gravatarer you can get url string of user avatar by calling url()
method
but also you can generate full html code by calling
html()
method instead of url()
.
If you want to have more controll over the returned html code you can pass some additional html attributes to html() method, for examle: