| 1 | <?php |
||
| 18 | class Oids |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var array |
||
| 22 | */ |
||
| 23 | private static $oidsTable = array(); |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Return Oid name |
||
| 27 | * @param string $key formated OID numeric key |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | public static function getOid($key) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Returns all oids in the list |
||
| 41 | * @return array |
||
| 42 | */ |
||
| 43 | public static function listOids() |
||
| 48 | |||
| 49 | /** |
||
| 50 | * Load list of oids |
||
| 51 | */ |
||
| 52 | private static function loadOids() |
||
| 57 | } |
||
| 58 |