Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 933 Bytes

README.markdown

File metadata and controls

40 lines (28 loc) · 933 Bytes

Yii Gravatar

Yii Gravatar is simple widget allows you to display a Gravatar images on your web sites

Installation

Extract the yii-gravatar from archive under protected/extensions

The widget can be used in the Yii view files as shown in the following example.

<?php
$this->widget('ext.yii-gravatar.YiiGravatar', array(
    'email'=>'malyshev.php@gmail.com',
    'size'=>80,
    'defaultImage'=>'http://www.amsn-project.net/images/download-linux.png',
    'secure'=>false,
    'rating'=>'r',
    'emailHashed'=>false,
    'htmlOptions'=>array(
        'alt'=>'Gravatar image',
        'title'=>'Gravatar image',
    )
)); ?>

Resources

[Gravatar images API documentation] (http://en.gravatar.com/site/implement/images/)

Project on Git Hub

TODOs and BUGS

##Change Log

###July 19, 2011

  • Initial release;