/**
  * Initialize MFU
  */
 public static function init()
 {
     // Init UI registrator
     $uiReg = self::$interfaceRegistrator = new MFUUIRegistrator();
     $uiReg->register("MFUUIHTML4SingleUpload");
     $uiReg->register("MFUUIPlupload");
     // Set default check callback
     self::$validateFileCallback = callback(__CLASS__, "validateFile");
 }