當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CRM_Admin_Form_Setting::__construct方法代碼示例

本文整理匯總了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')));
 }
開發者ID:scardinius,項目名稱:org.project60.sepa,代碼行數:6,代碼來源:SepaSettings.php

示例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)));
 }
開發者ID:FundingWorks,項目名稱:org.project60.sepa,代碼行數:6,代碼來源:SepaSettings.php


注:本文中的CRM_Admin_Form_Setting::__construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。