本文整理匯總了PHP中HTML_QuickForm_element::setAttribute方法的典型用法代碼示例。如果您正苦於以下問題:PHP HTML_QuickForm_element::setAttribute方法的具體用法?PHP HTML_QuickForm_element::setAttribute怎麽用?PHP HTML_QuickForm_element::setAttribute使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類HTML_QuickForm_element
的用法示例。
在下文中一共展示了HTML_QuickForm_element::setAttribute方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: preprocessContactReference
/**
* Pre-fill contact name for a custom field of type ContactReference
*
* Todo: Migrate contact reference fields to use EntityRef
*
* @param HTML_QuickForm_element $field
*/
public static function preprocessContactReference($field)
{
$val = $field->getValue();
if ($val && is_numeric($val)) {
$list = array_keys(CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, 'contact_reference_options'), '1');
$return = array_unique(array_merge(array('sort_name'), $list));
$contact = civicrm_api('contact', 'getsingle', array('id' => $val, 'return' => $return, 'version' => 3));
if (!empty($contact['id'])) {
$view = array();
foreach ($return as $fld) {
if (!empty($contact[$fld])) {
$view[] = $contact[$fld];
}
}
$field->setAttribute('data-entity-value', json_encode(array('id' => $contact['id'], 'text' => implode(' :: ', $view))));
}
}
}