oxonlinemoduleversionnotifiercaller.php

Go to the documentation of this file.
00001 <?php
00002 
00015 class oxOnlineModuleVersionNotifierCaller extends oxOnlineCaller
00016 {
00017 
00019     const WEB_SERVICE_URL = 'https://omvn.oxid-esales.com/check.php';
00020 
00022     const XML_DOCUMENT_NAME = 'omvnRequest';
00023 
00029     public function doRequest(oxOnlineModulesNotifierRequest $oRequest)
00030     {
00031         $this->call($oRequest);
00032     }
00033 
00039     protected function _getXMLDocumentName()
00040     {
00041         return self::XML_DOCUMENT_NAME;
00042     }
00043 
00049     protected function _getServiceUrl()
00050     {
00051         return self::WEB_SERVICE_URL;
00052     }
00053 }