PluginProbe
Smart Forms – when you need more than just a contact form / 0.8
Smart Forms – when you need more than just a contact form v0.8
trunk 0.5 0.5.5 0.6 0.7 0.8 0.8.5 0.9.1
smart-forms / string_renderer / rednao_text_input_renderer.php

rednao_text_input_renderer.php in Smart Forms – when you need more than just a contact form 0.8, at string_renderer/rednao_text_input_renderer.php

16 lines 284 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Created by PhpStorm.
4 * User: edseventeen
5 * Date: 11/28/13
6 * Time: 8:52 PM
7 */
8
9 class rednao_text_input_renderer extends rednao_base_elements_renderer {
10
11
12 public function GetString($formElement,$entry)
13 {
14 return htmlspecialchars($entry["value"]);
15 }
16 }