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