Xpressengine\Editor\EditorHandler::compile PHP Méthode

compile() public méthode

Compile the raw content to be useful
public compile ( string $instanceId, string $content, boolean $htmlable = false ) : string
$instanceId string instance id
$content string content
$htmlable boolean content is htmlable
Résultat string
    public function compile($instanceId, $content, $htmlable = false)
    {
        $editor = $this->get($instanceId);
        return $this->compileTools($instanceId, $editor->compile($content, $htmlable));
    }