ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilSoapHookPlugin.php
Go to the documentation of this file.
1 <?php
2 include_once("./Services/Component/classes/class.ilPlugin.php");
3 
8 abstract class ilSoapHookPlugin extends ilPlugin
9 {
10 
14  public function getComponentType()
15  {
16  return IL_COMP_SERVICE;
17  }
18 
22  public function getComponentName()
23  {
24  return 'WebServices';
25  }
26 
30  public function getSlot()
31  {
32  return 'SoapHook';
33  }
34 
38  public function getSlotId()
39  {
40  return 'soaphk';
41  }
42 
48  abstract public function getSoapMethods();
49 
58  abstract public function getWsdlTypes();
59 
63  protected function slotInit()
64  {
65  }
66 }
getWsdlTypes()
Get any (new) types which the SOAP methods may use.
getSoapMethods()
Get all soap methods which will be made available to the SOAP webservice.
Class ilSoapHookPlugin.
const IL_COMP_SERVICE