2015-01-07 17:59:56 +01:00
|
|
|
<?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\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';
|
|
|
|
|
}
|