Beispiel #1
0
 public function pxyActiveFlagToggle_Click($strFormId, $strControlId, $strParameter)
 {
     $objPledge = StewardshipPledge::Load($strParameter);
     $objPledge->ActiveFlag = false;
     $objPledge->Save();
     $this->dtgPledges->Refresh();
 }
 /**
  * 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 StewardshipPledgeMetaControl
  * @param integer $intId primary key value
  * @param QMetaControlCreateType $intCreateType rules governing StewardshipPledge object creation - defaults to CreateOrEdit
  * @return StewardshipPledgeMetaControl
  */
 public static function Create($objParentObject, $intId = null, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     // Attempt to Load from PK Arguments
     if (strlen($intId)) {
         $objStewardshipPledge = StewardshipPledge::Load($intId);
         // StewardshipPledge was found -- return it!
         if ($objStewardshipPledge) {
             return new StewardshipPledgeMetaControl($objParentObject, $objStewardshipPledge);
         } else {
             if ($intCreateType != QMetaControlCreateType::CreateOnRecordNotFound) {
                 throw new QCallerException('Could not find a StewardshipPledge 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 StewardshipPledgeMetaControl($objParentObject, new StewardshipPledge());
 }
 /**
  * Reload this StewardshipPledge 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 StewardshipPledge object.');
     }
     // Reload the Object
     $objReloaded = StewardshipPledge::Load($this->intId);
     // Update $this's local variables to match
     $this->PersonId = $objReloaded->PersonId;
     $this->StewardshipFundId = $objReloaded->StewardshipFundId;
     $this->dttDateStarted = $objReloaded->dttDateStarted;
     $this->dttDateEnded = $objReloaded->dttDateEnded;
     $this->fltPledgeAmount = $objReloaded->fltPledgeAmount;
     $this->fltContributedAmount = $objReloaded->fltContributedAmount;
     $this->fltRemainingAmount = $objReloaded->fltRemainingAmount;
     $this->blnFulfilledFlag = $objReloaded->blnFulfilledFlag;
     $this->blnActiveFlag = $objReloaded->blnActiveFlag;
 }