Файл: _rootinc/cnic/Response/Suffixes.php
Строк: 14
<?
// CNic_Toolkit_Response_Suffixes - response object for suffixes
// Copyright (c) 2010 CentralNic Ltd. All rights reserved. This program is
// free software; you can redistribute it and/or modify it under the terms
// of the GNU GPL
// $Id: Suffixes.php,v 1.7 2010/03/31 12:03:03 gavin Exp $
class CNic_Toolkit_Response_Suffixes extends CNic_Toolkit_Response {
public function suffixes() {
$suffixes = $this->keys();
sort($suffixes, SORT_STRING);
return $suffixes;
}
}
?>