Overview

Namespaces

  • Inteve
    • Forms
      • Controls

Classes

  • Inteve\Forms\Controls
  • Inteve\Forms\Controls\TextInput
  • Inteve\Forms\Filters
  • Inteve\Forms\FormFactory
  • Overview
  • Namespace
  • Class
 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 
<?php

    namespace Inteve\Forms;

    use Nette\Forms\Controls as FormControls;


    class Controls
    {
        /**
         * @param  string|NULL
         * @param  int|NULL
         * @return FormControls\TextInput
         */
        public static function text($label = NULL, $maxLength = NULL)
        {
            return new Controls\TextInput($label, $maxLength);
        }
    }
inteve/forms v0.1.0 API documentation API documentation generated by ApiGen