本文整理匯總了PHP中SugarEmailAddress::getPrimaryAddress方法的典型用法代碼示例。如果您正苦於以下問題:PHP SugarEmailAddress::getPrimaryAddress方法的具體用法?PHP SugarEmailAddress::getPrimaryAddress怎麽用?PHP SugarEmailAddress::getPrimaryAddress使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類SugarEmailAddress
的用法示例。
在下文中一共展示了SugarEmailAddress::getPrimaryAddress方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: get_list_view_data
/**
* @see parent::get_list_view_data()
*/
public function get_list_view_data()
{
global $system_config, $current_user;
$temp_array = $this->get_list_view_array();
$temp_array['EMAIL1'] = $this->emailAddress->getPrimaryAddress($this);
$this->email1 = $temp_array['EMAIL1'];
$temp_array['EMAIL1_LINK'] = $current_user->getEmailLink('email1', $this, '', '', 'ListView');
return $temp_array;
}
示例2: get_list_view_data
/**
* @see parent::get_list_view_data()
*
* @return array
*/
public function get_list_view_data()
{
global $system_config, $current_user;
$this->_create_proper_name_field();
$temp_array = $this->get_list_view_array();
$temp_array['NAME'] = $this->name;
$temp_array["ENCODED_NAME"] = $this->full_name;
$temp_array["FULL_NAME"] = $this->full_name;
$temp_array['EMAIL1'] = $this->emailAddress->getPrimaryAddress($this);
$this->email1 = $temp_array['EMAIL1'];
$temp_array['EMAIL1_LINK'] = $current_user->getEmailLink('email1', $this, '', '', 'ListView');
return $temp_array;
}
示例3: array
function fill_in_additional_detail_fields()
{
parent::fill_in_additional_detail_fields();
//TODO: Seems odd we need to clear out these values so that list views don't show the previous rows value if current value is blank
$this->getRelatedFields('Contacts', $this->contact_id, array('name' => 'contact_name', 'phone_work' => 'contact_phone'));
if (!empty($this->contact_name)) {
$emailAddress = new SugarEmailAddress();
$this->contact_email = $emailAddress->getPrimaryAddress(false, $this->contact_id, 'Contacts');
}
if (isset($this->contact_id) && $this->contact_id != '') {
$contact = new Contact();
$contact->retrieve($this->contact_id);
if (isset($contact->id)) {
$this->contact_name = $contact->full_name;
}
}
}