コード例 #1
0
ファイル: email_action.php プロジェクト: swc-dng/swcsandbox
 public function __construct()
 {
     $action_ops = array('classes' => 'frm_email_icon frm_icon_font', 'active' => true, 'event' => array('create'), 'limit' => 99, 'priority' => 10, 'ajax_load' => false);
     $action_ops = apply_filters('frm_email_control_settings', $action_ops);
     parent::__construct('email', __('Email Notification', 'formidable'), $action_ops);
 }
コード例 #2
0
ファイル: post_action.php プロジェクト: swc-dng/swcsandbox
 function __construct()
 {
     $action_ops = array('classes' => 'ab-icon frm_dashicon_font dashicons-before', 'limit' => 1, 'priority' => 40, 'event' => array('create', 'update', 'import'), 'force_event' => true);
     parent::__construct('wppost', __('Create Post', 'formidable'), $action_ops);
 }
コード例 #3
0
 public function __construct()
 {
     $action_ops = FrmFormAction::default_action_opts('frm_highrise_icon');
     parent::__construct('highrise', __('Highrise', 'formidable'), $action_ops);
 }
コード例 #4
0
 /**
  * @param string $id_base
  */
 public function FrmFormAction($id_base, $name, $action_options = array(), $control_options = array())
 {
     FrmFormAction::__construct($id_base, $name, $action_options, $control_options);
 }
コード例 #5
0
 /**
  * Constructs and initializes an Formidable payment action.
  *
  * @see https://github.com/wp-premium/formidable/blob/2.0.21/classes/models/FrmFormAction.php#L58-L94
  * @see https://github.com/wp-premium/formidable-paypal/blob/3.02/models/FrmPaymentAction.php
  */
 public function __construct()
 {
     parent::__construct('pronamic_pay', __('Pronamic Pay', 'pronamic_ideal'), array('classes' => 'pronamic-pay-formidable-icon', 'active' => true, 'event' => array('create'), 'priority' => 9, 'limit' => 99));
 }