本文整理匯總了PHP中CRM_Core_Form::addProfileSelector方法的典型用法代碼示例。如果您正苦於以下問題:PHP CRM_Core_Form::addProfileSelector方法的具體用法?PHP CRM_Core_Form::addProfileSelector怎麽用?PHP CRM_Core_Form::addProfileSelector使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CRM_Core_Form
的用法示例。
在下文中一共展示了CRM_Core_Form::addProfileSelector方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: buildRegistrationBlock
/**
* Build Registration Block.
*
* @param CRM_Core_Form $form
*
*/
public function buildRegistrationBlock(&$form)
{
$attributes = CRM_Core_DAO::getAttribute('CRM_Event_DAO_Event', 'intro_text') + array('class' => 'collapsed');
$form->add('wysiwyg', 'intro_text', ts('Introductory Text'), $attributes);
$form->add('wysiwyg', 'footer_text', ts('Footer Text'), $attributes);
extract(self::getProfileSelectorTypes());
//CRM-15427
$form->addProfileSelector('custom_pre_id', ts('Include Profile') . '<br />' . ts('(top of page)'), $allowCoreTypes, $allowSubTypes, $profileEntities, TRUE);
$form->addProfileSelector('custom_post_id', ts('Include Profile') . '<br />' . ts('(bottom of page)'), $allowCoreTypes, $allowSubTypes, $profileEntities, TRUE);
$form->addProfileSelector('additional_custom_pre_id', ts('Profile for Additional Participants') . '<br />' . ts('(top of page)'), $allowCoreTypes, $allowSubTypes, $profileEntities, TRUE);
$form->addProfileSelector('additional_custom_post_id', ts('Profile for Additional Participants') . '<br />' . ts('(bottom of page)'), $allowCoreTypes, $allowSubTypes, $profileEntities, TRUE);
}
示例2: buildRegistrationBlock
/**
* Build Registration Block.
*
* @param CRM_Core_Form $form
*
*/
public function buildRegistrationBlock(&$form)
{
$attributes = CRM_Core_DAO::getAttribute('CRM_Event_DAO_Event');
$attributes['intro_text']['click_wysiwyg'] = TRUE;
$form->addWysiwyg('intro_text', ts('Introductory Text'), $attributes['intro_text']);
// FIXME: This hack forces height of editor to 175px. Need to modify QF classes for editors to allow passing
// explicit height and width.
$footerAttribs = array('rows' => 2, 'cols' => 40, 'click_wysiwyg' => TRUE);
$form->addWysiwyg('footer_text', ts('Footer Text'), $footerAttribs);
extract(self::getProfileSelectorTypes());
//CRM-15427
$form->addProfileSelector('custom_pre_id', ts('Include Profile') . '<br />' . ts('(top of page)'), $allowCoreTypes, $allowSubTypes, $profileEntities, TRUE);
$form->addProfileSelector('custom_post_id', ts('Include Profile') . '<br />' . ts('(bottom of page)'), $allowCoreTypes, $allowSubTypes, $profileEntities, TRUE);
$form->addProfileSelector('additional_custom_pre_id', ts('Profile for Additional Participants') . '<br />' . ts('(top of page)'), $allowCoreTypes, $allowSubTypes, $profileEntities, TRUE);
$form->addProfileSelector('additional_custom_post_id', ts('Profile for Additional Participants') . '<br />' . ts('(bottom of page)'), $allowCoreTypes, $allowSubTypes, $profileEntities, TRUE);
}