forked from Snck3rs/contao-leaflet-maps
20 lines
325 B
PHP
20 lines
325 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @package dev
|
||
|
|
* @author David Molineus <david.molineus@netzmacht.de>
|
||
|
|
* @copyright 2014 netzmacht creative David Molineus
|
||
|
|
* @license LGPL 3.0
|
||
|
|
* @filesource
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace Netzmacht\Contao\Leaflet\Model;
|
||
|
|
|
||
|
|
|
||
|
|
class LayerModel extends \Model
|
||
|
|
{
|
||
|
|
protected static $strTable = 'tl_leaflet_layer';
|
||
|
|
|
||
|
|
}
|