Email.php
389 Bytes
<?php 
namespace Phalcon\Forms\Element {
	/**
	 * Phalcon\Forms\Element\Email
	 *
	 * Component INPUT[type=email] for forms
	 */
	
	class Email extends \Phalcon\Forms\Element implements \Phalcon\Forms\ElementInterface {
		/**
		 * Renders the element widget returning html
		 *
		 * @param array $attributes
		 * @return string
		 */
		public function render($attributes=null){ }
	}
}