phpbb\install\helper\iohandler\ajax_iohandler::__construct PHP Method

__construct() public method

Constructor
public __construct ( phpbb\path_helper $path_helper, phpbb\request\request_interface $request, phpbb\template\template $template, router $router, string $root_path )
$path_helper phpbb\path_helper
$request phpbb\request\request_interface HTTP request interface
$template phpbb\template\template Template engine
$router phpbb\routing\router Router
$root_path string Path to phpBB's root
    public function __construct(path_helper $path_helper, \phpbb\request\request_interface $request, \phpbb\template\template $template, router $router, $root_path)
    {
        $this->path_helper = $path_helper;
        $this->request = $request;
        $this->router = $router;
        $this->template = $template;
        $this->form = '';
        $this->nav_data = array();
        $this->cookies = array();
        $this->download = array();
        $this->redirect_url = array();
        $this->file_status = '';
        $this->phpbb_root_path = $root_path;
        parent::__construct();
    }