|
@@ -99,6 +99,7 @@ class destinations {
|
|
|
$y++;
|
|
|
$this->destinations[$x]['result']['data'][$y]['label'] = 'hangup';
|
|
|
$this->destinations[$x]['result']['data'][$y]['name'] = 'hangup';
|
|
|
+ $this->destinations[$x]['result']['data'][$y]['application'] = 'hangup';
|
|
|
$this->destinations[$x]['result']['data'][$y]['destination'] = '';
|
|
|
$y++;
|
|
|
$this->destinations[$x]['result']['data'][$y]['label'] = 'record';
|
|
@@ -215,7 +216,7 @@ class destinations {
|
|
|
}
|
|
|
else {
|
|
|
$label = $data['label'];
|
|
|
- $select_label = str_replace("\${".$key."}", $text2['option-'.$label]."215", $select_label);
|
|
|
+ $select_label = str_replace("\${".$key."}", $text2['option-'.$label], $select_label);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -231,8 +232,13 @@ class destinations {
|
|
|
$select_label = str_replace("\${".$key."}", $text2['option-'.$label], $select_label);
|
|
|
}
|
|
|
}
|
|
|
+ //application: hangup
|
|
|
+ if (strlen($data['application']) > 0) {
|
|
|
+ $select_value = str_replace("transfer", $data['application'], $select_value);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
$select_value = str_replace("\${domain_name}", $_SESSION['domain_name'], $select_value);
|
|
|
$select_value = str_replace("\${context}", $_SESSION['context'], $select_value); //to do: context can come from the array
|
|
|
$select_label = str_replace("\${domain_name}", $_SESSION['domain_name'], $select_label);
|