From ebb6b2827d0496303852f524a551592295dd0040 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sun, 13 Nov 2016 22:51:59 -0500 Subject: Replace SimpleMDE with custom Markdown editor --- app/Helper/FormHelper.php | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) (limited to 'app/Helper/FormHelper.php') diff --git a/app/Helper/FormHelper.php b/app/Helper/FormHelper.php index eca1f317..6d915526 100644 --- a/app/Helper/FormHelper.php +++ b/app/Helper/FormHelper.php @@ -181,6 +181,44 @@ class FormHelper extends Base return $html; } + /** + * Display a markdown editor + * + * @access public + * @param string $name Field name + * @param array $values Form values + * @param array $errors Form errors + * @param array $attributes + * @return string + */ + public function textEditor($name, $values = array(), array $errors = array(), array $attributes = array()) + { + if (! isset($attributes['css'])) { + $attributes['css'] = ''; + } + + $attrHtml = ''; + $attributes['css'] .= $this->errorClass($errors, $name); + + foreach ($attributes as $attribute => $value) { + $attrHtml .= sprintf(' %s="%s"', $attribute, $value); + } + + $html = sprintf( + '', + $name, + isset($values[$name]) ? $this->helper->text->e($values[$name]) : '', + t('Preview'), + t('Write'), + t('Write your text in Markdown'), + $attrHtml + ); + + $html .= $this->errorList($errors, $name); + + return $html; + } + /** * Display file field * -- cgit v1.2.3