| 1 |
<?php |
| 2 |
/** |
| 3 |
* |
| 4 |
*/ |
| 5 |
|
| 6 |
/** |
| 7 |
* |
| 8 |
*/ |
| 9 |
abstract class CJTPluggableHelper |
| 10 |
{ |
| 11 |
|
| 12 |
const ACTION_CJT_TEXT_DOMAIN_LOADED = 'cjt-text-domain-loaded'; |
| 13 |
|
| 14 |
const ACTION_BLOCK_QUERY_BLOCKS = 'cjt-block-query-blocks'; |
| 15 |
|
| 16 |
const FILTER_BLOCK_ASSIGN_PANEL_TABS = 'cjt-block-assign-panel-tabs'; |
| 17 |
|
| 18 |
const FILTER_BLOCK_MODEL_CUSTOM_PINS = 'cjt-block-model-custom-pins'; |
| 19 |
const FILTER_BLOCK_MODEL_PROPERTIES_META = 'cjt-block-model-properties-meta'; |
| 20 |
const FILTER_BLOCK_MODEL_PRE_UPDATE_BLOCK = 'cjt-block-model-pre-update-block'; |
| 21 |
const FILTER_BLOCK_MODEL_PRE_UPDATE_BLOCK_PINS = 'cjt-block-model-pre-update-block-pins'; |
| 22 |
|
| 23 |
const FILTER_BLOCKS_COUPLING_MODEL_BLOCKS_QUEUE = 'cjt-blocks-coupling-model-blocks-queue'; |
| 24 |
|
| 25 |
const FILTER_LOCALIZE_SCRIPT = 'cjt-localize-script'; |
| 26 |
|
| 27 |
const ACTION_BLOCK_CUSTOM_POST_TYPES = 'cjt-block-custom-post-types'; |
| 28 |
const ACTION_BLOCK_ASSIGN_PANEL = 'cjt-block-assign-panel'; |
| 29 |
|
| 30 |
const ACTION_BLOCKS_MANAGER_TOOLBOX_LEFT_BUTTONS = 'cjt-blocks-manager-toolbox-left-buttons'; |
| 31 |
const ACTION_BLOCKS_MANAGER_TOOLBOX_ADMIN_TOOLS_TOP = 'cjt-blocks-manager-toolbox-tools-top'; |
| 32 |
const ACTION_BLOCKS_MANAGER_TOOLBOX_RIGHT_BUTTONS = 'cjt-blocks-manager-toolbox-right-buttons'; |
| 33 |
|
| 34 |
const ACTION_BLOCK_SCREEN_INFO_TOP = 'cjt-block-screen-info-top'; |
| 35 |
|
| 36 |
const ACTION_BLOCK_ASSIGN_PANEL_TAB_BOTTOM = 'cjt-block-assign-panel-tab-bottom'; |
| 37 |
|
| 38 |
const ACTION_BLOCK_BEFORE_INFO_BAR = 'cjt-block-before-info-bar'; |
| 39 |
|
| 40 |
const ACTION_BLOCK_CODE_FILE_TEMPLATE_CREATE_NEW_FILE = 'cjt-block-code-file-template-create-new-file'; |
| 41 |
|
| 42 |
const ACTION_BLOCK_TOOLBOX_TEMPLATE_INSIDE_BEFORE_FLAGS = 'cjt-toolbox-template-toolbox-inside-after-flags'; |
| 43 |
const ACTION_BLOCK_TOOLBOX_TEMPLATE_INSIDE_AFTER_FLAGS = 'cjt-toolbox-template-toolbox-inside-before-flags'; |
| 44 |
|
| 45 |
const ACTION_BLOCKS_COUPLING_INIT_ATTACHER = 'cjt-blocks-coupling-initialize-attacher'; |
| 46 |
|
| 47 |
const ACTION_BLOCK_INSIDE_TOOLBOX_TEMPLATES_MENU = 'cjt-block-inside-toolbox-templates-menu'; |
| 48 |
const ACTION_BLOCK_INFO_BAR_TOP_END = 'cjt-block-info-bar-top-end'; |
| 49 |
} |