cost_prices() - Uzantı Maliyet Bilgileri
Alan adı uzantısının maliyet tutarını çekebilmek için kullanılır, isteğe bağlı olarak fonksiyonu silebilirsiniz. Aynı zamanda bu fonksiyonu API üzerinde bulunan tüm uzantıları çekmek içinde kullanabilirsiniz.
public function cost_prices($type='domain'){
if(!$this->config["settings"]["adp"]) return false;
$prices = $this->api->cost_prices();
if(!$prices){
$this->error = $this->api->error;
return false;
}
$result = [];
if($type == "domain"){
foreach($prices AS $name=>$val){
$result[$name] = [
'register' => $val["register"],
'transfer' => $val["transfer"],
'renewal' => $val["renewal"],
];
}
}
return $result;
}
Geri Dönüş Değeri;
Array
(
[com] => Array
(
[register] => 9.99
[renewal] => 10.99
[transfer] => 9.99
)
[net] => Array
(
[register] => 10.99
[renewal] => 11.99
[transfer] => 10.99
)
[org] => Array
(
[register] => 11.99
[renewal] => 12.99
[transfer] => 11.99
)
)