View | Details | Raw Unified
Collapse All | Expand All

(-)MapTips.widget.php (-2 / +2 lines)
 Lines 41-47    Link Here 
41
*   "http://www.foo.bar/index.php?id=12345".
41
*   "http://www.foo.bar/index.php?id=12345".
42
* - add feature: new LINKTARGET attribute. If not set, "_blank" is used to
42
* - add feature: new LINKTARGET attribute. If not set, "_blank" is used to
43
*   keep compatibility with previous versions. If LINKTARGET attribute is set
43
*   keep compatibility with previous versions. If LINKTARGET attribute is set
44
*   to "", it will be omitted in the according hfres.
44
*   to "", it will be omitted in the according hrefs.
45
*/
45
*/
46
46
47
include_once(dirname(__FILE__)."/../Widget.php");
47
include_once(dirname(__FILE__)."/../Widget.php");
 Lines 251-257    Link Here 
251
        {
251
        {
252
            $this->mszLayer = $this->getVar( 'MAPTIPS_LAYER' );
252
            $this->mszLayer = $this->getVar( 'MAPTIPS_LAYER' );
253
            $this->maszAttributes = explode( ",", $this->getVar( 'MAPTIPS_ATTRIBUTES' ) );
253
            $this->maszAttributes = explode( ",", $this->getVar( 'MAPTIPS_ATTRIBUTES' ) );
254
            $this->mszLinkURL = $this->getVar( 'MAPTIPS_URL' );
254
            $this->mszLinkURL = stripslashes( $this->getVar( 'MAPTIPS_URL' ) );
255
            $this->mszLinkUniqueID = $this->getVar( 'MAPTIPS_UNIQUEID' );
255
            $this->mszLinkUniqueID = $this->getVar( 'MAPTIPS_UNIQUEID' );
256
        }
256
        }
257
        return true;
257
        return true;