Files
contao-leaflet-maps/src/Netzmacht/Contao/Leaflet/Model/IconModel.php

34 lines
729 B
PHP
Raw Normal View History

2015-01-06 21:30:57 +01:00
<?php
/**
2016-10-11 10:40:15 +02:00
* @package contao-leaflet-maps
2015-01-06 21:30:57 +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-06 21:30:57 +01:00
* @license LGPL 3.0
* @filesource
*
*/
namespace Netzmacht\Contao\Leaflet\Model;
/**
2015-01-12 19:03:29 +01:00
* IconModel class for the tl_leaflet_icon table.
*
2015-01-06 21:30:57 +01:00
* @property mixed|null iconImage
* @property mixed|null iconAnchor
* @property mixed|null popupAnchor
* @property mixed|null iconRetinaImage
2015-01-07 09:32:14 +01:00
* @property mixed|null shadowAnchor
* @property mixed|null shadowRetinaImage
* @property mixed|null shadowImage
2015-01-06 21:30:57 +01:00
*/
2015-01-09 15:24:34 +01:00
class IconModel extends AbstractActiveModel
2015-01-06 21:30:57 +01:00
{
2015-01-12 19:03:29 +01:00
/**
* Model table.
*
* @var string
*/
2015-01-06 21:30:57 +01:00
protected static $strTable = 'tl_leaflet_icon';
}