/**
  * Static Helper Method to Create using PK arguments
  * You must pass in the PK arguments on an object to load, or leave it blank to create a new one.
  * If you want to load via QueryString or PathInfo, use the CreateFromQueryString or CreateFromPathInfo
  * static helper methods.  Finally, specify a CreateType to define whether or not we are only allowed to 
  * edit, or if we are also allowed to create a new one, etc.
  * 
  * @param mixed $objParentObject QForm or QPanel which will be using this GroupRegistrationsMetaControl
  * @param integer $intId primary key value
  * @param QMetaControlCreateType $intCreateType rules governing GroupRegistrations object creation - defaults to CreateOrEdit
  * @return GroupRegistrationsMetaControl
  */
 public static function Create($objParentObject, $intId = null, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     // Attempt to Load from PK Arguments
     if (strlen($intId)) {
         $objGroupRegistrations = GroupRegistrations::Load($intId);
         // GroupRegistrations was found -- return it!
         if ($objGroupRegistrations) {
             return new GroupRegistrationsMetaControl($objParentObject, $objGroupRegistrations);
         } else {
             if ($intCreateType != QMetaControlCreateType::CreateOnRecordNotFound) {
                 throw new QCallerException('Could not find a GroupRegistrations object with PK arguments: ' . $intId);
             }
         }
         // If EditOnly is specified, throw an exception
     } else {
         if ($intCreateType == QMetaControlCreateType::EditOnly) {
             throw new QCallerException('No PK arguments specified');
         }
     }
     // If we are here, then we need to create a new record
     return new GroupRegistrationsMetaControl($objParentObject, new GroupRegistrations());
 }
示例#2
0
 /**
  * Reload this GroupRegistrations from the database.
  * @return void
  */
 public function Reload()
 {
     // Make sure we are actually Restored from the database
     if (!$this->__blnRestored) {
         throw new QCallerException('Cannot call Reload() on a new, unsaved GroupRegistrations object.');
     }
     // Reload the Object
     $objReloaded = GroupRegistrations::Load($this->intId);
     // Update $this's local variables to match
     $this->SourceListId = $objReloaded->SourceListId;
     $this->dttDateReceived = $objReloaded->dttDateReceived;
     $this->strFirstName = $objReloaded->strFirstName;
     $this->strLastName = $objReloaded->strLastName;
     $this->strGender = $objReloaded->strGender;
     $this->strAddress = $objReloaded->strAddress;
     $this->strPhone = $objReloaded->strPhone;
     $this->strEmail = $objReloaded->strEmail;
     $this->strComments = $objReloaded->strComments;
     $this->GroupRoleId = $objReloaded->GroupRoleId;
     $this->strPreferredLocation1 = $objReloaded->strPreferredLocation1;
     $this->strPreferredLocation2 = $objReloaded->strPreferredLocation2;
     $this->strCity = $objReloaded->strCity;
     $this->strZipcode = $objReloaded->strZipcode;
     $this->strGroupDay = $objReloaded->strGroupDay;
     $this->strGroupsPlaced = $objReloaded->strGroupsPlaced;
     $this->dttDateProcessed = $objReloaded->dttDateProcessed;
     $this->blnProcessedFlag = $objReloaded->blnProcessedFlag;
 }
 protected function lstGroupRegistrationsesAsGroupstructure_Update()
 {
     if ($this->lstGroupRegistrationsesAsGroupstructure) {
         $this->objGrowthGroupStructure->UnassociateAllGroupRegistrationsesAsGroupstructure();
         $objSelectedListItems = $this->lstGroupRegistrationsesAsGroupstructure->SelectedItems;
         if ($objSelectedListItems) {
             foreach ($objSelectedListItems as $objListItem) {
                 $this->objGrowthGroupStructure->AssociateGroupRegistrationsAsGroupstructure(GroupRegistrations::Load($objListItem->Value));
             }
         }
     }
 }
示例#4
0
 public function btnProcess_Clicked($strFormId, $strControlId, $strParameter)
 {
     $objGroupRegistrant = GroupRegistrations::Load($strParameter);
     // Clear the panel and load it again
     $this->pnlStep1->RemoveChildControls(true);
     $this->pnlStep2->RemoveChildControls(true);
     $pnlProjectView = new CpGroup_RegistrationStep1Panel($this->pnlStep1, $this->pnlStep2, $objGroupRegistrant, 'RefreshRegistrants');
 }