/**
  * 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 LoginTicketMetaControl
  * @param integer $intId primary key value
  * @param QMetaControlCreateType $intCreateType rules governing LoginTicket object creation - defaults to CreateOrEdit
  * @return LoginTicketMetaControl
  */
 public static function Create($objParentObject, $intId = null, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     // Attempt to Load from PK Arguments
     if (strlen($intId)) {
         $objLoginTicket = LoginTicket::Load($intId);
         // LoginTicket was found -- return it!
         if ($objLoginTicket) {
             return new LoginTicketMetaControl($objParentObject, $objLoginTicket);
         } else {
             if ($intCreateType != QMetaControlCreateType::CreateOnRecordNotFound) {
                 throw new QCallerException('Could not find a LoginTicket 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 LoginTicketMetaControl($objParentObject, new LoginTicket());
 }
Exemplo n.º 2
0
 /**
  * Return a LoginTicket based on cookie information, if applicable
  * @return LoginTicket
  */
 public static function GetLoginTicketFromCookie()
 {
     if (array_key_exists('strTicket', $_COOKIE) && $_COOKIE['strTicket']) {
         try {
             $objCrypto = new QCryptography();
             $strTicket = $objCrypto->Decrypt($_COOKIE['strTicket']);
             $strTicketArray = explode('_', $strTicket);
             $intTicketId = $strTicketArray[0];
             $intPersonId = $strTicketArray[1];
             $objTicket = LoginTicket::Load($intTicketId);
             if ($objTicket && $objTicket->PersonId == $intPersonId) {
                 return $objTicket;
             }
         } catch (Exception $objExc) {
             // If we are here, there is something wrong with the cookie, so let's return null
             return null;
         }
     }
     // If we're here, no valid login ticket existed in the cookie
     return null;
 }
 /**
  * Reload this LoginTicket 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 LoginTicket object.');
     }
     // Reload the Object
     $objReloaded = LoginTicket::Load($this->intId);
     // Update $this's local variables to match
     $this->PersonId = $objReloaded->PersonId;
 }