| 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 ACTION_BLOCK_CUSTOM_POST_TYPES = 'cjt-block-custom-post-types'; |
| 26 |
|
| 27 |
const ACTION_BLOCKS_MANAGER_TOOLBOX_LEFT_BUTTONS = 'cjt-blocks-manager-toolbox-left-buttons'; |
| 28 |
const ACTION_BLOCKS_MANAGER_TOOLBOX_ADMIN_TOOLS_TOP = 'cjt-blocks-manager-toolbox-tools-top'; |
| 29 |
const ACTION_BLOCKS_MANAGER_TOOLBOX_RIGHT_BUTTONS = 'cjt-blocks-manager-toolbox-right-buttons'; |
| 30 |
|
| 31 |
const ACTION_BLOCK_SCREEN_INFO_TOP = 'cjt-block-screen-info-top'; |
| 32 |
|
| 33 |
const ACTION_BLOCK_ASSIGN_PANEL_TAB_BOTTOM = 'cjt-block-assign-panel-tab-bottom'; |
| 34 |
|
| 35 |
const ACTION_BLOCK_CODE_FILE_TEMPLATE_CREATE_NEW_FILE = 'cjt-block-code-file-template-create-bew-file'; |
| 36 |
} |