# Authors: Alexandre Gramfort <alexandre.gramfort@telecom-paristech.fr>
#          Martin Luessi <mluessi@nmr.mgh.harvard.edu>
#          Eric Larson <larson.eric.d@gmail.com>
# License: BSD Style.

from functools import partial

from ...utils import verbose
from ..utils import (has_dataset, _data_path, _data_path_doc,
                     _get_version, _version_doc)


has_multimodal_data = partial(has_dataset, name='multimodal')


@verbose
def data_path(path=None, force_update=False, update_path=True, download=True,
              verbose=None):  # noqa: D103
    return _data_path(path=path, force_update=force_update,
                      update_path=update_path, name='multimodal',
                      download=download)

data_path.__doc__ = _data_path_doc.format(name='multimodal',
                                          conf='MNE_DATASETS_MULTIMODAL_PATH')


def get_version():  # noqa: D103
    return _get_version('multimodal')

get_version.__doc__ = _version_doc.format(name='multimodal')
