mirror of
https://github.com/netzmacht/contao-leaflet-maps.git
synced 2025-11-29 11:33:46 +01:00
30 lines
510 B
PHP
30 lines
510 B
PHP
<?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;
|
|
|
|
/**
|
|
* Class PopupModel.
|
|
*
|
|
* @property mixed|null offset
|
|
*
|
|
* @package Netzmacht\Contao\Leaflet\Model
|
|
*/
|
|
class PopupModel extends AbstractActiveModel
|
|
{
|
|
/**
|
|
* The table name.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected static $strTable = 'tl_leaflet_popup';
|
|
}
|