| 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 |
} |