PluginProbe
Repeaterly – ACF Repeater, Flexible Content & Dynamic Tags for Elementor / trunk
Repeaterly – ACF Repeater, Flexible Content & Dynamic Tags for Elementor vtrunk
2.2.1 trunk 1.0.0 1.0.1 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1.0 2.2.0
repeaterly / includes / hook.php

hook.php in Repeaterly – ACF Repeater, Flexible Content & Dynamic Tags for Elementor trunk, at includes/hook.php

20 lines 621 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Repeaterly\Includes;
4
5 if ( ! defined( 'ABSPATH' ) ) {
6 exit; // Exit if accessed directly.
7 }
8
9 class Hook {
10 //action hooks
11 const WIDGET_REGISTERED = 'repeaterly/widgets/registered';
12 const CATEGORY_REGISTERED = 'repeaterly/categories/registered';
13
14 //filter hooks
15 const DYNAMIC_TEXT_OPTIONS = 'repeaterly/dynamic/sources/text';
16 const DYNAMIC_LINK_OPTIONS = 'repeaterly/dynamic/sources/link';
17 const DYNAMIC_IMAGE_OPTIONS = 'repeaterly/dynamic/sources/image';
18 const DYNAMIC_VALUE = 'repeaterly/dynamic/value';
19 const PROMOTION_WIDGETS = 'repeaterly/widgets/promotion';
20 }