Added detailed list of received/given likes in user profiles
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / ILinkableObject.class.php
CommitLineData
ee3e82c1
MS
1<?php
2namespace wcf\data;
3
4/**
06f0b025 5 * Every linkable object has to implement this interface.
ee3e82c1
MS
6 *
7 * @author Matthias Schmidt
ca4ba303 8 * @copyright 2001-2014 WoltLab GmbH
ee3e82c1
MS
9 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
10 * @package com.woltlab.wcf
11 * @subpackage data
9f959ced 12 * @category Community Framework
ee3e82c1 13 */
06f0b025 14interface ILinkableObject {
ee3e82c1 15 /**
06f0b025 16 * Returns the link to the object.
ee3e82c1
MS
17 *
18 * @return string
19 */
20 public function getLink();
58e1d71f 21}