function()
{
if (!is_array($this->_test_emails)) {
$emails = $this->getOptionsTextValue('test');
$this->_test_emails = [];
foreach ($emails as $em) {
$this->_test_emails[] = $em['text'];
}
}
return $this->_test_emails;
}