本文整理汇总了PHP中Address::GetSoapObjectFromObject方法的典型用法代码示例。如果您正苦于以下问题:PHP Address::GetSoapObjectFromObject方法的具体用法?PHP Address::GetSoapObjectFromObject怎么用?PHP Address::GetSoapObjectFromObject使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Address
的用法示例。
在下文中一共展示了Address::GetSoapObjectFromObject方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: GetSoapObjectFromObject
public static function GetSoapObjectFromObject($objObject, $blnBindRelatedObjects)
{
if ($objObject->objSignupEntry) {
$objObject->objSignupEntry = SignupEntry::GetSoapObjectFromObject($objObject->objSignupEntry, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intSignupEntryId = null;
}
}
if ($objObject->objFormQuestion) {
$objObject->objFormQuestion = FormQuestion::GetSoapObjectFromObject($objObject->objFormQuestion, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intFormQuestionId = null;
}
}
if ($objObject->objAddress) {
$objObject->objAddress = Address::GetSoapObjectFromObject($objObject->objAddress, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intAddressId = null;
}
}
if ($objObject->objPhone) {
$objObject->objPhone = Phone::GetSoapObjectFromObject($objObject->objPhone, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intPhoneId = null;
}
}
if ($objObject->objEmail) {
$objObject->objEmail = Email::GetSoapObjectFromObject($objObject->objEmail, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intEmailId = null;
}
}
if ($objObject->dttDateValue) {
$objObject->dttDateValue = $objObject->dttDateValue->__toString(QDateTime::FormatSoap);
}
return $objObject;
}
示例2: GetSoapObjectFromObject
public static function GetSoapObjectFromObject($objObject, $blnBindRelatedObjects)
{
if ($objObject->objTransaction) {
$objObject->objTransaction = Transaction::GetSoapObjectFromObject($objObject->objTransaction, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intTransactionId = null;
}
}
if ($objObject->objFromCompany) {
$objObject->objFromCompany = Company::GetSoapObjectFromObject($objObject->objFromCompany, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intFromCompanyId = null;
}
}
if ($objObject->objFromContact) {
$objObject->objFromContact = Contact::GetSoapObjectFromObject($objObject->objFromContact, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intFromContactId = null;
}
}
if ($objObject->objFromAddress) {
$objObject->objFromAddress = Address::GetSoapObjectFromObject($objObject->objFromAddress, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intFromAddressId = null;
}
}
if ($objObject->objToCompany) {
$objObject->objToCompany = Company::GetSoapObjectFromObject($objObject->objToCompany, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intToCompanyId = null;
}
}
if ($objObject->objToContact) {
$objObject->objToContact = Contact::GetSoapObjectFromObject($objObject->objToContact, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intToContactId = null;
}
}
if ($objObject->objToAddress) {
$objObject->objToAddress = Address::GetSoapObjectFromObject($objObject->objToAddress, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intToAddressId = null;
}
}
if ($objObject->objCourier) {
$objObject->objCourier = Courier::GetSoapObjectFromObject($objObject->objCourier, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intCourierId = null;
}
}
if ($objObject->dttShipDate) {
$objObject->dttShipDate = $objObject->dttShipDate->__toString(QDateTime::FormatSoap);
}
if ($objObject->objCreatedByObject) {
$objObject->objCreatedByObject = UserAccount::GetSoapObjectFromObject($objObject->objCreatedByObject, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intCreatedBy = null;
}
}
if ($objObject->dttCreationDate) {
$objObject->dttCreationDate = $objObject->dttCreationDate->__toString(QDateTime::FormatSoap);
}
if ($objObject->objModifiedByObject) {
$objObject->objModifiedByObject = UserAccount::GetSoapObjectFromObject($objObject->objModifiedByObject, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intModifiedBy = null;
}
}
return $objObject;
}
示例3: GetSoapObjectFromObject
public static function GetSoapObjectFromObject($objObject, $blnBindRelatedObjects)
{
if ($objObject->objAddress) {
$objObject->objAddress = Address::GetSoapObjectFromObject($objObject->objAddress, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intAddressId = null;
}
}
if ($objObject->objCreatedByObject) {
$objObject->objCreatedByObject = UserAccount::GetSoapObjectFromObject($objObject->objCreatedByObject, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intCreatedBy = null;
}
}
if ($objObject->dttCreationDate) {
$objObject->dttCreationDate = $objObject->dttCreationDate->__toString(QDateTime::FormatSoap);
}
if ($objObject->objModifiedByObject) {
$objObject->objModifiedByObject = UserAccount::GetSoapObjectFromObject($objObject->objModifiedByObject, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intModifiedBy = null;
}
}
return $objObject;
}
示例4: GetSoapArrayFromArray
public static function GetSoapArrayFromArray($objArray)
{
if (!$objArray) {
return null;
}
$objArrayToReturn = array();
foreach ($objArray as $objObject) {
array_push($objArrayToReturn, Address::GetSoapObjectFromObject($objObject, true));
}
return unserialize(serialize($objArrayToReturn));
}
示例5: GetSoapObjectFromObject
public static function GetSoapObjectFromObject($objObject, $blnBindRelatedObjects)
{
if ($objObject->dttDateOfBirth) {
$objObject->dttDateOfBirth = $objObject->dttDateOfBirth->__toString(QDateTime::FormatSoap);
}
if ($objObject->dttDateDeceased) {
$objObject->dttDateDeceased = $objObject->dttDateDeceased->__toString(QDateTime::FormatSoap);
}
if ($objObject->objCurrentHeadShot) {
$objObject->objCurrentHeadShot = HeadShot::GetSoapObjectFromObject($objObject->objCurrentHeadShot, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intCurrentHeadShotId = null;
}
}
if ($objObject->objMailingAddress) {
$objObject->objMailingAddress = Address::GetSoapObjectFromObject($objObject->objMailingAddress, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intMailingAddressId = null;
}
}
if ($objObject->objStewardshipAddress) {
$objObject->objStewardshipAddress = Address::GetSoapObjectFromObject($objObject->objStewardshipAddress, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intStewardshipAddressId = null;
}
}
if ($objObject->objPrimaryPhone) {
$objObject->objPrimaryPhone = Phone::GetSoapObjectFromObject($objObject->objPrimaryPhone, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intPrimaryPhoneId = null;
}
}
if ($objObject->objPrimaryEmail) {
$objObject->objPrimaryEmail = Email::GetSoapObjectFromObject($objObject->objPrimaryEmail, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intPrimaryEmailId = null;
}
}
if ($objObject->objCoPrimaryObject) {
$objObject->objCoPrimaryObject = Person::GetSoapObjectFromObject($objObject->objCoPrimaryObject, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intCoPrimary = null;
}
}
return $objObject;
}
示例6: GetSoapObjectFromObject
public static function GetSoapObjectFromObject($objObject, $blnBindRelatedObjects)
{
if ($objObject->objAddress) {
$objObject->objAddress = Address::GetSoapObjectFromObject($objObject->objAddress, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intAddressId = null;
}
}
if ($objObject->objPerson) {
$objObject->objPerson = Person::GetSoapObjectFromObject($objObject->objPerson, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intPersonId = null;
}
}
if ($objObject->objMobileProvider) {
$objObject->objMobileProvider = MobileProvider::GetSoapObjectFromObject($objObject->objMobileProvider, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intMobileProviderId = null;
}
}
return $objObject;
}
示例7: GetSoapObjectFromObject
public static function GetSoapObjectFromObject($objObject, $blnBindRelatedObjects)
{
if ($objObject->objAddress) {
$objObject->objAddress = Address::GetSoapObjectFromObject($objObject->objAddress, false);
} else {
if (!$blnBindRelatedObjects) {
$objObject->intAddressId = null;
}
}
return $objObject;
}