Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save webbash/4bcf01d9c9f8d85ee2533d1d2d082bb6 to your computer and use it in GitHub Desktop.
Save webbash/4bcf01d9c9f8d85ee2533d1d2d082bb6 to your computer and use it in GitHub Desktop.
// Изменяем функцию сохранения контента в файл
public function onSave()
{
if (!$this->checkEditor())
return;
$fileName = post('file');
// Format <p> delete
// Вторым параметро указываем те теги, которые разрешаем к допуску
$formattedContent = strip_tags(post("content"), '<a></a>');
$template = Content::load($this->getTheme(), $fileName);
$template->fill(['markup' => $formattedContent]);
$template->save();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment