source: extensions/Psli_BingMaps/admin/class/psli_pin.class.php @ 15448

Last change on this file since 15448 was 15448, checked in by psli, 12 years ago
File size: 357 bytes
Line 
1<?php
2include_once(PSLI_BINGMAPS_CLASS_ENTITY_PHP);
3class Psli_Pin extends Psli_Entity {
4       
5        function generatePinList($template, $block) {
6                parent::generateList($template, $block, "pin");
7        }
8               
9        function create() {
10                return parent::create("pin");
11        }
12       
13        function __construct ($value = 0) {
14                parent::__construct();
15                $this->type = 1;
16        }
17}
18?>
Note: See TracBrowser for help on using the repository browser.