Lines Matching refs:fields
186 * $fields['pre'] has all data before the selection when the "Insert table" button was clicked
187 * $fields['text'] has all data inside the selection when the "Insert table" button was clicked
188 * $fields['suf'] has all data after the selection when the "Insert table" button was clicked
191 $fields = $INPUT->post->arr('editfigure__new');
193 // clean the fields (undos formText()) and update the post and request arrays
194 $fields['pre'] = cleanText($fields['pre']);
195 $fields['text'] = cleanText($fields['text']);
196 $fields['suf'] = cleanText($fields['suf']);
197 $INPUT->post->set('editfigure__new', $fields);
210 $lines = explode("\n", $fields['text']);
226 $TEXT = $fields['pre'].$fields['text'].$fields['suf'];
233 $TEXT = $fields['pre']."<skcanvas>\n".$TEXT."</skcanvas>".$fields['suf'];