__toString(). * * @return string a nicely formatted string representation of this object */ public function __toString() { return sprintf('%s %s', $this->ServiceProvider, $this->ServiceType); } // Override or Create New Load/Count methods // (For obvious reasons, these methods are commented out... // but feel free to use these as a starting point) /* public static function LoadArrayBySample($strParam1, $intParam2, $objOptionalClauses = null) { // This will return an array of PaymentMethod objects return PaymentMethod::QueryArray( QQ::AndCondition( QQ::Equal(QQN::PaymentMethod()->Param1, $strParam1), QQ::GreaterThan(QQN::PaymentMethod()->Param2, $intParam2) ), $objOptionalClauses ); } public static function LoadBySample($strParam1, $intParam2, $objOptionalClauses = null) { // This will return a single PaymentMethod object return PaymentMethod::QuerySingle( QQ::AndCondition( QQ::Equal(QQN::PaymentMethod()->Param1, $strParam1), QQ::GreaterThan(QQN::PaymentMethod()->Param2, $intParam2) ), $objOptionalClauses ); } public static function CountBySample($strParam1, $intParam2, $objOptionalClauses = null) { // This will return a count of PaymentMethod objects return PaymentMethod::QueryCount( QQ::AndCondition( QQ::Equal(QQN::PaymentMethod()->Param1, $strParam1), QQ::Equal(QQN::PaymentMethod()->Param2, $intParam2) ), $objOptionalClauses ); } public static function LoadArrayBySample($strParam1, $intParam2, $objOptionalClauses) { // Performing the load manually (instead of using Qcodo Query) // Get the Database Object for this Class $objDatabase = PaymentMethod::GetDatabase(); // Properly Escape All Input Parameters using Database->SqlVariable() $strParam1 = $objDatabase->SqlVariable($strParam1); $intParam2 = $objDatabase->SqlVariable($intParam2); // Setup the SQL Query $strQuery = sprintf(' SELECT `payment_method`.* FROM `payment_method` AS `payment_method` WHERE param_1 = %s AND param_2 < %s', $strParam1, $intParam2); // Perform the Query and Instantiate the Result $objDbResult = $objDatabase->Query($strQuery); return PaymentMethod::InstantiateDbResult($objDbResult); } */ // Override or Create New Properties and Variables // For performance reasons, these variables and __set and __get override methods // are commented out. But if you wish to implement or override any // of the data generated properties, please feel free to uncomment them. /* protected $strSomeNewProperty; public function __get($strName) { switch ($strName) { case 'SomeNewProperty': return $this->strSomeNewProperty; default: try { return parent::__get($strName); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } } public function __set($strName, $mixValue) { switch ($strName) { case 'SomeNewProperty': try { return ($this->strSomeNewProperty = QType::Cast($mixValue, QType::String)); } catch (QInvalidCastException $objExc) { $objExc->IncrementOffset(); throw $objExc; } default: try { return (parent::__set($strName, $mixValue)); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } } */ } ?>