mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
36 lines
542 B
PHP
36 lines
542 B
PHP
<?php
|
|
|
|
namespace Kanboard\Core\ExternalLink;
|
|
|
|
/**
|
|
* External Link Interface
|
|
*
|
|
* @package externalLink
|
|
* @author Frederic Guillot
|
|
*/
|
|
interface ExternalLinkInterface
|
|
{
|
|
/**
|
|
* Get link title
|
|
*
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function getTitle();
|
|
|
|
/**
|
|
* Get link URL
|
|
*
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function getUrl();
|
|
|
|
/**
|
|
* Set link URL
|
|
*
|
|
* @access public
|
|
* @param string $url
|
|
*/
|
|
public function setUrl($url);
|
|
}
|