2017 © Pedro Peláez
 

cakephp-plugin cakephp-gravatar-plugin

Gravatar for CakePHP 2.x

image

vladshish/cakephp-gravatar-plugin

Gravatar for CakePHP 2.x

  • Monday, October 27, 2014
  • by VladShish
  • Repository
  • 1 Watchers
  • 0 Stars
  • 4 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

CakePHP Gravatar plugin

This is a simple Gravatar plugin for CakePHP 2.0 and above., (*1)

Installation

To install, either clone this repository or add it add a submodule to your project. Both are done in a command line client from the root of your project., (*2)

Cloning the repository

The simplest way is to clone the respository. The command for this is:, (*3)

~ git clone git@github.com:martinbean/cakephp-gravatar-plugin.git app/Plugin/Gravatar

Adding as a submodule

Alternatively, you can add the plugin as a submodule to your project if it’s already version-controlled with Git. To do this, run the following commands:, (*4)

~ git submodule add git@github.com:martinbean/cakephp-gravatar-plugin.git app/Plugin/Gravatar
~ git submodule init

For more information on submodules in Git, read http://git-scm.com/book/en/Git-Tools-Submodules., (*5)

Using the helper

To use the helper, first enable the plugin in your /app/Config/bootstrap.php file by adding the following line to the bottom:, (*6)

CakePlugin::load('Gravatar');

Alternatively, you can just use the following if you have many plugins:, (*7)

CakePlugin::loadAll();

The first step is to enable it in your controllers:, (*8)

Gravatar->image('someone@example.com', array('size' => 80));
?>

All you have to do is pass an email address as the first parameter. You do not need to manually hash it as the plugin takes care of that., (*9)

The Versions

27/10 2014

dev-master

9999999-dev https://github.com/vladshish/cakephp-gravatar-plugin

Gravatar for CakePHP 2.x

  Sources   Download

MIT

The Requires

 

27/10 2014

0.0.1

0.0.1.0 https://github.com/vladshish/cakephp-gravatar-plugin

Gravatar for CakePHP 2.x

  Sources   Download

MIT

The Requires