NewNoteForm::__construct PHP Method

__construct() public method

Constructor.
public __construct ( )
    function __construct()
    {
        parent::__construct('controllers/informationCenter/notes.tpl');
        $this->addCheck(new FormValidatorPost($this));
        $this->addCheck(new FormValidatorCSRF($this));
    }

Usage Example

 /**
  * Constructor.
  */
 function __construct($fileId)
 {
     parent::__construct();
     $this->fileId = $fileId;
 }
All Usage Examples Of NewNoteForm::__construct