Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ActionInterface.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Framework\App;
7 
14 interface ActionInterface
15 {
16  const FLAG_NO_DISPATCH = 'no-dispatch';
17 
18  const FLAG_NO_POST_DISPATCH = 'no-postDispatch';
19 
20  const FLAG_NO_DISPATCH_BLOCK_EVENT = 'no-beforeGenerateLayoutBlocksDispatch';
21 
22  const PARAM_NAME_BASE64_URL = 'r64';
23 
24  const PARAM_NAME_URL_ENCODED = 'uenc';
25 
34  public function execute();
35 }