Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 10 |
ExternalSurvey | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
12 | |
0.00% |
0 / 10 |
__construct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 5 |
|||
getMessages | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
|||
toArray | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 4 |
<?php | |
namespace QuickSurveys; | |
class ExternalSurvey extends Survey { | |
/** | |
* @var bool Whether the survey runs on HTTPS or not. | |
*/ | |
private $isInsecure = null; | |
/** | |
* @var string The key of the message containing the URL of the external survey. | |
*/ | |
private $link; | |
/** | |
* @var string The name of the URL parameter filled with the instance token appended to $link. | |
*/ | |
private $instanceTokenParameterName; | |
/** | |
* ExternalSurvey constructor. | |
* @param string $name | |
* @param string $question | |
* @param string $description | |
* @param bool $isEnabled | |
* @param float $coverage | |
* @param array $platforms | |
* @param string $privacyPolicy | |
* @param string $additionalInfo | |
* @param string $confirmMsg | |
* @param SurveyAudience $audience | |
* @param string $link | |
* @param string $instanceTokenParameterName | |
*/ | |
public function __construct( | |
$name, | |
$question, | |
$description, | |
$isEnabled, | |
$coverage, | |
array $platforms, | |
$privacyPolicy, | |
$additionalInfo, | |
$confirmMsg, | |
SurveyAudience $audience, | |
$link, | |
$instanceTokenParameterName | |
) { | |
parent::__construct( | |
$name, | |
$question, | |
$description, | |
$isEnabled, | |
$coverage, | |
$platforms, | |
$privacyPolicy, | |
$additionalInfo, | |
$confirmMsg, | |
$audience | |
); | |
$this->link = $link; | |
$this->instanceTokenParameterName = $instanceTokenParameterName; | |
} | |
/** | |
* @return array | |
*/ | |
public function getMessages(): array { | |
return array_merge( parent::getMessages(), [ $this->link ] ); | |
} | |
public function toArray(): array { | |
return parent::toArray() + [ | |
'type' => 'external', | |
'link' => $this->link, | |
'instanceTokenParameterName' => $this->instanceTokenParameterName, | |
]; | |
} | |
} |