1: <?php 2: 3: /** 4: * HTML5 email input property. 5: */ 6: class Papi_Property_Email extends Papi_Property_String { 7: 8: /** 9: * The input type to use. 10: * 11: * @var string 12: */ 13: public $input_type = 'email'; 14: 15: } 16: