예제 #1
0
 /**
  * Reload this NarroSuggestionVote 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 NarroSuggestionVote object.');
     }
     $this->DeleteCache();
     // Reload the Object
     $objReloaded = NarroSuggestionVote::Load($this->intSuggestionId, $this->intContextId, $this->intUserId);
     // Update $this's local variables to match
     $this->SuggestionId = $objReloaded->SuggestionId;
     $this->__intSuggestionId = $this->intSuggestionId;
     $this->ContextId = $objReloaded->ContextId;
     $this->__intContextId = $this->intContextId;
     $this->UserId = $objReloaded->UserId;
     $this->__intUserId = $this->intUserId;
     $this->intVoteValue = $objReloaded->intVoteValue;
     $this->dttCreated = $objReloaded->dttCreated;
     $this->dttModified = $objReloaded->dttModified;
 }
 /**
  * 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 NarroSuggestionVoteMetaControl
  * @param integer $intSuggestionId primary key value
  * @param integer $intContextId primary key value
  * @param integer $intUserId primary key value
  * @param QMetaControlCreateType $intCreateType rules governing NarroSuggestionVote object creation - defaults to CreateOrEdit
  * @return NarroSuggestionVoteMetaControl
  */
 public static function Create($objParentObject, $intSuggestionId = null, $intContextId = null, $intUserId = null, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     // Attempt to Load from PK Arguments
     if (strlen($intSuggestionId) && strlen($intContextId) && strlen($intUserId)) {
         $objNarroSuggestionVote = NarroSuggestionVote::Load($intSuggestionId, $intContextId, $intUserId);
         // NarroSuggestionVote was found -- return it!
         if ($objNarroSuggestionVote) {
             return new NarroSuggestionVoteMetaControl($objParentObject, $objNarroSuggestionVote);
         } else {
             if ($intCreateType != QMetaControlCreateType::CreateOnRecordNotFound) {
                 throw new QCallerException('Could not find a NarroSuggestionVote object with PK arguments: ' . $intSuggestionId . ', ' . $intContextId . ', ' . $intUserId);
             }
         }
         // 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 NarroSuggestionVoteMetaControl($objParentObject, new NarroSuggestionVote());
 }