Added new API calls for external task links
This commit is contained in:
@@ -152,6 +152,30 @@ class ExternalLinkManager extends Base
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set provider type
|
||||
*
|
||||
* @access public
|
||||
* @param string $userInputType
|
||||
* @return ExternalLinkManager
|
||||
*/
|
||||
public function setUserInputType($userInputType)
|
||||
{
|
||||
$this->userInputType = $userInputType;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set external link
|
||||
* @param string $userInputText
|
||||
* @return ExternalLinkManager
|
||||
*/
|
||||
public function setUserInputText($userInputText)
|
||||
{
|
||||
$this->userInputText = $userInputText;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Find a provider that user input
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user