phpMv -UI toolkit 2.4.12
jQuery, jQuery UI, Twitter Bootstrap and Semantic-UI library for php & php MVC Frameworks
Loading...
Searching...
No Matches
DefaultConfig.php
Go to the documentation of this file.
1<?php
2
3namespace Ajax\config;
4
6
7class DefaultConfig extends Config {
8
9 public function __construct() {
10 parent::__construct(array (
11 "formElementsPrefix" => array (
12 "txt" => "input_text",
13 "btn" => "button",
14 "ck" => "checkbox",
15 "cmb" => "select_1",
16 "list" => "select_5",
17 "_" => "input_hidden",
18 "f" => "input_file",
19 "radio" => "radio",
20 "mail" => "input_email"
21 )
22 ));
23 }
24}