Created
October 20, 2017 17:19
-
-
Save webbash/4bcf01d9c9f8d85ee2533d1d2d082bb6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Изменяем функцию сохранения контента в файл | |
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