source: extensions/Psli_BingMaps/admin/class/psli_picture.class.php @ 27514

Last change on this file since 27514 was 15448, checked in by psli, 12 years ago
File size: 364 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, "picture");
7        }
8       
9        function create() {
10                return parent::create("picture");
11        }
12       
13        function __construct ($value = 0) {
14                parent::__construct();
15                $this->type = 3;
16        }
17}
18?>
Note: See TracBrowser for help on using the repository browser.