本文整理汇总了PHP中CRM_Admin_Form_Setting::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP CRM_Admin_Form_Setting::__construct方法的具体用法?PHP CRM_Admin_Form_Setting::__construct怎么用?PHP CRM_Admin_Form_Setting::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CRM_Admin_Form_Setting
的用法示例。
在下文中一共展示了CRM_Admin_Form_Setting::__construct方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
function __construct()
{
parent::__construct();
$this->config_fields = array(array('cycledays', ts('Cycle Day(s)')), array('batching.OOFF.horizon', ts('OOFF horizon')), array('batching.OOFF.notice', ts('OOFF notice days')), array('batching.RCUR.horizon', ts('RCUR horizon')), array('batching.RCUR.grace', ts('RCUR grace')), array('batching.RCUR.notice', ts('RCUR notice days')), array('batching.FRST.notice', ts('FRST notice days')), array('batching.UPDATE.lock.timeout', ts('Update lock timeout')), array('custom_txmsg', ts('Transaction Message'), array('placeholder' => CRM_Core_BAO_Setting::getItem('SEPA Direct Debit Preferences', 'custom_txmsg'))));
$this->custom_fields = array(array('custom_cycledays', ts('Cycle Day(s)')), array('custom_OOFF_horizon', ts('OOFF horizon')), array('custom_OOFF_notice', ts('OOFF notice days')), array('custom_RCUR_horizon', ts('RCUR horizon')), array('custom_RCUR_grace', ts('RCUR grace')), array('custom_RCUR_notice', ts('RCUR notice days')), array('custom_FRST_notice', ts('FRST notice days')), array('custom_update_lock_timeout', ts('Update lock timeout')));
}
示例2: array
function __construct()
{
parent::__construct();
$this->config_fields = array(array('cycledays', ts('Cycle Day(s)'), array('size' => 6)), array('batching.OOFF.horizon', ts('One-off horizon'), array('size' => 2)), array('batching.OOFF.notice', ts('One-off notice days'), array('size' => 2)), array('batching.RCUR.horizon', ts('Recurring horizon'), array('size' => 2)), array('batching.RCUR.grace', ts('Recurring grace'), array('size' => 2)), array('batching.RCUR.notice', ts('Recurring notice days (follow-up)'), array('size' => 2)), array('batching.FRST.notice', ts('Recurring notice days (initial)'), array('size' => 2)), array('batching.UPDATE.lock.timeout', ts('Update lock timeout'), array('size' => 2)), array('custom_txmsg', ts('Transaction Message'), array('size' => 60, 'placeholder' => CRM_Core_BAO_Setting::getItem('SEPA Direct Debit Preferences', 'custom_txmsg'))));
$this->custom_fields = array(array('custom_cycledays', ts('Cycle Day(s)'), array('size' => 6)), array('custom_OOFF_horizon', ts('One-off horizon'), array('size' => 2)), array('custom_OOFF_notice', ts('One-off notice days'), array('size' => 2)), array('custom_RCUR_horizon', ts('Recurring horizon'), array('size' => 2)), array('custom_RCUR_grace', ts('Recurring grace'), array('size' => 2)), array('custom_RCUR_notice', ts('Recurring notice days (follow-up)'), array('size' => 2)), array('custom_FRST_notice', ts('Recurring notice days (initial)'), array('size' => 2)), array('custom_update_lock_timeout', ts('Update lock timeout'), array('size' => 2)));
}