Ejemplo n.º 1
0
 protected function lnkSelected_Click($strFormId, $strControlId, $strParameter)
 {
     $intPraiseId = $strParameter;
     $objPraise = Praises::Load($intPraiseId);
     if ($objPraise) {
         $this->objPraise = $objPraise;
         $this->lblSubject->Text = $objPraise->Subject;
         $this->lblSubject->Visible = true;
         $this->lblDate->Text = $objPraise->Date ? $objPraise->Date->ToString() : '';
         $this->lblDate->Visible = true;
         $this->lblContent->Text = $objPraise->Content;
         $this->lblContent->Visible = true;
     }
 }
Ejemplo n.º 2
0
 /**
  * Reload this Praises 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 Praises object.');
     }
     // Reload the Object
     $objReloaded = Praises::Load($this->intId);
     // Update $this's local variables to match
     $this->strName = $objReloaded->strName;
     $this->strEmail = $objReloaded->strEmail;
     $this->strSubject = $objReloaded->strSubject;
     $this->strContent = $objReloaded->strContent;
     $this->dttDate = $objReloaded->dttDate;
 }
Ejemplo n.º 3
0
 /**
  * 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 PraisesMetaControl
  * @param integer $intId primary key value
  * @param QMetaControlCreateType $intCreateType rules governing Praises object creation - defaults to CreateOrEdit
  * @return PraisesMetaControl
  */
 public static function Create($objParentObject, $intId = null, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     // Attempt to Load from PK Arguments
     if (strlen($intId)) {
         $objPraises = Praises::Load($intId);
         // Praises was found -- return it!
         if ($objPraises) {
             return new PraisesMetaControl($objParentObject, $objPraises);
         } else {
             if ($intCreateType != QMetaControlCreateType::CreateOnRecordNotFound) {
                 throw new QCallerException('Could not find a Praises 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 PraisesMetaControl($objParentObject, new Praises());
 }