Files
contao-leaflet-maps/src/Model/VectorModel.php

28 lines
520 B
PHP
Raw Normal View History

2015-01-07 17:59:56 +01:00
<?php
/**
2016-10-11 10:40:15 +02:00
* @package contao-leaflet-maps
2015-01-07 17:59:56 +01:00
* @author David Molineus <david.molineus@netzmacht.de>
2016-10-11 10:40:15 +02:00
* @copyright 2014-2016 netzmacht David Molineus
2015-01-07 17:59:56 +01:00
* @license LGPL 3.0
* @filesource
*
*/
namespace Netzmacht\Contao\Leaflet\Model;
2015-01-12 19:03:29 +01:00
/**
* Class VectorModel for the tl_leaflet_vector table.
*
* @package Netzmacht\Contao\Leaflet\Model
*/
2015-01-12 09:32:21 +01:00
class VectorModel extends AbstractActiveModel
2015-01-07 17:59:56 +01:00
{
/**
* Model table.
*
* @var string
*/
protected static $strTable = 'tl_leaflet_vector';
}