1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/sources/app/ExternalLink/BaseLinkProvider.php
2016-03-07 23:38:10 +01:00

33 lines
529 B
PHP

<?php
namespace Kanboard\ExternalLink;
use Kanboard\Core\Base;
/**
* Base Link Provider
*
* @package externalLink
* @author Frederic Guillot
*/
abstract class BaseLinkProvider extends Base
{
/**
* User input
*
* @access protected
* @var string
*/
protected $userInput = '';
/**
* Set text entered by the user
*
* @access public
* @param string $input
*/
public function setUserTextInput($input)
{
$this->userInput = trim($input);
}
}