Пример #1
0
 def _checkParams( self, params ):
     RHConferenceBaseDisplay._checkParams(self, params)
     self._regForm = self._conf.getRegistrationForm()
     self._params=params
     self._registrant=None
     regId=params.get("registrantId","")
     if regId is not None:
         self._registrant=self._conf.getRegistrantById(regId)
Пример #2
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self._regForm = self._conf.getRegistrationForm()
     self._params = params
     self._registrant = None
     regId = params.get("registrantId", "")
     if regId is not None:
         self._registrant = self._conf.getRegistrantById(regId)
Пример #3
0
 def _checkParams( self, params ):
     if not "confId" in params.keys():
         params["confId"] = params.get("M_confId","")
     if not "registrantId" in params.keys():
         params["registrantId"] = params.get("M_registrantId","")
     RHConferenceBaseDisplay._checkParams(self, params)
     self._regForm = self._conf.getRegistrationForm()
     self._params = params
     self._registrant = None
     regId = params.get("registrantId", "")
     if regId is not None:
         self._registrant = self._conf.getRegistrantById(regId)
Пример #4
0
 def _checkParams(self, params):
     if not "confId" in params.keys():
         params["confId"] = params.get("M_confId", "")
     if not "registrantId" in params.keys():
         params["registrantId"] = params.get("M_registrantId", "")
     RHConferenceBaseDisplay._checkParams(self, params)
     self._regForm = self._conf.getRegistrationForm()
     self._params = params
     self._registrant = None
     regId = params.get("registrantId", "")
     if regId is not None:
         self._registrant = self._conf.getRegistrantById(regId)
Пример #5
0
 def _checkParams( self, params ):
     #
     #skipjack does not allow for the sending of arbitrary variables.  We are
     #using the user defined fields to send the confid and the registrant id.
     #
     if not "confId" in params.keys():
         params["confId"] = params.get("UserDefined1","")
     if not "registrantId" in params.keys():
         params["registrantId"] = params.get("UserDefined2","")
     #_checkParams sets the conf field.
     RHConferenceBaseDisplay._checkParams(self, params)
     self._regForm = self._conf.getRegistrationForm()
     self._params = params
     self._registrant = None
     regId = params.get("registrantId", "")
     if regId is not None:
         self._registrant = self._conf.getRegistrantById(regId)