Replace insert tags and masked entities. (Fix #17)

This commit is contained in:
David Molineus
2015-01-22 12:24:22 +01:00
parent b65bcbff9f
commit 9dfb6698cf
7 changed files with 202 additions and 2 deletions

View File

@@ -0,0 +1,28 @@
<?php
/**
* @package dev
* @author David Molineus <david.molineus@netzmacht.de>
* @copyright 2015 netzmacht creative David Molineus
* @license LGPL 3.0
* @filesource
*
*/
namespace Netzmacht\Contao\Leaflet\Frontend\Helper;
/**
* Class FrontendApi provides access to the frontend api of contao.
*
* @package Netzmacht\Contao\Leaflet\Frontend\Helper
*/
class FrontendApi extends \Frontend
{
/**
* {@inheritdoc}
*/
public function replaceInsertTags($strBuffer, $blnCache = true)
{
return parent::replaceInsertTags($strBuffer, $blnCache);
}
}