DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

Changing & editing templates

EXT:maps2 is using fluid as template engine. If you are used to fluid already, you might skip this section.

This documentation won’t bring you all information about fluid but only the most important things you need for using it. You can get more information in books like the one of Jochen Rau und Sebastian Kurfürst or online, e.g. at http://wiki.typo3.org/Fluid or many other sites.

Changing paths of the template

You should never edit the original templates of an extension as those changes will vanish if you upgrade the extension. As any extbase based extension, you can find the templates in the directory Resources/Private/.

If you want to change a template, copy the desired files to the directory where you store the templates. This can be a directory in fileadmin or a custom extension. Multiple fallbacks can be defined which makes it far easier to customize the templates.

plugin.tx_maps2 {
  view {
    templateRootPaths >
    templateRootPaths {
      0 = EXT:maps2/Resources/Private/Templates/
      1 = fileadmin/templates/ext/maps2/Templates/
    }
    partialRootPaths >
    partialRootPaths {
      0 = EXT:maps2/Resources/Private/Partials/
      1 = fileadmin/templates/ext/maps2/Partials/
    }
    layoutRootPaths >
    layoutRootPaths {
      0 = EXT:maps2/Resources/Private/Layouts/
      1 = fileadmin/templates/ext/maps2/Layouts/
    }
  }
}

Change the templates using TypoScript constants

You can use the following TypoScript in the constants to change the paths

plugin.tx_maps2 {
  view {
    templateRootPath = fileadmin/templates/ext/maps2/Templates/
    partialRootPath = fileadmin/templates/ext/maps2/Partials/
    layoutRootPath = fileadmin/templates/ext/maps2/Layouts/
  }
}

Change path of the poiCollection widget

The path of the poiCollection widget can be changed by using a configuration like below.

plugin.tx_maps2 {
  view {
    widget.JWeiland\Maps2\ViewHelpers\Widget\PoiCollectionViewHelper.templateRootPath = {$plugin.tx_maps2.view.templateRootPath}
  }
}

Change path of the editPoi widget

The path of the editPoi widget can be changed by using a configuration like below.

plugin.tx_maps2 {
  view {
    widget.JWeiland\Maps2\ViewHelpers\Widget\EditPoiViewHelper.templateRootPath = [PATH]
  }
}