本文整理汇总了PHP中CRM_Batch_BAO_Batch::buildOptions方法的典型用法代码示例。如果您正苦于以下问题:PHP CRM_Batch_BAO_Batch::buildOptions方法的具体用法?PHP CRM_Batch_BAO_Batch::buildOptions怎么用?PHP CRM_Batch_BAO_Batch::buildOptions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CRM_Batch_BAO_Batch
的用法示例。
在下文中一共展示了CRM_Batch_BAO_Batch::buildOptions方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: buildQuickForm
/**
* Build the form object.
*/
public function buildQuickForm()
{
parent::buildQuickForm();
if ($this->_action & CRM_Core_Action::DELETE) {
return;
}
$this->applyFilter('__ALL__', 'trim');
$attributes = CRM_Core_DAO::getAttribute('CRM_Batch_DAO_Batch');
$this->add('text', 'title', ts('Batch Name'), $attributes['name'], TRUE);
$batchTypes = CRM_Batch_BAO_Batch::buildOptions('type_id');
$type = $this->add('select', 'type_id', ts('Type'), $batchTypes);
if ($this->_action & CRM_Core_Action::UPDATE) {
$type->freeze();
}
$this->add('textarea', 'description', ts('Description'), $attributes['description']);
$this->add('text', 'item_count', ts('Number of Items'), $attributes['item_count'], TRUE);
$this->add('text', 'total', ts('Total Amount'), $attributes['total'], TRUE);
}