當前位置: 首頁>>代碼示例>>PHP>>正文


PHP SugarEmailAddress::getPrimaryAddress方法代碼示例

本文整理匯總了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;
 }
開發者ID:butschster,項目名稱:sugarcrm_dev,代碼行數:12,代碼來源:Company.php

示例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;
 }
開發者ID:butschster,項目名稱:sugarcrm_dev,代碼行數:18,代碼來源:Person.php

示例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;
         }
     }
 }
開發者ID:omusico,項目名稱:windcrm,代碼行數:17,代碼來源:Note.php


注:本文中的SugarEmailAddress::getPrimaryAddress方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。