Logo white

Alex Savenko / semena

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • semena
  • ..
  • Element
  • Email.php
  • first push project
    dce46e80
    Alex Savenko authored
    2016-12-07 11:12:12 +0200  
    Browse Code ยป
Email.php 389 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<?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){ }

	}
}