Exemple #1
0
 public function pxyEmailMessage_Click($strFormId, $strControlId, $strParameter)
 {
     $objEmailMessageRoute = EmailMessageRoute::Load($strParameter);
     if ($objEmailMessageRoute && $objEmailMessageRoute->CommunicationListId == $this->objList->Id) {
         $this->objSelectedEmailMessageRoute = $objEmailMessageRoute;
         $this->dlgEmailMessage->ShowDialogBox();
     }
 }
 /**
  * Reload this EmailMessageRoute 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 EmailMessageRoute object.');
     }
     // Reload the Object
     $objReloaded = EmailMessageRoute::Load($this->intId);
     // Update $this's local variables to match
     $this->EmailMessageId = $objReloaded->EmailMessageId;
     $this->GroupId = $objReloaded->GroupId;
     $this->CommunicationListId = $objReloaded->CommunicationListId;
     $this->LoginId = $objReloaded->LoginId;
     $this->CommunicationListEntryId = $objReloaded->CommunicationListEntryId;
     $this->PersonId = $objReloaded->PersonId;
 }
 /**
  * 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 EmailMessageRouteMetaControl
  * @param integer $intId primary key value
  * @param QMetaControlCreateType $intCreateType rules governing EmailMessageRoute object creation - defaults to CreateOrEdit
  * @return EmailMessageRouteMetaControl
  */
 public static function Create($objParentObject, $intId = null, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     // Attempt to Load from PK Arguments
     if (strlen($intId)) {
         $objEmailMessageRoute = EmailMessageRoute::Load($intId);
         // EmailMessageRoute was found -- return it!
         if ($objEmailMessageRoute) {
             return new EmailMessageRouteMetaControl($objParentObject, $objEmailMessageRoute);
         } else {
             if ($intCreateType != QMetaControlCreateType::CreateOnRecordNotFound) {
                 throw new QCallerException('Could not find a EmailMessageRoute 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 EmailMessageRouteMetaControl($objParentObject, new EmailMessageRoute());
 }