Файл: concrete5.7.5.6/concrete/src/Editor/EditorInterface.php
Строк: 41
<?php
namespace ConcreteCoreEditor;
use ConcreteCoreHttpRequest;
interface EditorInterface
{
public function outputPageInlineEditor($key, $content = null);
public function outputPageComposerEditor($key, $content);
public function outputBlockEditModeEditor($key, $content);
public function outputStandardEditor($key, $content = null);
public function setAllowSitemap($allow);
public function setAllowFileManager($allow);
public function getPluginManager();
public function saveOptionsForm(Request $request);
public function requireEditorAssets();
}