Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ParserInterface.php
Go to the documentation of this file.
1 <?php
7 
14 interface ParserInterface
15 {
19  const REGEXP_TOKEN = '\{\{\{(.*?)\}\}\{\{(.*?)\}\}\{\{(.*?)\}\}\{\{(.*?)\}\}\}';
20 
27  public function processAjaxPost(array $translateParams);
28 
35  public function processResponseBodyString($body);
36 
42  public function getContent();
43 
50  public function setContent($content);
51 
58  public function setIsJson($flag);
59 }