/**
  * 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 ArticlemusicMetaControl
  * @param integer $intId primary key value
  * @param QMetaControlCreateType $intCreateType rules governing Articlemusic object creation - defaults to CreateOrEdit
  * @return ArticlemusicMetaControl
  */
 public static function Create($objParentObject, $intId = null, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     // Attempt to Load from PK Arguments
     if (strlen($intId)) {
         $objArticlemusic = Articlemusic::Load($intId);
         // Articlemusic was found -- return it!
         if ($objArticlemusic) {
             return new ArticlemusicMetaControl($objParentObject, $objArticlemusic);
         } else {
             if ($intCreateType != QMetaControlCreateType::CreateOnRecordNotFound) {
                 throw new QCallerException('Could not find a Articlemusic 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 ArticlemusicMetaControl($objParentObject, new Articlemusic());
 }
 /**
  * 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 'ReferenceId':
             /**
              * Gets the value for intReferenceId 
              * @return integer
              */
             return $this->intReferenceId;
         case 'DiscNumber':
             /**
              * Gets the value for strDiscNumber 
              * @return string
              */
             return $this->strDiscNumber;
         case 'TrackNumber':
             /**
              * Gets the value for strTrackNumber 
              * @return string
              */
             return $this->strTrackNumber;
         case 'TrackTitle':
             /**
              * Gets the value for strTrackTitle 
              * @return string
              */
             return $this->strTrackTitle;
             ///////////////////
             // Member Objects
             ///////////////////
         ///////////////////
         // Member Objects
         ///////////////////
         case 'ReferenceIdObject':
             /**
              * Gets the value for the Articlemusic object referenced by intReferenceId 
              * @return Articlemusic
              */
             try {
                 if (!$this->objReferenceIdObject && !is_null($this->intReferenceId)) {
                     $this->objReferenceIdObject = Articlemusic::Load($this->intReferenceId);
                 }
                 return $this->objReferenceIdObject;
             } 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;
             }
     }
 }
Example #3
0
 /**
  * Reload this Articlemusic 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 Articlemusic object.');
     }
     // Reload the Object
     $objReloaded = Articlemusic::Load($this->intId);
     // Update $this's local variables to match
     $this->ReferenceID = $objReloaded->ReferenceID;
     $this->strArtist = $objReloaded->strArtist;
     $this->strLabel = $objReloaded->strLabel;
     $this->fltNumberOfDiscs = $objReloaded->fltNumberOfDiscs;
     $this->dttReleaseDate = $objReloaded->dttReleaseDate;
 }