diff --git a/functions/satellite.xml b/functions/satellite.xml deleted file mode 100644 index 5bbb592dcc..0000000000 --- a/functions/satellite.xml +++ /dev/null @@ -1,365 +0,0 @@ - - - - - - Satellite CORBA client extension - Satellite - - - &warn.experimental; - - The Satellite extension is used for accessing CORBA objects. You - will need to set the idl_directory= entry in php.ini to a path - where you store all IDL files you use. - - - - - - OrbitObject - Access CORBA objects - - - Description - - newOrbitObject - stringior - - &warn.experimental.func; - - This class provides access to a CORBA object. The - ior parameter should be a string - containing the IOR (Interoperable Object Reference) that - identifies the remote object. - - - - Sample IDL file - - - - - - - - PHP code for accessing MyInterface - -SetInfo ("A 2GooD object"); - -echo $obj->GetInfo(); - -$obj->value = 42; - -echo $obj->value; -?> -]]> - - - - - - - - - OrbitEnum - Use CORBA enums - - - Description - - newOrbitEnum - stringid - - &warn.experimental.func; - - This class represents the enumeration identified with the - id parameter. The - id can be either the name of the - enumeration (e.g "MyEnum"), or the full repository id - (e.g. "IDL:MyEnum:1.0"). - - - - Sample IDL file - - - - - - - - PHP code for accessing MyEnum - -a; /* write 0 */ -echo $enum->c; /* write 2 */ -echo $enum->e; /* write 4 */ -?> -]]> - - - - - - - - - OrbitStruct - Use CORBA structs - - - Description - - newOrbitStruct - stringid - - &warn.experimental.func; - - This class represents the structure identified with the - id parameter. The - id can be either the name of the struct - (e.g "MyStruct"), or the full repository id - (e.g. "IDL:MyStruct:1.0"). - - - - Sample IDL file - - - - - - - - PHP code for accessing MyStruct - -shortvalue = 42; -$initial_values->stringvalue = "HGTTG"; - -$obj->SetValues ($initial_values); - -$values = $obj->GetValues(); - -echo $values->shortvalue; -echo $values->stringvalue; -?> -]]> - - - - - - - - - satellite_caught_exception - - See if an exception was caught from the previous function - - - - Description - - boolsatellite_caught_exception - - - &warn.experimental.func; - - This function returns &true; if an exception has been caught. - - - - Sample IDL file - - - - - - - - PHP code for handling CORBA exceptions - -AskWhy(); - -if (satellite_caught_exception()) { - if ("IDL:OutOfCheeseError:1.0" == satellite_exception_id()) { - $exception = satellite_exception_value(); - echo $exception->parameter; - } -} -?> -]]> - - - - - - - - - satellite_exception_id - Get the repository id for the latest exception. - - - Description - - stringsatellite_exception_id - - - &warn.experimental.func; - - Return a repository id string. (E.g. "IDL:MyException:1.0".) For - example usage see - satellite_caught_exception. - - - - - - - satellite_exception_value - - Get the exception struct for the latest exception - - - - Description - - OrbitStructsatellite_exception_value - - - &warn.experimental.func; - - Return an exception struct. For example usage see - satellite_caught_exception. - - - - - - - satellite_object_to_string - - Convert an object to its string representation - - - - Description - - stringsatellite_object_to_string - objectobj - - - &warn.undocumented.func; - - - - - - - satellite_load_idl - - Instruct the type manager to load an IDL file if not already loaded - - - - Description - - boolsatellite_load_idl - stringfile - - - &warn.undocumented.func; - - - - - - - satellite_get_repository_id - - NOT IMPLEMENTED - - - - Description - - intsatellite_get_repository_id - objectobj - - - &warn.undocumented.func; - - - - - - - -