* @copyright 2008 Digg.com, Inc. * @license http://tinyurl.com/42zef New BSD License * @version SVN: @version@ * @link http://code.google.com/p/digg * @link http://oembed.com */ require_once 'Services/oEmbed/Object/Common.php'; /** * Link object for {@link Services_oEmbed} * * @category Services * @package Services_oEmbed * @author Joe Stump * @copyright 2008 Digg.com, Inc. * @license http://tinyurl.com/42zef New BSD License * @version Release: @version@ * @link http://code.google.com/p/digg * @link http://oembed.com */ class Services_oEmbed_Object_Link extends Services_oEmbed_Object_Common { /** * Output a sane link * * @return string An HTML link of the object */ public function __toString() { return '' . $this->title . ''; } } ?>