mirror of
https://github.com/netzmacht/contao-leaflet-maps.git
synced 2025-12-04 13:58:39 +01:00
25 lines
475 B
PHP
25 lines
475 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;
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @property mixed|null iconImage
|
||
|
|
* @property mixed|null iconAnchor
|
||
|
|
* @property mixed|null popupAnchor
|
||
|
|
* @property mixed|null iconRetinaImage
|
||
|
|
*/
|
||
|
|
class IconModel extends \Model
|
||
|
|
{
|
||
|
|
protected static $strTable = 'tl_leaflet_icon';
|
||
|
|
}
|