TrackManiaControl/application/core/FML/Types/Linkable.php
Steffen Schröder 11abd5ee6e fml update
2014-05-01 17:35:03 +02:00

44 lines
728 B
PHP

<?php
namespace FML\Types;
/**
* Interface for Elements with Url Attributes
*
* @author steeffeen
*/
interface Linkable {
/**
* Set Url
*
* @param string $url Link Url
* @return \FML\Types\Linkable
*/
public function setUrl($url);
/**
* Set Url Id to use from the Dico
*
* @param string $urlId
* @return \FML\Types\Linkable
*/
public function setUrlId($urlId);
/**
* Set Manialink
*
* @param string $manialink Manialink Name
* @return \FML\Types\Linkable
*/
public function setManialink($manialink);
/**
* Set Manialink Id to use from the Dico
*
* @param string $manialinkId Manialink Id
* @return \FML\Types\Linkable
*/
public function setManialinkId($manialinkId);
}