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: 21: 22: 23: 24: 25: 26: 27: 28: 
<?php

    namespace Inteve\Forms;

    use Nette;
    use Nette\Application\UI\Form;


    class FormFactory
    {
        use \Nette\SmartObject;


        /** @var callback[] */
        public $onCreate;


        /**
         * @return Form
         */
        public function create()
        {
            $form = new Form;
            $this->onCreate($form);
            return $form;
        }
    }
inteve/forms v0.2.0 API documentation API documentation generated by ApiGen