TrackManiaControl/application/core/FML/Types/Linkable.php

40 lines
600 B
PHP
Raw Normal View History

<?php
namespace FML\Types;
/**
2014-01-12 00:51:46 +01:00
* Interface for Elements with Url Attributes
*
* @author steeffeen
*/
interface Linkable {
/**
2013-12-31 02:55:19 +01:00
* Set Url
*
2014-01-12 00:51:46 +01:00
* @param string $url Link Url
*/
public function setUrl($url);
2014-01-19 19:30:21 +01:00
/**
* Set Url Id to use from the Dico
*
* @param string $urlId
*/
public function setUrlId($urlId);
/**
2013-12-31 02:55:19 +01:00
* Set Manialink
*
2014-01-12 00:51:46 +01:00
* @param string $manialink Manialink Name
*/
public function setManialink($manialink);
2014-01-19 19:30:21 +01:00
/**
* Set Manialink Id to use from the Dico
*
* @param string $manialinkId Manialink Id
*/
public function setManialinkId($manialinkId);
}