/**
  * 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 MobileProviderMetaControl
  * @param integer $intId primary key value
  * @param QMetaControlCreateType $intCreateType rules governing MobileProvider object creation - defaults to CreateOrEdit
  * @return MobileProviderMetaControl
  */
 public static function Create($objParentObject, $intId = null, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     // Attempt to Load from PK Arguments
     if (strlen($intId)) {
         $objMobileProvider = MobileProvider::Load($intId);
         // MobileProvider was found -- return it!
         if ($objMobileProvider) {
             return new MobileProviderMetaControl($objParentObject, $objMobileProvider);
         } else {
             if ($intCreateType != QMetaControlCreateType::CreateOnRecordNotFound) {
                 throw new QCallerException('Could not find a MobileProvider 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 MobileProviderMetaControl($objParentObject, new MobileProvider());
 }
Ejemplo n.º 2
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 'PhoneTypeId':
             // Gets the value for intPhoneTypeId (Not Null)
             // @return integer
             return $this->intPhoneTypeId;
         case 'AddressId':
             // Gets the value for intAddressId
             // @return integer
             return $this->intAddressId;
         case 'PersonId':
             // Gets the value for intPersonId
             // @return integer
             return $this->intPersonId;
         case 'MobileProviderId':
             // Gets the value for intMobileProviderId
             // @return integer
             return $this->intMobileProviderId;
         case 'Number':
             // Gets the value for strNumber
             // @return string
             return $this->strNumber;
             ///////////////////
             // Member Objects
             ///////////////////
         ///////////////////
         // Member Objects
         ///////////////////
         case 'Address':
             // Gets the value for the Address object referenced by intAddressId
             // @return Address
             try {
                 if (!$this->objAddress && !is_null($this->intAddressId)) {
                     $this->objAddress = Address::Load($this->intAddressId);
                 }
                 return $this->objAddress;
             } catch (QCallerException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
         case 'Person':
             // Gets the value for the Person object referenced by intPersonId
             // @return Person
             try {
                 if (!$this->objPerson && !is_null($this->intPersonId)) {
                     $this->objPerson = Person::Load($this->intPersonId);
                 }
                 return $this->objPerson;
             } catch (QCallerException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
         case 'MobileProvider':
             // Gets the value for the MobileProvider object referenced by intMobileProviderId
             // @return MobileProvider
             try {
                 if (!$this->objMobileProvider && !is_null($this->intMobileProviderId)) {
                     $this->objMobileProvider = MobileProvider::Load($this->intMobileProviderId);
                 }
                 return $this->objMobileProvider;
             } 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 '_AddressAsPrimary':
             // Gets the value for the private _objAddressAsPrimary (Read-Only)
             // if set due to an expansion on the address.primary_phone_id reverse relationship
             // @return Address
             return $this->_objAddressAsPrimary;
         case '_AddressAsPrimaryArray':
             // Gets the value for the private _objAddressAsPrimaryArray (Read-Only)
             // if set due to an ExpandAsArray on the address.primary_phone_id reverse relationship
             // @return Address[]
             return (array) $this->_objAddressAsPrimaryArray;
         case '_FormAnswer':
             // Gets the value for the private _objFormAnswer (Read-Only)
             // if set due to an expansion on the form_answer.phone_id reverse relationship
             // @return FormAnswer
             return $this->_objFormAnswer;
         case '_FormAnswerArray':
             // Gets the value for the private _objFormAnswerArray (Read-Only)
             // if set due to an ExpandAsArray on the form_answer.phone_id reverse relationship
             // @return FormAnswer[]
             return (array) $this->_objFormAnswerArray;
         case '_PersonAsPrimary':
             // Gets the value for the private _objPersonAsPrimary (Read-Only)
             // if set due to an expansion on the person.primary_phone_id reverse relationship
             // @return Person
             return $this->_objPersonAsPrimary;
         case '_PersonAsPrimaryArray':
             // Gets the value for the private _objPersonAsPrimaryArray (Read-Only)
             // if set due to an ExpandAsArray on the person.primary_phone_id reverse relationship
             // @return Person[]
             return (array) $this->_objPersonAsPrimaryArray;
         case '__Restored':
             return $this->__blnRestored;
         default:
             try {
                 return parent::__get($strName);
             } catch (QCallerException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
     }
 }
Ejemplo n.º 3
0
 /**
  * Reload this MobileProvider 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 MobileProvider object.');
     }
     // Reload the Object
     $objReloaded = MobileProvider::Load($this->intId);
     // Update $this's local variables to match
     $this->strName = $objReloaded->strName;
     $this->strDomain = $objReloaded->strDomain;
 }