Beispiel #1
0
 public function addBackupJob($secret_key, $url, $time = 0, $weekdays = array())
 {
     try {
         $web_service = new CBitrixCloudBackupWebService();
         $web_service->actionAddBackupJob($secret_key, $url, $time, $weekdays);
         return "";
     } catch (CBitrixCloudException $e) {
         return $e->getMessage();
         //."[".htmlspecialcharsEx($e->getErrorCode())."]";
     }
 }