Fluent_Crm_Helpers::fluent_crm_tags( string $label = null, string $option_code = 'FCRMTAG', array $args = array() )
Contents
Parameters Parameters
- $label
-
(Optional)
Default value: null
- $option_code
-
(Optional)
Default value: 'FCRMTAG'
- $args
-
(Optional)
Default value: array()
Return Return
(mixed)
Source Source
File: src/integrations/fluent-crm/helpers/fluent-crm-helpers.php
} $type = 'select'; $option = array( 'option_code' => $option_code, 'label' => $label, 'input_type' => $type, 'supports_multiple_values' => $supports_multiple_values, 'required' => true, 'supports_tokens' => $token, 'is_ajax' => $is_ajax, 'fill_values_in' => $target_field, 'endpoint' => $end_point, 'options' => $options, ); return $option; } /** * @param string $label * @param string $option_code * @param array $args * * @return mixed */ public function fluent_crm_tags( $label = null, $option_code = 'FCRMTAG', $args = array() ) { if ( ! $this->load_options ) { return Automator()->helpers->recipe->build_default_options_array( $label, $option_code ); } if ( ! $label ) { $label = esc_attr_x( 'Tag', 'FluentCRM', 'uncanny-automator' ); } $token = key_exists( 'token', $args ) ? $args['token'] : false; $is_ajax = key_exists( 'is_ajax', $args ) ? $args['is_ajax'] : false; $target_field = key_exists( 'target_field', $args ) ? $args['target_field'] : ''; $end_point = key_exists( 'endpoint', $args ) ? $args['endpoint'] : ''; $supports_multiple_values = key_exists( 'supports_multiple_values', $args ) ? $args['supports_multiple_values'] : false; $options = array(); $options['0'] = esc_attr_x( 'Any tag', 'FluentCRM', 'uncanny-automator' ); if ( Automator()->helpers->recipe->load_helpers ) { $tags = Tag::orderBy( 'title', 'DESC' )->get(); if ( ! empty( $tags ) ) {
Expand full source code Collapse full source code View on Github