-
Notifications
You must be signed in to change notification settings - Fork 3
/
MarkdownForms.php
205 lines (167 loc) · 5.65 KB
/
MarkdownForms.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<?php
/**
* @package Markdown
* @subpackage Markdown Forms
* @version 1.0
* @author Ruben Verweij <development@rubenverweij.nl>
* @link https://github.com/rbnvrw/markdown-forms
* @license http://opensource.org/licenses/MIT
*
*/
namespace RubenVerweij;
class MarkdownForms extends \Michelf\MarkdownExtra {
private $sInputGroupTemplate = '
<div class="form-group">
{md_label}
<input {md_type} {md_name_and_id} {md_value} {md_placeholder} {md_attribs}>
</div>
';
private $sCheckboxGroupTemplate = '
<div class="{md_type}">
<label>
<input {md_type} {md_name_and_id} {md_value} {md_attribs}>
{md_label}
</label>
</div>
';
private $sTextareaGroupTemplate = '
<div class="form-group">
{md_label}
<textarea {md_name_and_id} {md_placeholder} {md_attribs} {md_rows} {md_cols}>{md_value}</textarea>
</div>
';
public function __construct($sInputGroupTemplate = '', $sCheckboxGroupTemplate = '', $sTextareaGroupTemplate = '') {
#
# Constructor function. Initialize the parser object.
#
# Insert extra document, block, and span transformations.
# Parent constructor will do the sorting.
$this->span_gamut += array(
"doInputs" => 70
);
# Set form to span element to prevent extra <p> tags
$this->contain_span_tags_re .= '|form';
if(!empty($sInputGroupTemplate)){
$this->sInputGroupTemplate = $sInputGroupTemplate;
}
if(!empty($sCheckboxGroupTemplate)){
$this->sCheckboxGroupTemplate = $sCheckboxGroupTemplate;
}
if(!empty($sTextareaGroupTemplate)){
$this->sTextareaGroupTemplate = $sTextareaGroupTemplate;
}
parent::__construct();
}
protected function doInputs($text) {
#
# Turn Markdown input shortcuts into <input> tags.
#
#
# First, handle inline inputs: ?{type}("label" "value" "placeholder" rows*cols){.class}
# Don't forget: encode * and _
#
/*
\?\{
\s*(\w+)\s* # $1 = type
\}
\(\s*(([\'\"])(.*?)\3)? # $4 = label
\s*(([\'\"])(.*?)\6)? # $7 = value
\s*(([\'\"])(.*?)\9)? # $10 = placeholder
\s*((\d+)\*(\d+))? # $12 = rows, $13 = cols
\s*\)
(\{(.*?)\})? # $15 = extra attributes
*/
$text = preg_replace_callback('
/
\?\{
\s*(\w+)\s*
\}
\(\s*(([\'\"])(.*?)\3)?
\s*(([\'\"])(.*?)\6)?
\s*(([\'\"])(.*?)\9)?
\s*((\d+)\*(\d+))?
\s*\)
(\{(.*?)\})?
/xs', array($this, '_doInputs_callback'), $text);
return $text;
}
protected function _doInputs_callback($matches) {
$whole_match = $matches[0];
// Convert label, name, id, placeholder to tags
$label = $this->encodeAttribute(trim($matches[4]));
$name_id = $this->sanitize_key($label);
$name_and_id = $this->returnAttributeString('name', $name_id) . ' '
. $this->returnAttributeString('id', $name_id);
$placeholder = $this->returnAttributeString('placeholder', $this->encodeAttribute(trim($matches[10])));
// Get type and value
$value = $this->encodeAttribute(trim($matches[7]));
$type = $this->encodeAttribute(trim($matches[1]));
if($type == "textarea"){
// Textarea
$attr = $this->doExtraAttributes("textarea", $dummy =& $matches[15]);
$rows = $this->returnAttributeString('rows', $this->encodeAttribute(trim($matches[12])));
$cols = $this->returnAttributeString('cols', $this->encodeAttribute(trim($matches[13])));
$label = (!empty($label) && !empty($name_id)) ? '<label for="'.$name_id.'">'.$label.'</label>' : '';
$result = $this->sTextareaGroupTemplate;
$result = str_replace('{md_rows}', $rows, $result);
$result = str_replace('{md_cols}', $cols, $result);
}elseif($type == "checkbox" || $type == "radio"){
// Generic input
$value = $this->returnAttributeString('value', $value);
$attr = $this->doExtraAttributes("input", $dummy =& $matches[15]);
$type = $this->returnAttributeString('type', $type);
$result = $this->sCheckboxGroupTemplate;
$result = str_replace('{md_type}', $type, $result);
}else{
// Generic input
$value = $this->returnAttributeString('value', $value);
$attr = $this->doExtraAttributes("input", $dummy =& $matches[15]);
$type = $this->returnAttributeString('type', $type);
$label = (!empty($label) && !empty($name_id)) ? '<label for="'.$name_id.'">'.$label.'</label>' : '';
$result = $this->sInputGroupTemplate;
$result = str_replace('{md_type}', $type, $result);
}
$result = str_replace('{md_value}', $value, $result);
$result = str_replace('{md_name_and_id}', $name_and_id, $result);
$result = str_replace('{md_label}', $label, $result);
$result = str_replace('{md_placeholder}', $placeholder, $result);
$result = str_replace('{md_attribs}', $attr, $result);
return $this->hashPart($result);
}
protected function doSelects($text) {
#
# Turn Markdown input shortcuts into <select> tags.
#
#
# Select: ?("label" {"option1" = "One", "option2" > "Two", "option3" = "Three"}){.class}
# Don't forget: encode * and _
#
/*
\?\(\s*([\'\"])(.*?)\1\s*\{([\s|\S]+)\}\s*\)(\{(.*?)\})?
*/
$text = preg_replace_callback('
/
\?\(\s*([\'\"])(.*?)\1\s*\{([\s|\S]+)\}\s*\)(\{(.*?)\})?
/xs', array($this, '_doSelects_callback'), $text);
return $text;
}
protected function _doSelects_callback($matches){
}
/**
* Sanitizes a string key.
*
* Lowercase alphanumeric characters, dashes and underscores are allowed.
*
* @param string $key String key
* @return string Sanitized key
*/
function sanitize_key( $key ) {
$raw_key = $key;
$key = strtolower( $key );
$key = preg_replace( '/[^a-z0-9_\-]/', '', $key );
return $key;
}
function returnAttributeString($attrib, $value){
return ((!empty($value)) ? $attrib.'="'.$value.'"' : '');
}
}