/**
  * Reload this ShowcaseItem 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 ShowcaseItem object.');
     }
     // Reload the Object
     $objReloaded = ShowcaseItem::Load($this->intId);
     // Update $this's local variables to match
     $this->ImageFileTypeId = $objReloaded->ImageFileTypeId;
     $this->PersonId = $objReloaded->PersonId;
     $this->strName = $objReloaded->strName;
     $this->strDescription = $objReloaded->strDescription;
     $this->strUrl = $objReloaded->strUrl;
     $this->blnLiveFlag = $objReloaded->blnLiveFlag;
 }
Beispiel #2
0
 protected function pxyItem_Click($strFormId, $strControlId, $strParameter)
 {
     $this->objSelectedShowcase = ShowcaseItem::Load($strParameter);
     if (!$this->objSelectedShowcase || !$this->objSelectedShowcase->LiveFlag) {
         return;
     }
     $this->dlgBox->Template = dirname(__FILE__) . '/dlgBox_ShowcaseView.tpl.php';
     $this->dlgBox->ShowDialogBox();
 }
 /**
  * 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 ShowcaseItemMetaControl
  * @param integer $intId primary key value
  * @param QMetaControlCreateType $intCreateType rules governing ShowcaseItem object creation - defaults to CreateOrEdit
  * @return ShowcaseItemMetaControl
  */
 public static function Create($objParentObject, $intId = null, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     // Attempt to Load from PK Arguments
     if (strlen($intId)) {
         $objShowcaseItem = ShowcaseItem::Load($intId);
         // ShowcaseItem was found -- return it!
         if ($objShowcaseItem) {
             return new ShowcaseItemMetaControl($objParentObject, $objShowcaseItem);
         } else {
             if ($intCreateType != QMetaControlCreateType::CreateOnRecordNotFound) {
                 throw new QCallerException('Could not find a ShowcaseItem 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 ShowcaseItemMetaControl($objParentObject, new ShowcaseItem());
 }