Backend\SynchronizeController::__construct PHP Method

__construct() public method

public __construct ( )
    public function __construct()
    {
        @ini_set('max_execution_time', 300);
        // Temporarily increase maximum execution time
        parent::__construct();
        $this->current_time = date("Y-m-d-H-i-s");
        $this->backup_file = backup_path() . "/backup_{$this->current_time}.zip";
        $this->restore_file = restore_path() . "/backup_{$this->current_time}.zip";
    }