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 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735
|
# Copyright (c) 2001-2003 Nathan Wiger <nate@sun.com>
# Please visit www.formbuilder.org for support and examples
# See "FormBuilder.pm" for actual code, this is documentation
package CGI::FormBuilder;
=head1 NAME
CGI::FormBuilder - Easily generate and process stateful forms
=head1 SYNOPSIS
use CGI::FormBuilder;
# Let's assume we did a DBI query to get existing values
my $dbval = $sth->fetchrow_hashref;
my $form = CGI::FormBuilder->new(
method => 'POST',
fields => [qw/name email phone gender/],
values => $dbval,
validate => { email => 'EMAIL', phone => 'PHONE' },
required => 'ALL',
font => 'arial,helvetica',
);
# Change gender field to have options
$form->field(name => 'gender', options => [qw/Male Female/]);
if ($form->submitted && $form->validate) {
my $fields = $form->field; # get form fields as hashref
# Do something to update your data (you would write this)
do_data_update($fields->{name}, $fields->{email},
$fields->{phone}, $fields->{gender});
# Show confirmation screen
print $form->confirm(header => 1);
# Email the person a brief confirmation
$form->mailconfirm(to => $fields->{email});
} else {
# Print out the form
print $form->render(header => 1);
}
=head1 DESCRIPTION
This documentation is very extensive, and likely all you will need.
However, there is even more online, as well as examples and tutorials,
at:
www.formbuilder.org
You should also consider joining the mailing list by sending an email to:
fbusers-subscribe@formbuilder.org
You are encouraged to visit the website, even if you are a longtime user,
as there are a number of hints and tricks that you may find useful.
=head2 Overview
I hate generating and processing forms. Hate it, hate it, hate it,
hate it. My forms almost always end up looking the same, and almost
always end up doing the same thing. Unfortunately, there really haven't
been any tools out there that streamline the process. Many modules
simply substitute Perl for HTML code:
# The manual way
print qq(<input name="email" type="text" size="20">);
# The module way
print input(-name => 'email', -type => 'text', -size => '20');
The problem is, that doesn't really gain you anything. You still
have just as much code. Modules like the venerable C<CGI.pm> are great
for processing parameters, but they don't save you much time when
trying to generate and process forms.
The goal of C<CGI::FormBuilder> (B<FormBuilder>) is to provide an easy way
for you to generate and process CGI form-based applications. This module
is designed to be smart in that it figures a lot of stuff out for you.
As a result, B<FormBuilder> gives you about a B<4:1> ratio of the code
it generates versus what you have to write.
For example, if you have multiple values for a field, it sticks them
in a radio, checkbox, or select group, depending on some factors. It
will also automatically name fields for you in human-readable labels
depending on the field names, and lay everything out in a nicely
formatted table. It will even title the form based on the name of
the script itself (C<order_form.cgi> becomes "Order Form").
Plus, B<FormBuilder> provides you full-blown validation for your
fields, including some useful builtin patterns. It will even generate
JavaScript validation routines on the fly! And, of course, it
maintains state ("stickiness") across submissions, with hooks
provided for you to plugin your own sessionid module such
as C<Apache::Session>.
And though it's smart, it allows you to customize it as well. For
example, if you really want something to be a checkbox, you can make
it a checkbox. And, if you really want something to be output a
specific way, you can even specify the name of an C<HTML::Template> or
Template Toolkit (C<Template>) compatible template which will be
automatically filled in, statefully.
=head2 Walkthrough
Let's walk through a whole example to see how B<FormBuilder> works.
The basic usage is straightforward, and has these steps:
=over
=item 1.
Create a new C<CGI::FormBuilder> object with the proper options
=item 2.
Modify any fields that may need fiddling with
=item 3.
Validate the form, if applicable, and print it out
=back
B<FormBuilder> is designed to do the tedious grunt work for you.
In fact, a whole form-based application can be output with nothing
more than this:
use CGI::FormBuilder;
my @fields = qw(name email password confirm_password zipcode);
my $form = CGI::FormBuilder->new(fields => \@fields);
print $form->render(header => 1);
Not only does this generate about 4 times as much HTML-compliant code
as the above Perl code, but it also keeps values statefully across
submissions, even when multiple values are selected. And if you
do nothing more than add the C<validate> option to C<new()>:
my $form = CGI::FormBuilder->new(
fields => \@fields,
validate => {email => 'EMAIL'}
);
You now get a whole set of JavaScript validation code, as well
as Perl hooks for validation. In total you get about B<6 times>
the amount of code generated versus written. Plus, statefulness
and validation are handled for you, automatically.
Let's keep building on this example. Say we decide that we really
like our form fields and their stickiness, but we need to change
a couple things. For one, we want the page to be laid out very
precisely. No problem! We simply create an C<HTML::Template> compatible
template and tell our module to use that. The C<HTML::Template>
module uses special HTML tags to print out variables. All you
have to do in your template is create one for each field that you're
printing, as well as one for the form header itself:
<html>
<head>
<title><tmpl_var form-title></title>
<tmpl_var js-head><!-- this holds the JavaScript code -->
</head>
<tmpl_var form-start><!-- this holds the initial form tag -->
<h3>User Information</h3>
Please fill out the following information:
<!-- each of these tmpl_var's corresponds to a field -->
<p>Your full name: <tmpl_var field-name>
<p>Your email address: <tmpl_var field-email>
<p>Choose a password: <tmpl_var field-password>
<p>Please confirm it: <tmpl_var field-confirm_password>
<p>Your home zipcode: <tmpl_var field-zipcode>
<p>
<tmpl_var form-submit><!-- this holds the form submit button -->
</form><!-- can also use "tmpl_var form-end", same thing -->
Then, all you need to do in your Perl is add the C<template> option:
my $form = CGI::FormBuilder->new(fields => \@fields,
validate => {email => 'EMAIL'},
template => 'userinfo.tmpl');
And the rest of the code stays the same.
You can also do a similar thing using the Template Toolkit
(http://template-toolkit.org/) to generate the form. This time,
specify the C<template> option as a hashref which includes the
C<type> option set to C<TT2> and the C<template> option to denote
the name of the template you want processed. You can also add
C<variable> as an option (among others) to denote the variable
name that you want the form data to be referenced by.
my $form = CGI::FormBuilder->new(
fields => \@fields,
template => {
type => 'TT2',
template => 'userinfo.tmpl',
variable => 'form',
}
);
The template might look something like this:
<html>
<head>
<title>[% form.title %]</title>
[% form.jshead %]
</head>
<body>
[% form.start %]
<table>
[% FOREACH field = form.fields %]
<tr valign="top">
<td>
[% field.required
? "<b>$field.label</b>"
: field.label
%]
</td>
<td>
[% IF field.invalid %]
Missing or invalid entry, please try again.
<br/>
[% END %]
[% field.field %]
</td>
</tr>
[% END %]
<tr>
<td colspan="2" align="center">
[% form.submit %]
</td>
</tr>
</table>
[% form.end %]
</body>
</html>
So, as you can see, there is plugin capability for B<FormBuilder>
to basically "run" the two major templating engines, B<HTML::Template>
and B<Template Toolkit>.
Now, back to B<FormBuilder>. Let's assume that we want to validate our
form on the server side, which is common since the user may not be running
JavaScript. All we have to add is the statement:
$form->validate;
Which will go through the form, checking each value specified to
the validate option to see if it's ok. If there's a problem, then
that field is highlighted so that when you print it out the errors
will be apparent.
Of course, the above returns a truth value, which we should use
to see if the form was valid. That way, we can only fiddle our
database or whatever if everything looks good. We can then use
our C<confirm()> method to print out a generic results page:
if ($form->validate) {
# form was good, let's update database ...
print $form->confirm;
} else {
print $form->render;
}
The C<validate()> method will use whatever criteria were passed
into C<new()> via the C<validate> parameter to check the form
submission to make sure it's correct.
However, we really only want to do this after our form has been
submitted, since this could otherwise result in our form showing
errors even though the user hasn't gotten a chance to fill it
out yet. As such, we can check for whether the form has been
submitted yet by wrapping the above with:
if ($form->submitted && $form->validate) {
# form was good, let's update database ...
print $form->confirm;
} else {
print $form->render;
}
Of course, this module wouldn't be really smart if it didn't provide
some more stuff for you. A lot of times, we want to send a simple
confirmation email to the user (and maybe ourselves) saying that
the form has been submitted. Just use C<mailconfirm()>:
$form->mailconfirm(to => $form->field('email'),
from => 'auto-reply');
With B<FormBuilder>, any default values you specify are automatically
overridden by whatever the user enters into the form and submits.
These can then be gotten to by using the C<field()> method:
my $email = $form->field(name => 'email');
Of course, like C<CGI.pm's param()> you can just specify the name
of the field when getting a value back:
my $email = $form->field('email');
B<FormBuilder> is good at giving you the data that you should
be getting. That is, let's say that you initially setup your
C<$form> object to use a hash of existing values from a database
select or something. Then, you C<render()> the form, the user
fills it out, and submits it. When you call C<field()>, you'll
get whatever the correct value is, either the default or what
the user entered across the CGI.
So, our complete code thus far looks like this:
use CGI::FormBuilder;
my @fields = qw(name email password confirm_password zipcode);
my $form = CGI::FormBuilder->new(
fields => \@fields,
validate => { email => 'EMAIL' },
template => 'userinfo.tmpl',
header => 1
);
if ($form->submitted && $form->validate) {
# form was ok, let's update database (you write this part)
my $fields = $form->field; # get all fields as hashref
do_data_update($fields);
# show a confirmation message
print $form->confirm;
# and send them email about their submission
$form->mailconfirm(to => $form->field('email'),
from => 'auto-reply');
} else {
# print the form for them to fill out
print $form->render;
}
You may be surprised to learn that for many applications, the
above is probably all you'll need. Just fill in the parts that
affect what you want to do (like the database code), and you're
on your way.
=head1 REFERENCES
This really doesn't belong here, but unfortunately many people are
confused by references in Perl. Don't be - they're not that tricky.
When you take a reference, you're basically turning something into
a scalar value. Sort of. You have to do this if you want to pass
arrays intact into functions in Perl 5.
A reference is taken by preceding the variable with a backslash (\).
In our examples above, you saw something similar to this:
my @fields = ('name', 'email'); # same as = qw(name email)
my $form = CGI::FormBuilder->new(fields => \@fields);
Here, C<\@fields> is a reference. Specifically, it's an array
reference, or "arrayref" for short.
Similarly, we can do the same thing with hashes:
my %validate = (
name => 'NAME';
email => 'EMAIL',
);
my $form = CGI::FormBuilder->new( ... validate => \%validate);
Here, C<\%validate> is a hash reference, or "hashref".
Basically, if you don't understand references and are having trouble
wrapping your brain around them, you can try this simple rule: Any time
you're passing an array or hash into a function, you must precede it
with a backslash. Usually that's true for CPAN modules.
Finally, there are two more types of references: anonymous arrayrefs
and anonymous hashrefs. These are created with C<[]> and C<{}>,
respectively. So, for our purposes there is no real difference between
this code:
my @fields = qw(name email);
my %validate = (name => 'NAME', email => 'EMAIL');
my $form = CGI::FormBuilder->new(
fields => \@fields,
validate => \%validate
);
And this code:
my $form = CGI::FormBuilder->new(
fields => [ qw(name email) ],
validate => { name => 'NAME', email => 'EMAIL' }
);
Except that the latter doesn't require that we first create
C<@fields> and C<%validate> variables.
Now back to our regularly-scheduled program...
=head1 FUNCTIONS
Of course, in the spirit of flexibility this module takes a bizillion
different options. None of these are mandatory - you can call the
C<new()> constructor without any fields, but your form will be really
really short. :-)
This documentation is very extensive, but can be a bit dizzying due
to the enormous number of options that let you tweak just about anything.
As such, I recommend that if this is your first time using this module,
you stop and visit:
www.formbuilder.org
And click on "Tutorials" and "Examples". Then, use the following section
as a reference later on.
=head2 new()
This is the constructor, and must be called very first. It returns
a C<$form> object, which you can then modify and print out to create
the form. This function accepts all of the options listed under C<render()>
below. In addition, it takes 6 options that can only be specified to C<new()>:
=over
=item fields => \@array | \%hash
The C<fields> option takes an arrayref of fields to use in the form.
The fields will be printed out in the same order they are specified.
This option is needed if you expect your form to have any fields,
and is I<the> central option to FormBuilder.
You can also specify a hashref of key/value pairs. The advantage is
you can then bypass the C<values> option. However, the big disadvantage
is you cannot control the order of the fields. This is ok if you're
using a template, but in real-life it turns out that passing a hashref
to C<fields> is not very useful.
=item name => $string
This option can B<only> be specified to C<new()> but not to C<render()>.
This names the form. It is optional, but if you specify it you must
do so in C<new()> since the name is then used to alter how variables
are created and looked up.
This option has an important side effect. When used, it renames several
key variables and functions according to the name of the form. This
allows you to (a) use multiple forms in a sequential application and
(b) display multiple forms inline in one document. If you're trying
to build a complex multi-form app and are having problems, try naming
your forms.
=item params => $object
This specifies an object from which the parameters should be derived.
The object must have a C<param()> method which will return values
for each parameter by name. By default a CGI object will be
automatically created and used.
However, you will want to specify this if you're using C<mod_perl>:
use Apache::Request;
use CGI::FormBuilder;
sub handler {
my $r = Apache::Request->new(shift);
my $form = CGI::FormBuilder->new(... params => $r);
# ...
print $form->render;
}
Or, if you need to initialize a C<CGI.pm> object separately and
are using a C<POST> form method:
use CGI;
use CGI::FormBuilder;
my $q = new CGI;
my $mode = $q->param('mode');
# do stuff based on mode ...
my $form = CGI::FormBuilder->new(... params => $q);
The above example would allow you to access CGI parameters
directly via C<< $q->param >> (however, note that you could
get the same functionality by using C<< $form->cgi_param >>).
=item validate => \%hash
This option takes a hashref of key/value pairs. Each key is the
name of a field from the C<fields> option, or the string C<ALL>
in which case it applies to all fields. Each value is one of
the following:
- a regular expression to match the field against
- an arrayref of values of which the field must be one
- a string that corresponds to one of the builtin patterns
- a string containing a literal code comparison to do
- a reference to a sub to be used to validate the field
(the sub will receive the value to check as the first arg)
In addition, each of these can also be grouped together as:
- a hashref containing pairings of comparisons to do for
the two different languages, "javascript" and "perl"
By default, the C<validate> option also sets up each field so that
it is required. However, if you specify the C<required> option, then
only those fields explicitly listed would be required, and the rest
would only be validated if filled in. See the C<required> option for
more details.
Let's look at a concrete example:
my $form = CGI::FormBuilder->new(
fields => [qw/username password confirm_password
first_name last_name email/],
validate => { username => [qw/nate jim bob/],
first_name => '/^\w+$/', # note the
last_name => '/^\w+$/', # single quotes!
email => 'EMAIL',
password => \&check_password,
confirm_password => {
javascript => '== form.password.value',
perl => 'eq $form->field("password")'
}
}
);
# simple sub example to check the password
sub check_password ($) {
my $v = shift; # first arg is value
return unless $v =~ /^.{6,8}/; # 6-8 chars
return if $v eq "password"; # dummy check
return unless passes_crack($v); # you write "passes_crack()"
return 1;
}
This would create both JavaScript and Perl conditionals on the fly
that would ensure:
- "username" was either "nate", "jim", or "bob"
- "first_name" and "last_name" both match the regex's specified
- "email" is a valid EMAIL format
- "password" passes the checks done by check_password(), meaning
that the sub returns true
- "confirm_password" is equal to the "password" field
B<Any regular expressions you specify must be enclosed in single quotes
because they need to be used in both JavaScript and Perl code.> As
such, specifying a C<qr//> will NOT work.
Note that for both the C<javascript> and C<perl> hashref code options,
the form will be present as the variable named C<form>. For the Perl
code, you actually get a complete C<$form> object meaning that you
have full access to all its methods (although the C<field()> method
is probably the only one you'll need for validation).
In addition to taking any regular expression you'd like, the
C<validate> option also has many builtin defaults that can
prove helpful:
VALUE - is any type of non-null value
WORD - is a word (\w+)
NAME - matches [a-zA-Z] only
FNAME - person's first name, like "Jim" or "Joe-Bob"
LNAME - person's last name, like "Smith" or "King, Jr."
NUM - number, decimal or integer
INT - integer
FLOAT - floating-point number
PHONE - phone number in form "123-456-7890" or "(123) 456-7890"
INTPHONE- international phone number in form "+prefix local-number"
EMAIL - email addr in form "name@host.domain"
CARD - credit card, including Amex, with or without -'s
DATE - date in format MM/DD/YYYY or DD/MM/YYYY
MMYY - date in format MM/YY or MMYY
MMYYYY - date in format MM/YYYY or MMYYYY
CCMM - strict checking for valid credit card 2-digit month ([0-9]|1[012])
CCYY - valid credit card 2-digit year
ZIPCODE - US postal code in format 12345 or 12345-6789
STATE - valid two-letter state in all uppercase
IPV4 - valid IPv4 address
NETMASK - valid IPv4 netmask
FILE - UNIX format filename (/usr/bin)
WINFILE - Windows format filename (C:\windows\system)
MACFILE - MacOS format filename (folder:subfolder:subfolder)
HOST - valid hostname (some-name)
DOMAIN - valid domainname (www.i-love-bacon.com)
ETHER - valid ethernet address using either : or . as separators
I know some of the above are US-centric, but then again that's where I live. :-)
So if you need different processing just create your own regular expression
and pass it in. If there's something really useful let me know and maybe
I'll add it.
=item messages => $filename | \%hash
This option allows you to customize basically all the messages
this module outputs. This is useful if you are writing a multilingual
application, or are just anal and want the messages exactly right.
The messaging system is simple, as it borrows somewhat from C<getttext()>.
Each message displayed is given a unique key. If you specify a custom
message for a given key, then that message is used. Otherwise, the
default is printed. Note that it is up to you to figure out what to
pass in - there is no magic C<LC_MESSAGES> mysterium to this module.
For example, let's say you wrote a script that needed to display custom
JavaScript error messages. You could do something like this:
# Get language requested
my $lang = $ENV{HTTP_ACCEPT_LANGUAGE} || 'en';
# Get the appropriate file
my $langfile = "/languages/formbuilder/messages.$lang";
my $form = CGI::FormBuilder->new(
fields => \@fields,
messages => $langfile,
);
print $form->render;
Then, your language file would contain the following:
# FormBuilder messages for "en" locale
js_invalid_start %s error(s) were found in your form:\n
js_invalid_end Fix these fields and try again!
js_invalid_select - You must choose an option for the "%s" field\n
Alternatively, you could specify this directly as a hashref:
my $form = CGI::FormBuilder->new(
fields => \@fields,
messages => {
js_invalid_start => '%s error(s) were found in your form:\n',
js_invalid_end => 'Fix these fields and try again!',
js_invalid_select => '- Choose an option from the "%s" list\n',
}
);
Although in practice this is rarely useful, unless you just want to
tweak one or two things.
This system is easy, are there are many many messages that can be
customized. Here is a list of the fields that can be customized,
along with their default values.
js_invalid_start %s error(s) were encountered with your submission:
js_invalid_end Please correct these fields and try again.
js_invalid_input - You must enter a valid value for the "%s" field
js_invalid_select - You must choose an option for the "%s" field
js_invalid_checkbox - You must choose an option for the "%s" field
js_invalid_radio - You must choose an option for the "%s" field
js_invalid_password - You must enter a valid value for the "%s" field
js_invalid_textarea - You must fill in the "%s" field
js_invalid_file - You must specify a valid file for the "%s" field
form_required_text <p>Fields shown in <b>bold</b> are required.
form_invalid_text <p>%s error(s) were encountered with your submission.
Please correct the fields <font color="%s">
<b>highlighted</b></font> below.
form_invalid_color red
form_confirm_text Success! Your submission has been received %s.
form_invalid_input You must enter a valid value
form_invalid_select You must choose an option from this list
form_invalid_checkbox You must choose an option from this group
form_invalid_radio You must choose an option from this group
form_invalid_password You must enter a valid value
form_invalid_textarea You must fill in this field
form_invalid_file You must specify a valid filename
form_select_default -select-
form_submit_default Submit
form_reset_default Reset
The C<js_> tags are used in JavaScript alerts, whereas the C<form_> tags
are used in HTML and templates managed by FormBuilder.
In some of the messages, you will notice a C<%s> C<printf> format. This
is because these messages will include certain details for you. For example,
the C<js_invalid_start> tag will print the number of errors if you include
the C<%s> format tag. Of course, you this is optional, so if you leave it
out then you won't get the number of errors.
The best way to get an idea of how these work is to experiment a little.
It should become obvious really quickly.
=item debug => 0 | 1 | 2
If set to 1, the module spits copious debugging info to STDERR.
If set to 2, it spits out even more gunk. Defaults to 0.
=back
=head2 render()
This function renders the form into HTML, and returns a string
containing the form. The most common use is simply:
print $form->render;
However, C<render()> accepts B<the exact same options> as C<new()>
Why? Because this allows you to set certain options at different
points in your code, which is often useful. For example, you could
change the formatting based on whether C<layout> appeared in the
query string:
my $form = CGI::FormBuilder->new(method => 'POST',
fields => [qw/name email/]);
# Get our layout from an extra CGI param
my $layout = $form->cgi_param('layout');
# If we're using a layout, then make sure to request a template
if ($layout) {
print $form->render(template => $layout);
} else {
print $form->render(header => 1);
}
The following are all the options accepted by both C<new()> and
C<render()>:
=over
=item action => $script
What script to point the form to. Defaults to itself, which is
the recommended setting.
=item body => \%hash
This takes a hashref of attributes that will be stuck in the
C<< <body> >> tag verbatim (for example, bgcolor, alink, etc).
If you're thinking about using this, also check out the
C<template> option above (and below).
=item fieldtype => 'type'
This can be used to set the default type for all fields. For example,
if you're writing a survey application, you may want all of your
fields to be of type C<textarea> by default. Easy:
my $form = CGI::FormBuilder->new(... fieldtype => 'textarea');
=item fieldattr => { opt => val, opt => val }
Even more flexible than C<fieldtype>, this option allows you to
specify I<any> type of HTML attribute and have it be the default
for all fields. For example:
my $form = CGI::FormBuilder->new(... fieldattr => { class => 'myClass' });
Would set the C<class> HTML attribute on all fields by default,
so that when they are printed out they will have a C<class="myClass">
part of their HTML tag. Maybe you want a template?
=item font => $font | \%fonttags
The font face to use for the form. This is output as a series of
C<< <font> >> tags for best browser compatibility, and will even
take care of the tedious table elements. I use this option all the
time. If you specify a hashref instead of just a font name, then
each key/value pair will be taken as part of the C<< <font> >> tag.
For example:
font => {face => 'verdana', size => '-1', color => 'gray'}
Would generate the following tag:
<font face="verdana" size="-1" color="gray">
And properly nest them in all of the table elements.
=item header => 0 | 1
If set to 1, a valid C<Content-type> header will be printed out,
along with a whole bunch of HTML C<< <body> >> code, a C<< <title> >>
tag, and so on. This defaults to 0, since usually people end up using
templates or embedding forms in other HTML. Setting it to 1 is a great
way to throw together a quick and dirty form, though.
=item javascript => 0 | 1
If set to 1, JavaScript is generated in addition to HTML, the
default setting.
=item jshead => JSCODE
If using JavaScript, you can also specify some JavaScript code
that will be included verbatim in the <head> section of the
document. I'm not very fond of this one, what you probably
want is the next option.
=item jsfunc => JSCODE
Just like C<jshead>, only this is stuff that will go into the
C<validate> JavaScript function. As such, you can use it to
add extra JavaScript validate code verbatim. If something fails,
you should do two things:
- append to the JS variable "alertstr"
- increment the JS variable "invalid"
For example:
my $jsfunc = <<EOJS;
if (form.password.value == 'password') {
alertstr += "Moron, you can't use 'password' for your password!\\n";
invalid++;
}
EOJS
my $form = CGI::FormBuilder->new(... jsfunc => $jsfunc);
Then, this code will be automatically called when form validation
is invoked. I find this option can be incredibly useful. Most often,
I use it to bypass validation on certain submit modes. The submit
button that was clicked is C<form._submit.value>:
my $jsfunc = <<EOJS;
if (form._submit.value == 'Delete') {
if (confirm("Really DELETE this entry?")) return true;
return false;
} else if (form._submit.value == 'Cancel') {
// skip validation since we're cancelling
return true;
}
EOJS
Important: When you're quoting, remember that Perl will expand "\n"
itself. So, if you want a literal newline, you must double-escape
it, as shown above.
=item keepextras => 0 | 1 | \@array
If set to 1, then extra parameters not set in your fields declaration
will be kept as hidden fields in the form. However, you will need
to use C<cgi_param()>, not C<field()>, to get to the values. This is
useful if you want to keep some extra parameters like referer or
company available but not have them be valid form fields. See below
under C</"param"> for more details.
You can also specify an arrayref, in which case only params found on
that list will be preserved. For example, saying:
->new(keepextras => 1, ...);
Will preserve all non-field parameters, whereas saying:
->new(keepextras => [qw/mode company/], ...);
Will only preserve the params C<mode> and C<company>.
=item labels => \%hash
Like C<values>, this is a list of key/value pairs where the keys
are the names of C<fields> specified above. By default, B<FormBuilder>
does some snazzy case and character conversion to create pretty labels
for you. However, if you want to explicitly name your fields, use this
option.
For example:
my $form = CGI::FormBuilder->new(
fields => [qw/name email/],
labels => {
name => 'Your Full Name',
email => 'Primary Email Address'
}
);
Usually you'll find that if you're contemplating this option what
you really want is a template.
=item lalign => 'left' | 'right' | 'center'
This is how to align the field labels in the table layout. I really
don't like this option being here, but it does turn out to be
pretty damn useful. You should probably be using a template.
=item linebreaks => 0 | 1
If set to 1, line breaks will be inserted after each input field.
By default this is figured out for you, so usually not needed.
=item method => 'POST' | 'GET'
Either C<POST> or C<GET>, the type of CGI method to use. Defaults
to C<GET> if nothing is specified.
=item options => \%hash
By using this argument, you can avoid having to specify the options
for different fields individually:
my $form = CGI::FormBuilder->new(
fields => [qw/part_number department in_stock/],
options => {
department => [qw/hardware software/],
in_stock => [qw/yes no/],
}
);
This will then create the appropriate multi-option HTML inputs (in
this case, radio groups) automatically.
=item required => \@array | 'ALL' | 'NONE'
This is a list of those values that are required to be filled in.
Those fields named must be included by the user. If the C<required>
option is not specified, by default any fields named in C<validate>
will be required.
As of v1.97, the C<required> option now takes two other settings,
the string C<ALL> and the string C<NONE>. If you specify C<ALL>,
then all fields are required. If you specify C<NONE>, then none
of them are I<in spite of what may be set via the "validate" option>.
This is useful if you have fields that you need to be validated if
filled in, but which are optional. For example:
my $form = CGI::FormBuilder->new(
fields => qw[/name email/],
validate => { email => 'EMAIL' },
required => 'NONE'
);
This would make the C<email> field optional, but if filled in then
it would have to match the C<EMAIL> pattern.
In addition, it is I<very> important to note that if the C<required>
I<and> C<validate> options are specified, then they are taken as an
intersection. That is, only those fields specified as C<required>
must be filled in, and the rest are optional. For example:
my $form = CGI::FormBuilder->new(
fields => qw[/name email/],
validate => { email => 'EMAIL' },
required => [qw/name/]
);
This would make the C<name> field mandatory, but the C<email> field
optional. However, if C<email> is filled in, then it must match the
builtin C<EMAIL> pattern.
=item reset => 0 | $string
If set to 0, then the "Reset" button is not printed. If set to
text, then that will be printed out as the reset button. Defaults
to printing out a button that says "Reset".
=item selectnum => $threshold
These affect the "intelligence" of the module. If a given field
has any options, then it will be a radio group by default. However,
if more than C<selectnum> options are present, then it will become
a select list. The default is 5 or more options. For example:
# This will be a radio group
my @opt = qw(Yes No);
$form->field(name => 'answer', options => \@opt);
# However, this will be a select list
my @states = qw(AK CA FL NY TX);
$form->field(name => 'state', options => \@states);
# This is the one special case - single items are checkboxes
$form->field(name => 'answer', options => ['Yes']);
There is no threshold for checkboxes since these are basically
a type of multiple radio select group. As such, a radio group
becomes a checkbox group if there are multiple values (not
options, but actual values) for a given field, or if you
specify C<< multiple => 1 >> to the C<field()> method. Got it?
=item smartness => 0 | 1 | 2
By default CGI::FormBuilder tries to be pretty smart for you, like
figuring out the types of fields based on their names and number
of options. If you don't want this behavior at all, set C<smartness>
to C<0>. If you want it to be B<really> smart, like figuring
out what type of validation routines to use for you, set it to
C<2>. It defaults to C<1>.
=item sortopts => alpha | numeric | NAME | NUM | 1
If specified to C<render()> or C<new()>, this has the same effect
as the same-named option to C<field()>, only it applies to all fields.
=item static => 0 | 1
If set to 1, then the form will be output with static hidden
fields. Defaults to 0.
=item sticky => 0 | 1
Determines whether or not form values should be sticky across
submissions. This does I<not> affect the value you get back from
a call to C<field()>. It also does not affect default values. It
only affects values the user may have entered via the CGI.
This defaults to 1, meaning values are sticky. However, you may
want to set it to 0 if you have a form which does something like
adding parts to a database. See the L</"EXAMPLES"> section for
a good example.
=item submit => 0 | $string | \@array
If set to 0, then the "Submit" button is not printed. It defaults
to creating a button that says "Submit" verbatim. If given an
argument, then that argument becomes the text to show. For example:
print $form->render(submit => 'Do Lookup');
Would make it so the submit button says "Do Lookup" on it.
If you pass an arrayref of multiple values, you get a key benefit.
This will create multiple submit buttons, each with a different value.
In addition, though, when submitted only the one that was clicked
will be sent across CGI via some JavaScript tricks. So this:
print $form->render(submit => ['Add A Gift', 'No Thank You']);
Would create two submit buttons. Clicking on either would submit the
form, but you would be able to see which one was submitted via the
C<submitted()> function:
my $clicked = $form->submitted;
So if the user clicked "Add A Gift" then that is what would end up
in the variable C<$clicked> above. This allows nice conditionality:
if ($form->submitted eq 'Add A Gift') {
# show the gift selection screen
} elsif ($form->submitted eq 'No Thank You')
# just process the form
}
See the L</"EXAMPLES"> section for more details.
=item table => 0 | 1 | \%tabletags
By default B<FormBuilder> decides how to layout the form based on
the number of fields, values, etc. You can force it into a table
by specifying C<1>, or force it out of one with C<0>.
If you specify a hashref instead, then these will be used to
create the C<< <table> >> tag. For example, to create a table
with no cellpadding or cellspacing, use:
table => {cellpadding => 0, cellspacing => 0}
=item template => $filename | \%hash
This points to a filename that contains an C<HTML::Template>
compatible template to use to layout the HTML. You can also specify
the C<template> option as a reference to a hash, allowing you to
further customize the template processing options.
For example, you could turn on caching in C<HTML::Template> with
something like the following:
my $form = CGI::FormBuilder->new(
fields => \@fields,
template => {
filename => 'form.tmpl',
shared_cache => 1
}
);
In addition, specifying a hashref allows you to use an alternate template
processing system like the C<Template Toolkit>. A minimal configuration
would look like this:
my $form = CGI::FormBuilder->new(
fields => \@fields,
template => {
type => 'TT2', # use Template Toolkit
template => 'form.tmpl',
},
);
The C<type> option specifies the name of the processor. Use C<TT2> to
invoke the Template Toolkit or C<HTML> (the default) to invoke
C<HTML::Template> as shown above. All other options besides C<type>
are passed to the constructor for that templating system verbatim,
so you'll need to consult those docs to see what different options do.
For lots more information on templates, see the L</"TEMPLATES"> section
below.
=item text => $text
This is text that is included below the title but above the
actual form. Useful if you want to say something simple like
"Contact $adm for more help", but if you want lots of text
check out the C<template> option above.
=item title => $title
This takes a string to use as the title of the form.
=item valign => 'top' | 'middle' | 'bottom'
Another one I don't like, this alters how form fields are laid out in
the natively-generated table. Default is "middle".
=item values => \%hash | \@array
The C<values> option takes a hashref of key/value pairs specifying
the default values for the fields. These values will be overridden
by the values entered by the user across the CGI. The values are
used case-insensitively, making it easier to use DBI hashref records
(which are in upper or lower case depending on your database).
This option is useful for selecting a record from a database or
hardwiring some sensible defaults, and then including them in the
form so that the user can change them if they wish. For example:
my $rec = $sth->fetchrow_hashref;
my $form = CGI::FormBuilder->new(fields => \@fields,
values => $rec);
You can also pass an arrayref, in which case each value is used
sequentially for each field as specified to the C<fields> option.
While C<new()> is used as an example, this can of course be
used in C<render()> as well.
=back
Note that any other options specified are passed to the C<< <form> >>
tag verbatim. For example, you could specify C<onSubmit> or C<enctype>
to add the respective attributes.
=head2 field()
This method is called on the C<$form> object you get from the C<new()>
method above, and is used to manipulate individual fields. You can use
this if you want to specify something is a certain type of input, or
has a certain set of options.
For example, let's say that you create a new form:
my $form = CGI::FormBuilder->new(fields => [qw/name state zip/]);
And that you want to make the "state" field a select list of all
the states. You would just say:
$form->field(name => 'state', type => 'select',
options => \@states);
Then, when you used C<render()> to create the form output, the "state"
field would appear as a select list with the values in C<@states>
as options.
If just given the name of the field, then the value of that field will
be returned, just like C<CGI.pm>:
my $email = $form->field('email');
Why is this not named C<param()>? Simple: Because it's not compatible.
Namely, while the return context behavior is the same, this function
is not responsible for retrieving all CGI parameters - only those
defined as valid form fields. This is important, as it allows your
script to accept only those field names you've defined for security.
To get the list of valid field names just call it without and args:
my @fields = $form->field;
And to get a hashref of field/value pairs, call it as:
my $fields = $form->field;
my $name = $fields->{name};
Note that if you call it as a hashref, you will only get one single
value per field. This is just fine as long as you don't have
multiple values per field (the normal case). However, if you have
a query string like this:
favorite_colors.cgi?color=red&color=white&color=blue
Then you will only get one value for C<color> in the hashref. In
this case you'll need to access it via C<field()> to get them all:
my @colors = $form->field('color');
The C<field()> function takes several parameters, the first of
which is mandatory. The rest are listed in alphabetical order:
Finally, you can also take advantage of a new feature and address
fields directly by name. This means instead of:
my $address = $form->field('address');
You can say:
my $address = $form->address;
This works for setting properties as well:
$form->field(name => 'user_id', size => '8', maxlength => '12');
$form->user_id(size => '8', maxlength => '12');
Both of those would do the exact same thing. You will get a fatal
error if you try to address an invalid field.
=over
=item name => $name
The name of the field to manipulate. The "name =>" part is optional
if there's only one argument. For example:
my $email = $form->field(name => 'email');
my $email = $form->field('email'); # same thing
However, if you're specifying more than one argument then you must
include the C<name> part:
$form->field(name => 'email', size => '40');
=item comment => $string
This prints out the given comment I<after> the field to fill
in, vebatim. For example, if you wanted a field to look like
this:
Joke [____________] (keep it clean, please!)
You would use the following:
$form->field(name => 'joke', comment => '(keep it clean, please!)');
The C<comment> can actually be anything you want (even another
form field). But don't tell anyone I said that.
=item force => 0 | 1
This is used in conjunction with the C<value> option to forcibly
override a field's value. See below under the C<value> option for
more details. For compatibility with C<CGI.pm>, you can also call
this option C<override> instead, but don't tell anyone.
=item jsclick => $jscode
This is a simple abstraction over directly specifying the JavaScript
action type. This turns out to be extremely useful, since if an
option list changes from C<select> to C<radio> or C<checkbox> (depending
on the number of options), then the action changes from C<onChange>
to C<onClick>. Why?!?!
So if you said:
$form->field(name => 'credit_card', jsclick => 'recalc_total();',
options => \@cards)
This would generate the following code, depending on the number
of C<@cards>:
<select name="credit_card" onChange="recalc_total();"> ...
<radio name="credit_card" onClick="recalc_total();"> ...
You get the idea.
=item label => $string
This will be the label printed out next to the field. By default
it will be generated automatically from the field name.
=item labels => \%hash
This takes a hashref of key/value pairs where each key is one of
the options, and each value is what its printed label should be.
For example:
$form->field(name => 'state', options => [qw/AZ CA NV OR WA/],
labels => {
AZ => 'Arizona',
CA => 'California',
NV => 'Nevada',
OR => 'Oregon',
WA => 'Washington
});
When rendered, this would create a select list where the option
values were "CA", "NV", etc, but where the state's full name
was displayed for the user to select.
You can also get the same effect by passing complex data
structures directly to the C<options> argument (see below).
If you have predictable data, check out the C<nameopts> option.
=item linebreaks => 0 | 1
Similar to the top-level "linebreaks" option, this one will put
breaks in between options, to space things out more. This is
useful with radio and checkboxes especially.
=item multiple => 0 | 1
If set to 1, then the user is allowed to choose multiple
values from the options provided. This turns radio groups
into checkboxes and selects into multi-selects. Defaults
to automatically being figured out based on number of values.
=item nameopts => 0 | 1
If set to 1, then options for select lists will be automatically
named just like the fields. So, if you specified a list like:
$form->field(name => 'department',
options => qw[/molecular_biology philosophy psychology
particle_physics social_anthropology/],
nameopts => 1);
This would create a list like:
<select name="department">
<option value="molecular_biology">Molecular Biology</option>
<option value="philosophy">Philosophy</option>
<option value="psychology">Psychology</option>
<option value="particle_physics">Particle Physics</option>
<option value="social_anthropology">Social Anthropology</option>
</select>
Basically, you get names for the options that are determined in
the same way as the names for the fields. This is designed as
a simpler alternative to using custom C<options> data structures
if your data is regular enough to support it.
=item options => \@options | \%options | 'BUILTIN'
This takes an arrayref of options. It also automatically results
in the field becoming a radio (if <= 4) or select list (if > 4),
unless you explicitly set the type with the C<type> parameter.
Each item will become both the value and the text label by default.
That is, if you specified these options:
$form->field(name => 'opinion', options => [qw/yes no maybe so/]);
You will get something like this:
<select name="opinion">
<option value="yes">yes</option>
<option value="no">no</option>
<option value="maybe">maybe</option>
<option value="so">so</option>
</select>
However, if a given item is either an arrayref or hashref, then
the first element will be taken as the value and the second as the
label. So something like this:
push @opt, ['yes', 'You betcha!'];
push @opt, ['no', 'No way Jose'];
push @opt, ['maybe', 'Perchance...'];
push @opt, ['so', 'So'];
$form->field(name => 'opinion', options => \@opt);
Would result in something like the following:
<select name="opinion">
<option value="yes">You betcha!</option>
<option value="no">No way Jose</option>
<option value="maybe">Perchance...</option>
<option value="so">So</option>
</select>
And this code would have the same effect:
push @opt, { yes => 'You betcha!' };
push @opt, { no => 'No way Jose' };
push @opt, { maybe => 'Perchance...' };
push @opt, { so => 'So' };
$form->field(name => 'opinion', options => \@opt);
As would, in fact, this code:
my %opt = (
yes => 'You betcha!',
no => 'No way Jose',
maybe => 'Perchance...',
so => 'So'
);
$form->field(name => 'opinion', options => \%opt);
You get the idea. The goal is to give you as much flexibility
as possible when constructing your data structures, and this
module figures it out correctly. The only disadvantage to the
very last method is that since the top-level structure is a
hash, you cannot control the order of the options.
If you're just looking for simple naming, see the C<nameopts>
option above.
Finally, currently a single builtin options set is included:
C<STATE>, which contains all 50 states + DC as 2-letter codes.
=item override => 0 | 1
A synonym for the C<force> option described above.
=item required => 0 | 1
If set to 1, the field must be filled in:
$form->field(name => 'email', required => 1);
This is rarely useful - what you probably want is the C<validate>
option to C<new()>.
=item sortopts => alpha | numeric | NAME | NUM | 1
If set, and there are options, then the options will be sorted
in the specified order. For example:
$form->field(name => 'category', options => \@cats,
sortopts => 'alpha');
Would sort the C<@cats> options in alpha order.
The terms "NAME" and "NUM" have been introduced to keep consistency
with the C<validate> options. They are synonymous with "alpha" and
"numeric", respectively. If you specify "1", then an alpha sort is
done, again for simplicity.
=item type => $type
Type of input box to make it. Default is "text", and valid values
include anything allowed by the HTML specs, including "password",
"select", "radio", "checkbox", "textarea", "hidden", and so on.
If set to "static", then the field will be printed out, but will
not be editable. Like when you print out a complete static form,
the field's value will be placed in a hidden field as well.
=item value => $value | \@values
The C<value> option can take either a single value or an arrayref
of multiple values. In the case of multiple values, this will
result in the field automatically becoming a multiple select list
or checkbox group, depending on the number of options specified
above.
Just like the 'values' to C<new()>, this can be overridden by
CGI values. To forcibly change a value, you need to specify the
C<force> option described above, for example:
$form->field(name => 'credit_card', value => 'not shown',
force => 1);
This would make the C<credit_card> field into "not shown",
useful for hiding stuff if you're going to use C<mailresults()>.
=item validate => '/regex/'
Similar to the C<validate> option used in C<new()>, this affects
the validation just of that single field. As such, rather than
a hashref, you would just specify the regex to match against.
B<This regex must be specified as a single-quoted string, and
NOT as a qr() regex>. The reason is that this needs to be
easily usable by JavaScript routines as well.
=item [htmlattr] => $value, [htmlattr] => $value
In addition to the above tags, the C<field()> function can take
any other valid HTML attribute, which will be placed in the tag
verbatim. For example, if you wanted to alter the class of the
field (if you're using stylesheets and a template, for example),
you could say:
$form->field(name => 'email', class => 'FormField',
size => 80);
Then when you call C<$form->render> you would get a field something
like this:
<input type="text" name="email" class="FormField" size="80">
(Of course, for this to really work you still have to create a class
called C<FormField> in your stylesheet.)
See also the C<fieldattr> option which can be passed to either
C<new()> or C<render()> and which provides global defaults
for all fields.
=back
=head2 cgi_param()
Wait a second, if we have C<field()> from above, why the heck
would we ever need C<cgi_param()>?
Simple. The above C<field()> function does a bunch of special
stuff. For one thing, it will only return fields which you have
explicitly defined in your form. Excess parameters will be
silently ignored. Also, it will incorporate defaults you give
it, meaning you may get a value back even though the user didn't
enter one explicitly in the form (see above).
But, you may have some times when you want extra stuff so that
you can maintain state, but you don't want it to appear in your
form. B2B and branding are easy examples:
http://hr-outsourcing.com/newuser.cgi?company=mr_propane
This could change stuff in your form so that it showed the logo
and company name for the appropriate vendor, without polluting
your form parameters.
This call simply redispatches to C<CGI::Minimal> (if installed)
or C<CGI.pm>'s C<param()> methods, so consult those docs for
more information.
=head2 tmpl_param()
This allows you to interface with your C<HTML::Template> template,
if you are using one. As with C<cgi_param()> above, this is only
useful if you're manually setting non-field values. B<FormBuilder>
will automatically setup your field parameters for you; see the
L</"template"> option for more details.
=head2 confirm()
The purpose of this function is to print out a static confirmation
screen showing a short message along with the values that were
submitted. It is actually just a special wrapper around C<render()>,
twiddling a couple options.
If you're using templates, you probably want to specify a separate
success template, such as:
print $form->confirm(template => 'success.tmpl');
So that you don't get the same screen twice.
=head2 submitted()
This returns the value of the "Submit" button if the form has been
submitted, undef otherwise. This allows you to either test it in
a boolean context:
if ($form->submitted) { ... }
Or to retrieve the button that was actually clicked on in the
case of multiple submit buttons:
if ($form->submitted eq 'Update') {
...
} elsif ($form->submitted eq 'Delete') {
...
}
It's best to call C<validate()> in conjunction with this to make
sure the form validation works. To make sure you're getting accurate
info, it's recommended that you name your forms with the C<name>
option described above.
If you're writing a multiple-form app, you should name your forms
with the C<name> option to ensure that you are getting an accurate
return value from this sub. See the C<name> option above, under
C<render()>.
You can also specify the name of an optional field which you want to
"watch" instead of the default C<_submitted> hidden field. This is useful
if you have a search form and also want to be able to link to it from
other documents directly, such as:
mysearch.cgi?lookup=what+to+look+for
Normally, C<submitted()> would return false since the C<_submitted>
field is not included. However, you can override this by saying:
$form->submitted('lookup');
Then, if the lookup field is present, you'll get a true value.
(Actually, you'll still get the value of the "Submit" button if
present.)
=head2 validate()
This validates the form based on the validation criteria passed
into C<new()> via the C<validate> option. In addition, you can
specify additional criteria to check that will be valid for just
that call of C<validate()>. This is useful is you have to deal
with different geos:
if ($location eq 'US') {
$form->validate(state => 'STATE', zipcode => 'ZIPCODE');
} else {
$form->validate(state => '/^\w{2,3}$/');
}
Note that if you pass args to your C<validate()> function like
this, you will not get JavaScript generated or required fields
placed in bold. So, this is good for conditional validation
like the above example, but for most applications you want to
pass your validation requirements in via the C<validate>
option to the C<new()> function, and just call the C<validate()>
function with no arguments.
=head2 sessionid()
This gets and sets the sessionid, which is stored in the special
form field C<_sessionid>. By default no session ids are generated
or used. Rather, this is intended to provide a hook for you to
easily integrate this with a session id module like C<Apache::Session>.
Since you can set the session id via the C<_sessionid> field, you
can pass it as an argument when first showing the form:
http://mydomain.com/forms/update_info.cgi?_sessionid=0123-091231
This would set things up so that if you called:
my $id = $form->sessionid;
This would get the value C<0123-091231> in your script. Conversely,
if you generate a new sessionid on your own, and wish to include it
automatically, simply set is as follows:
$form->sessionid($id);
This will cause it to be automatically carried through subsequent
forms.
=head2 mailconfirm()
This sends a confirmation email to the named addresses. The C<to>
argument is required; everything else is optional. If no C<from>
is specified then it will be set to the address C<auto-reply>
since that is a common quasi-standard in the web app world.
This does not send any of the form results. Rather, it simply
prints out a message saying the submission was received.
=head2 mailresults()
This emails the form results to the specified address(es). By
default it prints out the form results separated by a colon, such as:
name: Nathan Wiger
email: nate@wiger.org
colors: red green blue
And so on. You can change this by specifying the C<delimiter> and
C<joiner> options. For example this:
$form->mailresults(to => $to, delimiter => '=', joiner => ',');
Would produce an email like this:
name=Nathan Wiger
email=nate@wiger.org
colors=red,green,blue
Note that now the last field ("colors") is separated by commas since
you have multiple values and you specified a comma as your C<joiner>.
=head2 mail()
This is a more generic version of the above; it sends whatever is
given as the C<text> argument via email verbatim to the C<to> address.
In addition, if you're not running C<sendmail> you can specify the
C<mailer> parameter to give the path of your mailer. This option
is accepted by the above functions as well.
=head1 TEMPLATES
B<FormBuilder> has the ability to "drive" several template engines:
HTML::Template
Text::Template
Template Toolkit
You enable a template by specifying the C<template> option and passing
it the appropriate information. Then, you must place special tags in
your template which will be expanded for you. Let's look at each
template solution in turn.
=head2 HTML::Template
C<HTML::Template> is the default template option and is activated
one of two ways. Either:
my $form = CGI::FormBuilder->new(
fields => \@fields,
template => $filename
);
Or, you can specify any options which C<< HTML::Template->new >>
accepts by using a hashref:
my $form = CGI::FormBuilder->new(
fields => \@fields,
template => {
filename => $filename,
die_on_bad_params => 0,
shared_cache => 1,
loop_context_vars => 1
}
);
In your template, each of the form fields will correspond directly to
a C<< <tmpl_var> >> of the same name prefixed with "field-" in the
template. So, if you defined a field called "email", then you would
setup a variable called C<< <tmpl_var field-email> >> in your template,
and this would be expanded to the complete HTML C<< <input> >> tag.
In addition, there are a couple special fields:
<tmpl_var js-head> - JavaScript to stick in <head>
<tmpl_var form-title> - The <title> of the HTML form
<tmpl_var form-start> - Opening <form> tag w/ options
<tmpl_var form-submit> - The submit button(s)
<tmpl_var form-reset> - The reset button
<tmpl_var form-end> - Just the closing </form> tag
So, let's revisit our C<userinfo.tmpl> template from above:
<html>
<head>
<title>User Information</title>
<tmpl_var js-head><!-- this holds the JavaScript code -->
</head>
<tmpl_var form-start><!-- this holds the initial form tag -->
<h3>User Information</h3>
Please fill out the following information:
<!-- each of these tmpl_var's corresponds to a field -->
<p>Your full name: <tmpl_var field-name>
<p>Your email address: <tmpl_var field-email>
<p>Choose a password: <tmpl_var field-password>
<p>Please confirm it: <tmpl_var field-confirm_password>
<p>Your home zipcode: <tmpl_var field-zipcode>
<p>
<tmpl_var form-submit><!-- this holds the form submit button -->
</form><!-- can also use "tmpl_var form-end", same thing -->
As you see, you get a C<< <tmpl_var> >> for each for field you define.
However, you may want even more control. That is, maybe you want
to specify every nitty-gritty detail of your input fields, and
just want this module to take care of the statefulness of the
values. This is no problem, since this module also provides
several other C<< <tmpl_var> >> tags as well:
<tmpl_var value-[field]> - The value of a given field
<tmpl_var label-[field]> - The human-readable label
<tmpl_var comment-[field]> - Any optional comment
<tmpl_var error-[field]> - Error text if validation fails
This means you could say something like this in your template:
<tmpl_var label-email>:
<input type="text" name="email" value="<tmpl_var value-email>">
<font size="-1"><i><tmpl_var error-email></i></font>
And B<FormBuilder> would take care of the value stickiness for you,
while you have control over the specifics of the C<< <input> >> tag.
A sample expansion may create HTML like the following:
Email:
<input type="text" name="email" value="nate@wiger">
<font size="-1"><i>You must enter a valid value</i></font>
Note, though, that this will only get the I<first> value in the case
of a multi-value parameter (for example, a multi-select list). To
remedy this, if there are multiple values you will also get a
C<< <tmpl_var> >> prefixed with "loop-". So, if you had:
myapp.cgi?color=gray&color=red&color=blue
This would give the C<color> field three values. To create a select
list, you would do this in your template:
<select name="color" multiple>
<tmpl_loop loop-color>
<option value="<tmpl_var value>"><tmpl_var label></option>
</tmpl_loop>
</select>
With C<< <tmpl_loop> >> tags, each iteration gives you several
variables:
Inside <tmpl_loop>, this... Gives you this
--------------------------- -------------------------------
<tmpl_var value> value of that option
<tmpl_var label> label for that option
<tmpl_var checked> if selected, the word "checked"
<tmpl_var selected> if selected, the word "selected"
Please note that C<< <tmpl_var value> >> gives you one of the I<options>,
not the values. Why? Well, if you think about it you'll realize that
select lists and radio groups are fundamentally different from input
boxes in a number of ways. Whereas in input tags you can just have
an empty value, with lists you need to iterate through each option
and then decide if it's selected or not.
When you need precise control in a template this is all exposed to you;
normally B<FormBuilder> does all this magic for you. If you don't need
exact control over your lists, simply use the C<< <tmpl_var field-[name]> >>
tag and this will all be done automatically, which I strongly recommend.
But, let's assume you need exact control over your lists. Here's an
example select list template:
<select name="color" multiple>
<tmpl_loop loop-color>
<option value="<tmpl_var value>" <tmpl_var selected>><tmpl_var label>
</tmpl_loop>
</select>
Then, your Perl code would fiddle the field as follows:
$form->field(name => 'color', nameopts => 1,
options => [qw/red green blue yellow black white gray/]);
Assuming query string as shown above, the template would then be expanded
to something like this:
<select name="color" multiple>
<option value="red" selected>Red
<option value="green" >Green
<option value="blue" selected>Blue
<option value="yellow" >Yellow
<option value="black" >Black
<option value="white" >White
<option value="gray" selected>Gray
</select>
Notice that the C<< <tmpl_var selected> >> tag is expanded to the word
"selected" when a given option is present as a value as well (i.e.,
via the CGI query). The C<< <tmpl_var value> >> tag expands to each option
in turn, and C<< <tmpl_var label> >> is expanded to the label for that
value. In this case, since C<nameopts> was specified to C<field()>, the
labels are automatically generated from the options.
Let's look at one last example. Here we want a radio group that allows
a person to remove themself from a mailing list. Here's our template:
Do you want to be on our mailing list?
<p><table>
<tmpl_loop loop-mailopt>
<td bgcolor="silver">
<input type="radio" name="mailopt" value="<tmpl_var value>">
</td>
<td bgcolor="white"><tmpl_var label></td>
</tmpl_loop>
</table>
Then, we would twiddle our C<mailopt> field via C<field()>:
$form->field(name => 'mailopt', options => [qw/1 0/],
labels => {
1 => 'Yes, please keep me on it!',
0 => 'No, remove me immediately.'
});
When the template is rendered, the result would be something like this:
Do you want to be on our mailing list?
<p><table>
<td bgcolor="silver">
<input type="radio" name="mailopt" value="1">
</td>
<td bgcolor="white">Yes, please keep me on it!</td>
<td bgcolor="silver">
<input type="radio" name="mailopt" value="0">
</td>
<td bgcolor="white">No, remove me immediately</td>
</table>
When the form was then sumbmitted, you would access the values just
like any other field:
if ($form->field('mailopt')) {
# is 1, so add them
} else {
# is 0, remove them
}
Finally, you can also loop through each of the fields using the top-level
C<fields> loop in your template. This allows you to reuse the
same template even if your parameters change. The following template
code would loop through each field, creating a table row for each:
<table>
<tmpl_loop fields>
<tr>
<td class="small"><tmpl_var label></td>
<td><tmpl_var field></td>
</tr>
</tmpl_loop>
</table>
Each loop will have a C<label>, C<field>, C<value>, etc, just like above.
For more information on templates, see L<HTML::Template>.
=head2 Template Toolkit
Thanks to a huge patch from Andy Wardley, B<FormBuilder> also supports
C<Template Toolkit>. This is enabled by specifying the following
options as a hashref to the C<template> argument:
my $form = CGI::FormBuilder->new(
fields => \@fields,
template => {
type => 'TT2', # use Template Toolkit
template => 'form.tmpl'
}
);
By default, the Template Toolkit makes all the form and field
information accessible through simple variables.
[% jshead %] - JavaScript to stick in <head>
[% title %] - The <title> of the HTML form
[% start %] - Opening <form> tag w/ options
[% submit %] - The submit button(s)
[% reset %] - The reset button
[% end %] - Closing </form> tag
[% fields %] - List of fields
[% field %] - Hash of fields (for lookup by name)
You can specify the C<variable> option to have all these variables
accessible under a certain namespace. For example:
my $form = CGI::FormBuilder->new(
fields => \@fields,
template => {
type => 'TT2',
template => 'form.tmpl',
variable => 'form'
},
);
With C<variable> set to C<form> the variables are accessible as:
[% form.jshead %]
[% form.start %]
etc.
You can access individual fields via the C<field> variable.
For a field named... The field data is in...
-------------------- -----------------------
job [% form.field.job %]
size [% form.field.size %]
email [% form.field.email %]
Each field contains various elements. For example:
[% myfield = form.field.email %]
[% myfield.label %] # text label
[% myfield.field %] # field input tag
[% myfield.value %] # first value
[% myfield.values %] # list of all values
[% myfield.option %] # first value
[% myfield.options %] # list of all values
[% myfield.required %] # required flag
[% myfield.invalid %] # invalid flag
The C<fields> variable contains a list of all the fields in the form.
To iterate through all the fields in order, you could do something like
this:
[% FOREACH field = form.fields %]
<tr>
<td>[% field.label %]</td> <td>[% field.field %]</td>
</tr>
[% END %]
If you want to customise any of the Template Toolkit options, you can
set the C<engine> option to contain a reference to an existing
C<Template> object or hash reference of options which are passed to
the C<Template> constructor. You can also set the C<data> item to
define any additional variables you want accesible when the template
is processed.
my $form = CGI::FormBuilder->new(
fields => \@fields,
template => {
type => 'TT2',
template => 'form.tmpl',
variable => 'form'
engine => {
INCLUDE_PATH => '/usr/local/tt2/templates',
},
data => {
version => 1.23,
author => 'Fred Smith',
},
},
);
For further details on using the Template Toolkit, see C<Template> or
www.template-toolkit.org
=head2 Text::Template
Also thanks to a user contribution, this time by Jonathan Buhacoff,
C<Text::Template> is also supported. Usage is very similar to Template Toolkit:
my $form = CGI::FormBuilder->new(
fields => \@fields,
template => {
type => 'Text', # use Text::Template
template => 'form.tmpl',
}
);
The default options passed into C<Text::Template->new()> with this
calling form are:
TYPE => 'FILE'
SOURCE => 'form.tmpl'
DELIMITERS => ['<%','%>']
As these params are passed for you, your template will look very similar to
ones used by Template Toolkit and C<HTML::Mason> (the Text::Template default
delimiters are C<{> and C<}>, but using alternative delimiters speeds it up by
about 25%, and the C<< <% >> and C<< %> >> delimiters are good,
familiar-looking alternatives).
<% $jshead %> - JavaScript to stick in <head>
<% $title %> - The <title> of the HTML form
<% $start %> - Opening <form> tag w/ options
<% $submit %> - The submit button(s)
<% $reset %> - The reset button
<% $end %> - Closing </form> tag
<% $fields %> - List of fields
<% $field %> - Hash of fields (for lookup by name)
Note that you refer to variables with a preceding C<$>, just like in Perl.
Like Template Toolkit, you can specify a variable to place fields under:
my $form = CGI::FormBuilder->new(
fields => \@fields,
template => {
type => 'Text',
template => 'form.tmpl',
variable => 'form'
},
);
Unlike Template Toolkit, though, these will not be placed in OO-style, dot-separated
vars. Instead, a hash will be created which you then reference:
<% $form{jshead} %>
<% $form{start} %>
etc.
And field data is in a hash-of-hashrefs format:
For a field named... The field data is in...
-------------------- -----------------------
job <% $form{field}{job} %]
size <% $form{field}{size} %]
email <% $form{field}{email} %]
Since C<Text::Template> looks so much like Perl, you can access individual
elements and create variables like so:
<%
my $myfield = $form{field}{email};
$myfield->{label}; # text label
$myfield->{field}; # field input tag
$myfield->{value}; # first value
$myfield->{values}; # list of all values
$myfield->{option}; # first option
$myfield->{options}; # list of all options
$myfield->{required}; # required flag
$myfield->{invalid}; # invalid flag
%>
<%
for my $field (@{$form{fields}}) {
$OUT .= "<tr>\n<td>" . $field->{label} . "</td> <td>" . $field->{field} . "</td>\n<tr>";
}
%>
In addition, when using the engine option, as in Template Toolkit, you can
supply an existing Text::Template object or a hash of parameters to be passed
to C<new()>. For example, you can ask for different delimiters yourself:
my $form = CGI::FormBuilder->new(
fields => \@fields,
template => {
type => 'Text',
template => 'form.tmpl',
variable => 'form',
engine => {
DELIMITERS => [ '[@--', '--@]' ],
},
data => {
version => 1.23,
author => 'Fred Smith',
},
},
);
If you pass a hash of parameters, you can override the C<TYPE> and C<SOURCE> parameters,
as well as any other C<Text::Template> options. For example, you can pass in a string
template with C<< TYPE => STRING >> instead of loading it from a file. You must
specify B<both> C<TYPE> and C<SOURCE> if doing so. The good news is this is trivial:
my $form = CGI::FormBuilder->new(
fields => \@fields,
template => {
type => 'Text',
variable => 'form',
engine => {
TYPE => 'STRING',
SOURCE => $string,
DELIMITERS => [ '[@--', '--@]' ],
},
data => {
version => 1.23,
author => 'Fred Smith',
},
},
);
If you get the crazy idea to let users of your application pick the template file
(strongly discouraged) and you're getting errors, look at the C<Text::Template>
documentation for the C<UNTAINT> feature.
Also, note that C<Text::Template>'s C<< PREPEND => 'use strict;' >> option is not
recommended due to the dynamic nature for C<FormBuilder>. If you use it, then you'll
have to declare each variable that C<FormBuilder> puts into your template with
C<< use vars qw($jshead' ... etc); >>
If you're really stuck on this, though, a workaround is to say:
PREPEND => 'use strict; use vars qw(%form);'
and then set the option C<< variable => 'form' >>. That way you can have strict Perl
without too much hassle, except that your code might be exhausting to look at :-).
Things like C<$form{field}{your_field_name}{field}> end up being all over the place,
instead of the nicer short forms.
Finally, when you use the C<data> template option, the keys you specify will be available
to the template as regular variables. In the above example, these would be
C<< <% $version %> >> and C<< <% $author %> >>. And complex datatypes are easy:
data => {
anArray => [ 1, 2, 3 ],
aHash => { orange => 'tangy', chocolate => 'sweet' },
}
This becomes the following in your template:
<%
@anArray; # you can use $myArray[1] etc.
%aHash; # you can use $myHash{chocolate} etc.
%>
For more information, please consult the C<Text::Template> documentation.
=head1 EXAMPLES
I find this module incredibly useful, so here are even more examples,
pasted from sample code that I've written:
=head2 Ex1: order.cgi
This example provides an order form complete with validation of the
important fields.
#!/usr/bin/perl -w
use strict;
use CGI::FormBuilder;
my @states = qw(AL AK AZ AR CA CO CT DE DC FL GE HI ID IL IN IA KS
KY LA ME MD MA MI MN MS MO MT NE NV NH NJ NM NY NC
ND OH OK OR PA RI SC SD TN TX UT VT VA WA WV WI WY);
my $form = CGI::FormBuilder->new(
header => 1, method => 'POST', title => 'Order Info',
fields => [qw/first_name last_name email address
state zipcode credit_card/],
validate => {email => 'EMAIL', zipcode => 'ZIPCODE',
credit_card => 'CARD'}
);
$form->field(name => 'state', options => \@states, sort => 'alpha');
# This adds on the 'details' field to our form dynamically
$form->field(name => 'details', cols => '50', rows => '10');
# try to validate it first
if ($form->submitted && $form->validate) {
# ... more code goes here to do stuff ...
print $form->confirm;
} else {
print $form->render;
}
This will create a form called "Order Info" that will provide a pulldown
menu for the "state", a textarea for the "details", and normal text
boxes for the rest. It will then validate the fields specified to the
C<validate> option appropriately.
=head2 Ex2: order_form.cgi
This is very similar to the above, only it uses the C<smartness> option
to fill in the "state" options automatically, as well as guess at the
validation types we want. I recommend you use the C<debug> option to
see what's going on until you're sure it's doing what you want.
#!/usr/bin/perl -w
use strict;
use CGI::FormBuilder;
my $form = CGI::FormBuilder->new(
header => 1, method => 'POST',
smartness => 2, debug => 2,
fields => [qw/first_name last_name email address
state zipcode credit_card/],
);
# This adds on the 'details' field to our form dynamically
$form->field(name => 'details', cols => '50', rows => '10');
# try to validate it first
if ($form->submitted && $form->validate) {
# ... more code goes here to do stuff ...
print $form->confirm;
} else {
print $form->render;
}
Since we didn't specify the C<title> option, it will be automatically
determined from the name of the executable. In this case it will be
"Order Form".
=head2 Ex3: ticket_search.cgi
This is a simple search script that uses a template to layout
the search parameters very precisely. Note that we set our
options for our different fields and types.
#!/usr/bin/perl -w
use strict;
use CGI::FormBuilder;
my $form = CGI::FormBuilder->new(
header => 1, template => 'ticket_search.tmpl',
fields => [qw/type string status category/]
);
# Need to setup some specific field options
$form->field(name => 'type',
options => [qw/ticket requestor hostname sysadmin/]);
$form->field(name => 'status', type => 'radio', value => 'incomplete',
options => [qw/incomplete recently_completed all/]);
$form->field(name => 'category', type => 'checkbox',
options => [qw/server network desktop printer/]);
# Render the form and print it out so our submit button says "Search"
print $form->render(submit => ' Search ');
Then, in our C<ticket_search.tmpl> HTML file, we would have something like this:
<html>
<head>
<title>Search Engine</title>
<tmpl_var js-head>
</head>
<body bgcolor="white">
<center>
<p>
Please enter a term to search the ticket database. Make sure
to "quote phrases".
<p>
<tmpl_var form-start>
Search by <tmpl_var field-type> for <tmpl_var field-string>
<tmpl_var form-submit>
<p>
Status: <tmpl_var field-status>
<p>
Category: <tmpl_var field-category>
<p>
</form>
</body>
</html>
That's all you need for a sticky search form with the above HTML layout.
Notice that you can change the HTML layout as much as you want without
having to touch your CGI code.
=head2 Ex4: user_info.cgi
This script grabs the user's information out of a database and lets
them update it dynamically. The DBI information is provided as an
example, your mileage may vary:
#!/usr/bin/perl -w
use strict;
use CGI::FormBuilder;
use DBI;
use DBD::Oracle
my $dbh = DBI->connect('dbi:Oracle:db', 'user', 'pass');
# We create a new form. Note we've specified very little,
# since we're getting all our values from our database.
my $form = CGI::FormBuilder->new(
fields => [qw/username password confirm_password
first_name last_name email/]
);
# Now get the value of the username from our app
my $user = $form->cgi_param('user');
my $sth = $dbh->prepare("select * from user_info where user = '$user'");
$sth->execute;
my $default_hashref = $sth->fetchrow_hashref;
# Render our form with the defaults we got in our hashref
print $form->render(values => $default_hashref,
title => "User information for '$user'",
header => 1);
=head2 Ex5: add_part.cgi
This presents a screen for users to add parts to an inventory database.
Notice how it makes use of the C<sticky> option. If there's an error,
then the form is presented with sticky values so that the user can
correct them and resubmit. If the submission is ok, though, then the
form is presented without sticky values so that the user can enter
the next part.
#!/usr/bin/perl -w
use strict;
use CGI::FormBuilder;
my $form = CGI::FormBuilder->new(
method => 'POST',
fields => [qw/sn pn model qty comments/],
labels => { sn => 'Serial Number',
pn => 'Part Number' },
sticky => 0,
header => 1,
required => [qw/sn pn model qty/],
validate => { sn => '/^\d{3}-\d{4}-\d{4}$/',
pn => '/^\d{3}-\d{4}$/',
qty => 'INT' },
font => 'arial,helvetica'
);
# shrink the qty field for prettiness, lengthen model
$form->field(name => 'qty', size => 4);
$form->field(name => 'model', size => 60);
if ($form->submitted) {
if ($form->validate) {
# Add part to database
} else {
# Invalid; show form and allow corrections
print $form->render(sticky => 1);
exit;
}
}
# Print form for next part addition.
print $form->render;
With the exception of the database code, that's the whole application.
=head1 FREQUENTLY ASKED QUESTIONS (FAQ)
There are a couple questions and subtle traps that seem to poke people
on a regular basis. Here are some hints.
=over
=head2 I'm confused. Why doesn't field() work like CGI's param()?
If you're used to C<CGI.pm>, you have to do a little bit of a brain
shift when working with this module.
First, this module is designed to address fields as I<abstract
entities>. That is, you don't create a "checkbox" or "radio group"
per se. Instead, you create a field named for the data you want
to collect. B<FormBuilder> takes care of figuring out what the
most optimal HTML representation is for you.
So, if you want a single-option checkbox, simply say something
like this:
$form->field(name => 'join_mailing_list', options => ['Yes']);
If you want it to be checked by default, you add the C<value> arg:
$form->field(name => 'join_mailing_list', options => ['Yes'],
value => 'Yes');
You see, you're creating a field that has one possible option: "Yes".
Then, you're saying its current value is, in fact, "Yes". This will
result in B<FormBuilder> creating a single-option field (which is
a checkbox by default) and selecting the requested value (meaning
that the box will be checked).
If you want multiple values, then all you have to do is specify
multiple options:
$form->field(name => 'join_mailing_list', options => [qw/Yes No/],
value => 'Yes');
Now you'll get a radio group, and "Yes" will be selected for you!
By viewing fields as data entities (instead of HTML tags) you
get much more flexibility and less code maintenance. If you want
to be able to accept multiple values, simply add the C<multiple> arg:
$form->field(name => 'favorite_colors', multiple => 1,
options => [qw/red green blue]);
Depending on the number of C<options> you have, you'll get either
a set of checkboxes or a multiple select list (unless you manually
override this with the C<type> arg). Regardless, though, to get the
data back all you have to say is:
my @colors = $form->field('favorite_colors');
And the rest is taken care of for you.
=head2 How do I make a multi-screen/multi-mode form?
This is easily doable, but you have to remember a couple things. Most
importantly, that B<FormBuilder> only knows about those fields you've
told it about. So, let's assume that you're going to use a special
parameter called C<mode> to control the mode of your application so
that you can call it like this:
myapp.cgi?mode=list&...
myapp.cgi?mode=edit&...
myapp.cgi?mode=remove&...
And so on. You need to do two things. First, you need the C<keepextras>
option:
my $form = CGI::FormBuilder->new(..., keepextras => 1);
This will maintain the C<mode> field as a hidden field across requests
automatically. Second, you need to realize that since the C<mode> is
not a defined field, you have to get it via the C<cgi_param()> method:
my $mode = $form->cgi_param('mode');
This will allow you to build a large multiscreen application easily,
even integrating it with modules like C<CGI::Application> if you want.
You can also do this by simply defining C<mode> as a field in your
C<fields> declaration. The reason this is discouraged is because
when iterating over your fields you'll get C<mode>, which you likely
don't want (since it's not "real" data).
=head2 Why won't CGI::FormBuilder work with POST requests?
It will, but chances are you're probably doing something like this:
use CGI qw/:standard/;
use CGI::FormBuilder;
# Our "mode" parameter determines what we do
my $mode = param('mode');
# Change our form based on our mode
if ($mode eq 'view') {
my $form = CGI::FormBuilder->new(
method => 'POST',
fields => [qw/.../],
);
} elsif ($mode eq 'edit') {
my $form = CGI::FormBuilder->new(
method => 'POST',
fields => [qw/.../],
);
}
The problem is this: Once you read a C<POST> request, it's gone
forever. In the above code, what you're doing is having C<CGI.pm>
read the C<POST> request (on the first call of C<param()>).
Luckily, there is an easy solution. First, you need to modify
your code to use the OO form of C<CGI.pm>. Then, simply specify
the C<CGI> object you create to the C<params> option of B<FormBuilder>:
use CGI;
use CGI::FormBuilder;
my $cgi = CGI->new;
# Our "mode" parameter determines what we do
my $mode = $cgi->param('mode');
# Change our form based on our mode
# Note: since it is POST, must specify the 'params' option
if ($mode eq 'view') {
my $form = CGI::FormBuilder->new(
method => 'POST',
fields => [qw/.../],
params => $cgi # get CGI params
);
} elsif ($mode eq 'edit') {
my $form = CGI::FormBuilder->new(
method => 'POST',
fields => [qw/.../],
params => $cgi # get CGI params
);
}
Or, since B<FormBuilder> gives you a C<cgi_param()> function, you
could modify your code so you use B<FormBuilder> exclusively.
=head2 How do I make it so that the values aren't shown in the form?
Easy.
my $form = CGI::FormBuilder->new(sticky => 0, ...);
By turning off the C<sticky> option, you will still be able to access
the values, but they won't show up in the form.
=head2 How do I manually override the value of a field?
You must specify the C<force> option:
$form->field(name => 'name_of_field', value => $value, force => 1);
If you don't specify C<force>, then any CGI value will always win.
=head2 How can I change option XXX based on a conditional?
Remember that C<render()> can take any option that C<new()> can. This
means that you can set some features on your form sooner and others
later:
my $form = CGI::FormBuilder->new(method => 'POST');
my $mode = $form->cgi_param('mode');
if ($mode eq 'add') {
print $form->render(fields => [qw/name email phone/],
title => 'Add a new entry');
} elsif ($mode eq 'edit') {
# do something to select existing values
my %values = select_values();
print $form->render(fields => [qw/name email phone/],
title => 'Edit existing entry',
values => \%values);
}
In fact, since any of the options can be used in either C<new()> or
C<render()>, you could have specified C<fields> to C<new()> above
since they are the same for both conditions.
=head2 I can't get "validate" to accept my regular expressions!
You're probably not specifying them within single quotes. See the
section on C<validate> above.
=head2 Can FormBuilder handle file uploads?
It sure can, and it's really easy too. Just change the C<enctype>
as an option to C<new()>:
use CGI::FormBuilder;
my $form = CGI::FormBuilder->new(
enctype => 'multipart/form-data',
method => 'POST',
fields => [qw/filename/]
);
$form->field(name => 'filename', type => 'file');
And then get to your file the same way as C<CGI.pm>:
if ($form->submitted) {
my $file = $form->field('filename');
# save contents in file, etc ...
open F, ">$dir/$file" or die $!;
while (<$file>) {
print F;
}
close F;
print $form->confirm(header => 1);
} else {
print $form->render(header => 1);
}
In fact, that's a whole file upload program right there.
=back
=head1 BUGS AND FEATURES
This has been used pretty thoroughly in a production environment
for a while now, so it's definitely stable, but I would be shocked
if it's bug-free. Bug reports and B<especially patches> to fix such
bugs are welcomed.
I'm always open to entertaining "new feature" requests, but before
sending me one, first try to work within this module's interface.
You can very likely do exactly what you want by using a template.
=head1 NOTES
Parameters beginning with a leading underscore are reserved for
future use by this module. Use at your own peril.
This module does a B<lot> of guesswork for you. This means that
sometimes (although hopefully rarely), you may be scratching your
head wondering "Why did it do that?". Just use the C<field>
method to set things up the way you want and move on.
Due to too many incompatibilities with CGI.pm, unfortunately
C<CGI::Minimal> is no longer used. Sorry.
The output of the HTML generated natively may change slightly from
release to release. If you need precise control, use a template.
Every attempt has been made to make this module taint-safe (-T).
However, due to the way tainting works, you may run into the
message "Insecure dependency" or "Insecure $ENV{PATH}". If so,
make sure you are setting you C<$ENV{PATH}> at the top of your
script. This is actually a good habit regardless.
=head1 SUPPORT
For support, please start by visiting the FormBuilder website at:
www.formbuilder.org
This site has numerous tutorials and other documentation to help you
use FormBuilder to its full potential. If you can't find the answer
there, then join the mailing list by emailing:
fbusers-subscribe@formbuilder.org
To submit patches, please first join the mailing list and post your
question or issue. That way we can have a discussion about the best
way to address it.
=head1 ACKNOWLEDGEMENTS
This module has really taken off, thanks to very useful input, bug
reports, and encouraging feedback from a number of people, including:
Jakob Curdes
Mark Belanger
Peter Billam
Brad Bowman
Jonathan Buhacoff
Godfrey Carnegie
Bob Egert
Adam Foxson
Florian Helmberger
Mark Houliston
Robert James Kaes
Dimitry Kharitonov
Randy Kobes
William Large
Kevin Lubic
Robert Mathews
Mehryar
Koos Pol
Shawn Poulson
Dan Collis Puro
Stephan Springl
Ryan Tate
John Theus
Remi Turboult
Andy Wardley
Thanks!
=head1 SEE ALSO
L<HTML::Template>, L<Text::Template>, Template Toolkit, L<CGI::Minimal>,
L<CGI>, L<CGI::Application>
=head1 VERSION
$Id: FormBuilder.pod,v 2.12 2003/07/25 21:17:30 nwiger Exp nwiger $
=head1 AUTHOR
Copyright (c) 2001-2003 Nathan Wiger, Sun Microsystems <nate@sun.com>.
All Rights Reserved.
This module is free software; you may copy this under the terms of
the GNU General Public License, or the Artistic License, copies of
which should have accompanied your Perl kit.
=cut
|