本文整理汇总了PHP中CRM_Core_SelectValues::participantTokens方法的典型用法代码示例。如果您正苦于以下问题:PHP CRM_Core_SelectValues::participantTokens方法的具体用法?PHP CRM_Core_SelectValues::participantTokens怎么用?PHP CRM_Core_SelectValues::participantTokens使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CRM_Core_SelectValues
的用法示例。
在下文中一共展示了CRM_Core_SelectValues::participantTokens方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: buildQuickForm
/**
* Function to build the form
*
* @return void
* @access public
*/
public function buildQuickForm()
{
if ($this->_action & CRM_Core_Action::DELETE) {
$this->addButtons(array(array('type' => 'next', 'name' => ts('Delete'), 'isDefault' => TRUE), array('type' => 'cancel', 'name' => ts('Cancel'))));
return;
}
$config = CRM_Core_Config::singleton();
$resources = CRM_Core_Resources::singleton();
$resources->addSetting(array('kcfinderPath' => $config->userFrameworkResourceURL . 'packages' . DIRECTORY_SEPARATOR));
$resources->addScriptFile('civicrm', 'templates/CRM/Badge/Form/Layout.js');
$this->applyFilter('__ALL__', 'trim');
$this->add('text', 'title', ts('Title'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_PrintLabel', 'title'), true);
$labelStyle = CRM_Core_BAO_LabelFormat::getList(TRUE, 'name_badge');
$this->add('select', 'label_format_name', ts('Label Format'), array('' => ts('- select -')) + $labelStyle, TRUE);
$this->add('text', 'description', ts('Description'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_PrintLabel', 'title'));
// get the tokens
$contactTokens = CRM_Core_SelectValues::contactTokens();
$eventTokens = array('{event.event_id}' => ts('Event ID'), '{event.title}' => ts('Event Title'), '{event.start_date}' => ts('Event Start Date'), '{event.end_date}' => ts('Event End Date'));
$participantTokens = CRM_Core_SelectValues::participantTokens();
$tokens = array_merge($contactTokens, $eventTokens, $participantTokens);
asort($tokens);
$tokens = array_merge(array('spacer' => ts('- spacer -')) + $tokens);
$fontSizes = CRM_Core_BAO_LabelFormat::getFontSizes();
$fontStyles = CRM_Core_BAO_LabelFormat::getFontStyles();
$fontNames = CRM_Core_BAO_LabelFormat::getFontNames('name_badge');
$textAlignment = CRM_Core_BAO_LabelFormat::getTextAlignments();
$rowCount = self::FIELD_ROWCOUNT;
for ($i = 1; $i <= $rowCount; $i++) {
$this->add('select', "token[{$i}]", ts('Token'), array('' => ts('- skip -')) + $tokens);
$this->add('select', "font_name[{$i}]", ts('Font Name'), $fontNames);
$this->add('select', "font_size[{$i}]", ts('Font Size'), $fontSizes);
$this->add('select', "font_style[{$i}]", ts('Font Style'), $fontStyles);
$this->add('select', "text_alignment[{$i}]", ts('Alignment'), $textAlignment);
}
$rowCount++;
$this->assign('rowCount', $rowCount);
$barcodeTypes = CRM_Core_SelectValues::getBarcodeTypes();
$this->add('checkbox', 'add_barcode', ts('Barcode?'));
$this->add('select', "barcode_type", ts('Type'), $barcodeTypes);
$this->add('select', "barcode_alignment", ts('Alignment'), $textAlignment);
$attributes = array('readonly' => true);
$this->add('text', 'image_1', ts('Image (top left)'), $attributes + CRM_Core_DAO::getAttribute('CRM_Core_DAO_PrintLabel', 'title'));
$this->add('text', 'width_image_1', ts('Width (mm)'), array('size' => 6));
$this->add('text', 'height_image_1', ts('Height (mm)'), array('size' => 6));
$this->add('text', 'image_2', ts('Image (top right)'), $attributes + CRM_Core_DAO::getAttribute('CRM_Core_DAO_PrintLabel', 'title'));
$this->add('text', 'width_image_2', ts('Width (mm)'), array('size' => 6));
$this->add('text', 'height_image_2', ts('Height (mm)'), array('size' => 6));
$this->add('checkbox', 'is_default', ts('Default?'));
$this->add('checkbox', 'is_active', ts('Enabled?'));
$this->add('checkbox', 'is_reserved', ts('Reserved?'));
$this->addRule('width_image_1', ts('Enter valid width'), 'positiveInteger');
$this->addRule('width_image_2', ts('Enter valid width'), 'positiveInteger');
$this->addRule('height_image_1', ts('Enter valid height'), 'positiveInteger');
$this->addRule('height_image_2', ts('Enter valid height'), 'positiveInteger');
$this->addButtons(array(array('type' => 'next', 'name' => ts('Save'), 'isDefault' => TRUE), array('type' => 'refresh', 'name' => ts('Save and Preview')), array('type' => 'cancel', 'name' => ts('Cancel'))));
}