00001 <?php
00002 #
00003 # dmBridge: a data access framework for CONTENTdm(R)
00004 # Copyright © 2009, 2010 Board of Regents of the Nevada System of Higher
00005 # Education, on behalf of the University of Nevada, Las Vegas
00006 #
00007
00015 interface idmFormField {
00016 function __construct($name);
00017 function addAttribute($k, $v);
00018 function getHTMLTag();
00019 function setLabel($str);
00020 function setMaxLength($int);
00021 function setMinLength($int);
00022 function getName();
00023 function setType($type);
00024 function isValid();
00025 function getValue();
00026 function setValue($value);
00027 }
00028