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

28 lines
590 B
PHP
Raw Normal View History

2015-01-06 21:30:57 +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;
/**
* @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
*/
class IconModel extends \Model
{
protected static $strTable = 'tl_leaflet_icon';
}