本文整理汇总了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);
}