// One More

function blog() {

General Usage

$this->Shorten->shorten('domain', 'service', array('additional' => 'options'));

Bit.ly Shortener

$this->Shorten->shorten('http://onemorefunction.com', 'bitly');

http://bit.ly/pNuTV3

kwn.me Shortener

$this->Shorten->shorten('http://onemorefunction.com', 'kwnme');

http://kwn.me/1op0

Google Shortener

$this->Shorten->shorten('http://onemorefunction.com', 'google');

http://goo.gl/OJ93G

Custom (YOURLS) Shortener

$this->Shorten->shorten('http://onemorefunction.com', 'yourls', array('domain' => 'topic.to'))

http://topic.to/10u

Example for: CakePHP - ShortenComponent - A Component for URL Shortening

}