/**
  * 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 MyassetsMetaControl
  * @param integer $intId primary key value
  * @param QMetaControlCreateType $intCreateType rules governing Myassets object creation - defaults to CreateOrEdit
  * @return MyassetsMetaControl
  */
 public static function Create($objParentObject, $intId = null, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     // Attempt to Load from PK Arguments
     if (strlen($intId)) {
         $objMyassets = Myassets::Load($intId);
         // Myassets was found -- return it!
         if ($objMyassets) {
             return new MyassetsMetaControl($objParentObject, $objMyassets);
         } else {
             if ($intCreateType != QMetaControlCreateType::CreateOnRecordNotFound) {
                 throw new QCallerException('Could not find a Myassets 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 MyassetsMetaControl($objParentObject, new Myassets());
 }
示例#2
0
 /**
  * Reload this Myassets 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 Myassets object.');
     }
     // Reload the Object
     $objReloaded = Myassets::Load($this->intId);
     // Update $this's local variables to match
     $this->strAsin = $objReloaded->strAsin;
     $this->strDetailPageURL = $objReloaded->strDetailPageURL;
     $this->strTitle = $objReloaded->strTitle;
     $this->strProductGroup = $objReloaded->strProductGroup;
     $this->strImageURL = $objReloaded->strImageURL;
     $this->strAuthor = $objReloaded->strAuthor;
     $this->strNumberOfPages = $objReloaded->strNumberOfPages;
     $this->strPublisher = $objReloaded->strPublisher;
     $this->strIsbn = $objReloaded->strIsbn;
     $this->strActor = $objReloaded->strActor;
     $this->strDirector = $objReloaded->strDirector;
     $this->strRunningTime = $objReloaded->strRunningTime;
     $this->strArtist = $objReloaded->strArtist;
     $this->strLabel = $objReloaded->strLabel;
     $this->strNumberOfDiscs = $objReloaded->strNumberOfDiscs;
     $this->strTracks = $objReloaded->strTracks;
     $this->strLanguage = $objReloaded->strLanguage;
     $this->strGenre = $objReloaded->strGenre;
     $this->strOwner = $objReloaded->strOwner;
 }
示例#3
0
 /**
  * Override method to perform a property "Get"
  * This will get the value of $strName
  *
  * @param string $strName Name of the property to get
  * @return mixed
  */
 public function __get($strName)
 {
     switch ($strName) {
         ///////////////////
         // Member Variables
         ///////////////////
         case 'Id':
             /**
              * Gets the value for intId (Read-Only PK)
              * @return integer
              */
             return $this->intId;
         case 'MemberId':
             /**
              * Gets the value for intMemberId (Not Null)
              * @return integer
              */
             return $this->intMemberId;
         case 'AssetId':
             /**
              * Gets the value for intAssetId (Not Null)
              * @return integer
              */
             return $this->intAssetId;
             ///////////////////
             // Member Objects
             ///////////////////
         ///////////////////
         // Member Objects
         ///////////////////
         case 'Member':
             /**
              * Gets the value for the Memberdetails object referenced by intMemberId (Not Null)
              * @return Memberdetails
              */
             try {
                 if (!$this->objMember && !is_null($this->intMemberId)) {
                     $this->objMember = Memberdetails::Load($this->intMemberId);
                 }
                 return $this->objMember;
             } catch (QCallerException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
         case 'Asset':
             /**
              * Gets the value for the Myassets object referenced by intAssetId (Not Null)
              * @return Myassets
              */
             try {
                 if (!$this->objAsset && !is_null($this->intAssetId)) {
                     $this->objAsset = Myassets::Load($this->intAssetId);
                 }
                 return $this->objAsset;
             } catch (QCallerException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
             ////////////////////////////
             // Virtual Object References (Many to Many and Reverse References)
             // (If restored via a "Many-to" expansion)
             ////////////////////////////
         ////////////////////////////
         // Virtual Object References (Many to Many and Reverse References)
         // (If restored via a "Many-to" expansion)
         ////////////////////////////
         case '__Restored':
             return $this->__blnRestored;
         default:
             try {
                 return parent::__get($strName);
             } catch (QCallerException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
     }
 }