mia3/mia3_location

There is no license information available for the latest version (1.2.7) of this package.

TYPO3 Location Extension

Installs: 129

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

Open Issues: 0

Type:typo3-cms-extension

1.2.7 2018-11-09 15:15 UTC

This package is auto-updated.

Last update: 2024-04-05 18:03:41 UTC


README

Location search using GoogleMaps

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_mia3location {
    view {
        templateRootPaths >
        templateRootPaths {
            0 = EXT:mia3_location/Resources/Private/Templates/
            1 = fileadmin/templates/ext/news/Templates/
        }
        partialRootPaths >
        partialRootPaths {
            0 = EXT:mia3_location/Resources/Private/Partials/
            1 = fileadmi`n/templates/ext/news/Partials/
        }
        layoutRootPaths >
        layoutRootPaths {
            0 = EXT:mia3_location/Resources/Private/Layouts/
            1 = fileadmin/templates/ext/news/Layouts/
        }
    }
}

Change the templates using TypoScript constants

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

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

Creating a new Release/Tag

  1. install deployer
  2. create release by using dep release:patch, dep release:minor or dep release:major