As per version 3.0.9. Please note line numbers can be slightly different
Hooks
wp-content\plugins\cbcurrencyconverter\admin (3 usages found)
class-cbcurrencyconverter-admin.php (3 usages found)
698 do_action('cbcurrencyconverter_plugin_option_delete');
707 do_action('cbcurrencyconverter_plugin_reset', $option_prefix);
742 do_action('cbcurrencyconverter_transient_reset', $option_prefix);
wp-content\plugins\cbcurrencyconverter\includes (8 usages found)
cbcurrencyconverter-functions.php (1 usage found)
21 do_action('deprecated_function_run', $function, $replacement, $version);
cbcurrencyconverter-tpl-loader.php (2 usages found)
85 do_action('cbcurrencyconverter_before_template_part', $template_name, $template_path, $located, $args);
89 do_action('cbcurrencyconverter_after_template_part', $template_name, $template_path, $located, $args);
class-cbcurrencyconverter-activator.php (1 usage found)
39 do_action('cbcurrencyconverter_plugin_activate');
class-cbcurrencyconverter-deactivator.php (1 usage found)
49 do_action('cbcurrencyconverter_plugin_deactivate');
class-cbcurrencyconverter-setting.php (2 usages found)
1178 do_action('cbcurrencyconverter_setting_form_top_' . $form['id'], $form);
1181 do_action('cbcurrencyconverter_setting_form_bottom_' . $form['id'], $form);
class-cbcurrencyconverter-uninstall.php (1 usage found)
70 do_action('cbcurrencyconverter_plugin_uninstall', $option_prefix);
wp-content\plugins\cbcurrencyconverter\public (1 usage found)
class-cbcurrencyconverter-public.php (1 usage found)
72 do_action('cbcurrencyconverter_public', $this);
wp-content\plugins\cbcurrencyconverter\templates\admin (10 usages found)
settings.php (10 usages found)
22 <?php do_action('cbcurrencyconverter_wpheading_wrap_before'); ?>
25 <?php do_action('cbcurrencyconverter_wpheading_wrap_left_before'); ?>
29 <?php do_action('cbcurrencyconverter_wpheading_wrap_left_after'); ?>
32 <?php do_action('cbcurrencyconverter_wpheading_wrap_right_before'); ?>
36 <?php do_action('cbcurrencyconverter_wpheading_wrap_right_after'); ?>
39 <?php do_action('cbcurrencyconverter_wpheading_wrap_after'); ?>
46 <?php do_action('cbcurrencyconverter_settings_form_before', 'settings'); ?>
49 <?php do_action('cbcurrencyconverter_settings_form_before', 'settings'); ?>
56 <?php do_action('cbcurrencyconverter_settings_form_after', 'settings'); ?>
59 <?php do_action('cbcurrencyconverter_settings_form_after', 'settings'); ?>
Filters
wp-content\plugins\cbcurrencyconverter\admin (2 usages found)
class-cbcurrencyconverter-admin.php (2 usages found)
240 wp_localize_script('cbcurrencyconverter-setting', 'cbcurrencyconverter_setting', apply_filters('cbcurrencyconverter_setting_vars', $translation_array));
676 return apply_filters('cbcurrencyconverter_fields', $fields);
wp-content\plugins\cbcurrencyconverter\includes (18 usages found)
cbcurrencyconverter-tpl-loader.php (3 usages found)
14 return apply_filters('cbcurrencyconverter_template_path', 'cbcurrencyconverter/');
56 return apply_filters('cbcurrencyconverter_locate_template', $template, $template_name, $template_path);
83 $located = apply_filters('cbcurrencyconverter_get_template', $located, $template_name, $args, $template_path, $default_path);
class-cbcurrencyconverter-helper.php (15 usages found)
46 return apply_filters('cbcurrencyconverter_rates_apis', $rates_api);
62 return apply_filters('cbcurrencyconverter_rates_api_titles', $rates_api_titles);
98 $conversion_value = apply_filters('cbcurrencyconverter_rate_final', $conversion_value, $price, $convertfrom, $convertto, $decimal_point);
123 $conversion_value = apply_filters('cbcurrencyconverter_rate_final', $conversion_value, $price, $convertfrom, $convertto, $decimal_point);
190 return apply_filters('cbcurrencyconverter_layout', $layout);
209 return apply_filters('cbcurrencyconverter_layout_r', $layout_r);
227 return apply_filters('cbcurrencyconverter_transient_names', $transient_caches);
467 $currency_list = apply_filters('cbcurrencyconverter_currency_list', $currency_list);
657 $currency_list = apply_filters('cbcurrencyconverter_currency_symbols', $currency_list);
694 return apply_filters('cbcurrencyconverter_currency_list_to', $currency_list_to);
711 return apply_filters('cbcurrencyconverter_currency_list_r', $CurrencyList_r);
724 return apply_filters('cbcurrencyconverter_option_names', $option_names);
738 $attr = apply_filters('cbcurrencyconverter_shortcode_builder_attr', $attr);
1094 return apply_filters('cbcurrencyconverter_allowed_html_tags', $allowed_html_tags);
1142 return apply_filters('cbcurrencyconverter_sections', $sections);
wp-content\plugins\cbcurrencyconverter\includes\rates_api (8 usages found)
class-cbcurrencyconverter-alphavantage.php (2 usages found)
46 $conversion_value = apply_filters('cbcurrencyconverter_rate_final', $conversion_value, $price, $convert_from, $convert_to, $decimal_point);
71 $conversion_value = apply_filters('cbcurrencyconverter_rate_final', $conversion_value, $price, $convert_from, $convert_to, $decimal_point, 'alphavantage');
class-cbcurrencyconverter-currencylayerfree.php (2 usages found)
45 $conversion_value = apply_filters('cbcurrencyconverter_rate_final', $conversion_value, $price, $convert_from, $convert_to, $decimal_point);
71 $conversion_value = apply_filters('cbcurrencyconverter_rate_final', $conversion_value, $price, $convert_from, $convert_to, $decimal_point, 'currencylayer_free');
class-cbcurrencyconverter-exchangeratehost.php (2 usages found)
45 $conversion_value = apply_filters('cbcurrencyconverter_rate_final', $conversion_value, $price, $convert_from, $convert_to, $decimal_point);
70 $conversion_value = apply_filters('cbcurrencyconverter_rate_final', $conversion_value, $price, $convert_from, $convert_to, $decimal_point, 'alphavantage');
class-cbcurrencyconverter-openexchangeratesfree.php (2 usages found)
46 $conversion_value = apply_filters('cbcurrencyconverter_rate_final', $conversion_value, $price, $convert_from, $convert_to, $decimal_point);
72 $conversion_value = apply_filters('cbcurrencyconverter_rate_final', $conversion_value, $price, $convert_from, $convert_to, $decimal_point, 'openexchangerates_free');
wp-content\plugins\cbcurrencyconverter\widgets\gutenberg (2 usages found)
class-cbcurrencyconverter-gutenbergwidget.php (2 usages found)
155 $js_vars = apply_filters('cbcurrencyconverter_block_js_vars',
194 'attributes' => apply_filters('cbcurrencyconverter_block_attributes',
wp-content\plugins\cbcurrencyconverter\widgets\vc-element (1 usage found)
class-cbcurrencyconverter-wpbwidget.php (1 usage found)
33 "params" => apply_filters('cbcurrencyconverter_wpbakery_params', [