protected function SetupAdminSetting()
 {
     // Lookup Object PK information from Query String (if applicable)
     // Set mode to Edit or New depending on what's found
     $intSettingId = QApplication::QueryString('intSettingId');
     if ($intSettingId) {
         $this->objAdminSetting = AdminSetting::Load($intSettingId);
         if (!$this->objAdminSetting) {
             throw new Exception('Could not find a AdminSetting object with PK arguments: ' . $intSettingId);
         }
         $this->strTitleVerb = QApplication::Translate('Edit');
         $this->blnEditMode = true;
     } else {
         $this->objAdminSetting = new AdminSetting();
         $this->strTitleVerb = QApplication::Translate('Create');
         $this->blnEditMode = false;
     }
 }
 /**
  * Reload this AdminSetting 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 AdminSetting object.');
     }
     // Reload the Object
     $objReloaded = AdminSetting::Load($this->intSettingId);
     // Update $this's local variables to match
     $this->strShortDescription = $objReloaded->strShortDescription;
     $this->strValue = $objReloaded->strValue;
 }
 /**
  * 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 AdminSettingMetaControl
  * @param integer $intSettingId primary key value
  * @param QMetaControlCreateType $intCreateType rules governing AdminSetting object creation - defaults to CreateOrEdit
  * @return AdminSettingMetaControl
  */
 public static function Create($objParentObject, $intSettingId = null, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     // Attempt to Load from PK Arguments
     if (strlen($intSettingId)) {
         $objAdminSetting = AdminSetting::Load($intSettingId);
         // AdminSetting was found -- return it!
         if ($objAdminSetting) {
             return new AdminSettingMetaControl($objParentObject, $objAdminSetting);
         } else {
             if ($intCreateType != QMetaControlCreateType::CreateOnRecordNotFound) {
                 throw new QCallerException('Could not find a AdminSetting object with PK arguments: ' . $intSettingId);
             }
         }
         // 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 AdminSettingMetaControl($objParentObject, new AdminSetting());
 }
 public function btnEdit_Click($strFormId, $strControlId, $strParameter)
 {
     $strParameterArray = explode(',', $strParameter);
     $objAdminSetting = AdminSetting::Load($strParameterArray[0]);
     $objEditPanel = new AdminSettingEditPanel($this, $this->strCloseEditPanelMethod, $objAdminSetting);
     $strMethodName = $this->strSetEditPanelMethod;
     $this->objForm->{$strMethodName}($objEditPanel);
 }