function deleteConnectedModules($object_id)
 {
     global $connected_cms;
     $connected_cms[$this->cms_type]->soap_client->setCachingStatus(false);
     $connected_cms[$this->cms_type]->soap_client->clearCache();
     $connected_cms[$this->cms_type]->soap_client->user_type == "admin";
     $crs_id = ObjectConnections::getConnectionModuleId($object_id, "crs", $this->cms_type);
     if ($crs_id && $connected_cms[$this->cms_type]->soap_client->checkReferenceById($crs_id)) {
         $connected_cms[$this->cms_type]->soap_client->deleteObject($crs_id);
     }
     return parent::deleteConnectedModules($object_id);
 }