本文整理匯總了PHP中SugarTestContactUtilities::setCreatedContact方法的典型用法代碼示例。如果您正苦於以下問題:PHP SugarTestContactUtilities::setCreatedContact方法的具體用法?PHP SugarTestContactUtilities::setCreatedContact怎麽用?PHP SugarTestContactUtilities::setCreatedContact使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類SugarTestContactUtilities
的用法示例。
在下文中一共展示了SugarTestContactUtilities::setCreatedContact方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: _setEntryForContact
public function _setEntryForContact()
{
global $timedate;
$current_date = $timedate->nowDb();
$time = mt_rand();
$first_name = 'SugarContactFirst' . $time;
$last_name = 'SugarContactLast';
$email1 = 'contact@sugar.com';
$result = $this->_soapClient->call('set_entry', array('session' => $this->_sessionId, 'module_name' => 'Contacts', 'name_value_list' => array(array('name' => 'last_name', 'value' => "{$last_name}"), array('name' => 'first_name', 'value' => "{$first_name}"), array('name' => 'do_not_call', 'value' => "1"), array('name' => 'birthdate', 'value' => "{$current_date}"), array('name' => 'lead_source', 'value' => "Cold Call"), array('name' => 'email1', 'value' => "{$email1}"))));
SugarTestContactUtilities::setCreatedContact(array($result['id']));
return $result;
}