1<?php 2 class switchpanel_case_rj45{ 3 public static function getSvg( $oCase, $iX, $iY, $opt ){ 4 $sSvg = ''; 5 if( isset( $oCase[ 'options' ][ 'link' ] ) ){ 6 $sSvg .= '<a xlink:href="'.$oCase[ 'options' ][ 'link' ].'" target="'.( isset( $oCase[ 'options' ][ 'target' ] ) ? $oCase[ 'options' ][ 'target' ] : $opt[ 'target' ] ).'" style="text-decoration:none">'; 7 } 8 if( isset( $oCase[ 'options' ][ 'text' ] ) ){ 9 $sLabel = str_replace( "\\", "\\'", isset( $oCase[ 'label' ] ) ? $oCase[ 'label' ] : '' ); 10 $sTitle = str_replace( "\\", "\\'", isset( $oCase[ 'title' ] ) ? $oCase[ 'title' ] : '' ); 11 $sText = str_replace( "\\", "\\'", $oCase[ 'options' ][ 'text' ] ); 12 $sLink = str_replace( "\\", "\\'", isset( $oCase[ 'options' ][ 'link' ] ) ? $oCase[ 'options' ][ 'link' ] : '' ); 13 if( isset( $oCase[ 'options' ][ 'textlink' ] ) ){ 14 $sLink = str_replace( "\\", "\\'", $oCase[ 'options' ][ 'textlink' ] ); 15 } 16 $sSvg .= '<g onmousemove="window.oSwitchPanel.showToolTip(evt, \''.$sLabel.'\', \''.$sTitle.'\', \''.$sText.'\', \''.$sLink.'\')" onmouseout="window.oSwitchPanel.hideToolTip()">'; 17 } 18 19 // Case color 20 $sColor = $opt[ 'color' ]; 21 if( isset( $oCase[ 'options' ][ 'color' ] ) ){ 22 $sColor = $oCase[ 'options' ][ 'color' ]; 23 } 24 // Left LED color 25 $sLeftLedColor = $opt[ 'leftLedColor' ]; 26 if( isset( $oCase[ 'options' ][ 'leftLedColor' ] ) ){ 27 $sLeftLedColor = $oCase[ 'options' ][ 'leftLedColor' ]; 28 } 29 // Right LED color 30 $sRightLedColor = $opt[ 'rightLedColor' ]; 31 if( isset( $oCase[ 'options' ][ 'rightLedColor' ] ) ){ 32 $sRightLedColor = $oCase[ 'options' ][ 'rightLedColor' ]; 33 } 34 35 // Label background color 36 $sLabelBgColor = $opt[ 'labelBgColor' ]; 37 if( isset( $oCase[ 'options' ][ 'labelBgColor' ] ) ){ 38 $sLabelBgColor = $oCase[ 'options' ][ 'labelBgColor' ]; 39 } 40 41 // Label text color 42 $sLabelTxtColor = $opt[ 'labelTxtColor' ]; 43 if( isset( $oCase[ 'options' ][ 'labelTxtColor' ] ) ){ 44 $sLabelTxtColor = $oCase[ 'options' ][ 'labelTxtColor' ]; 45 } 46 47 // for metallic conductors 48 $sConductors = ''; 49 for( $i=0; $i<8; $i++ ){ 50 $sConductors .= '<rect x="'.( ( $iX + ( $opt[ 'elementWidth' ] / 4 ) ) + ( ( $opt[ 'elementWidth' ] / 15 ) * $i ) ).'" y="'.( $iY + ( $opt[ 'elementHeight' ] / 2 ) ).'" width="'.( $opt[ 'elementWidth' ] / 32 ).'" height="'.( $opt[ 'elementHeight' ] / 15 ).'" fill="#ffff00"/>'; 51 } 52 53 $sSvg .= '<rect x="'.$iX.'" y="'.$iY.'" width="'.$opt[ 'elementWidth' ].'" height="'.$opt[ 'elementHeight' ].'" fill="'.$sColor.'"/> 54 <rect x="'.$iX.'" y="'.$iY.'" width="'.$opt[ 'elementWidth' ].'" height="'.( $opt[ 'elementHeight' ] / 2.65 ).'" stroke-width="'.( $opt[ 'elementWidth' ] / 30 ).'" stroke="#000000" fill="'.$sLabelBgColor.'" ry="1.5" rx="1.5"/> 55 <text x="'.( $iX + ( $opt[ 'elementWidth' ] / 2 ) ).'" y="'.( $iY + ( $opt[ 'elementHeight' ] / 3.6 ) ).'" style="font-weight:bold;" text-anchor="middle" font-family="sans-serif" font-size="'.( $opt[ 'elementWidth' ] * 0.27 ).'" fill="'.$sLabelTxtColor.'">'.$oCase[ 'label' ].'</text> 56 // RIGHT LED 57 <rect x="'.( $iX + ( $opt[ 'elementWidth' ] / 1.625 ) ).'" y="'.( $iY + ( $opt[ 'elementHeight' ] / 1.2 ) ).'" width="'.( $opt[ 'elementWidth' ] / 4 ).'" height="'.( $opt[ 'elementHeight' ] / 10.5 ).'" fill="'.$sRightLedColor.'" stroke-width="'.( $opt[ 'elementWidth' ] / 60 ).'" stroke="#E5E4E2" /> 58 // LEFT LED 59 <rect x="'.( $iX + ( $opt[ 'elementWidth' ] / 8 ) ).'" y="'.( $iY + ( $opt[ 'elementHeight' ] / 1.2 ) ).'" width="'.( $opt[ 'elementWidth' ] / 4 ).'" height="'.( $opt[ 'elementHeight' ] / 10.5 ).'" fill="'.$sLeftLedColor.'" stroke-width="'.( $opt[ 'elementWidth' ] / 60 ).'" stroke="#E5E4E2" /> 60 <polygon points="'.( $iX + ( $opt[ 'elementWidth' ] / 3.5 ) ).','.( $iY + ( $opt[ 'elementHeight' ] / 1.2 ) ).' '.( $iX + ( $opt[ 'elementWidth' ] / 3.5 ) ).','.( $iY + ( $opt[ 'elementHeight' ] / 1.14 ) ).' '.( $iX + ( $opt[ 'elementWidth' ] / 2.7 ) ).','.( $iY + ( $opt[ 'elementHeight' ] / 1.14 ) ).' '.( $iX + ( $opt[ 'elementWidth' ] / 2.7 ) ).','.( $iY + ( $opt[ 'elementHeight' ] / 1.08 ) ).' '.( $iX + ( $opt[ 'elementWidth' ] / 1.61 ) ).','.( $iY + ( $opt[ 'elementHeight' ] / 1.08 ) ).' '.( $iX + ( $opt[ 'elementWidth' ] / 1.61 ) ).','.( $iY + ( $opt[ 'elementHeight' ] / 1.14 ) ).' '.( $iX + ( $opt[ 'elementWidth' ] / 1.4 ) ).','.( $iY + ( $opt[ 'elementHeight' ] / 1.14 ) ).' '.( $iX + ( $opt[ 'elementWidth' ] / 1.4 ) ).','.( $iY + ( $opt[ 'elementHeight' ] / 1.2 ) ).' '.( $iX + ( $opt[ 'elementWidth' ] / 1.157 ) ).','.( $iY + ( $opt[ 'elementHeight' ] / 1.2 ) ).' '.( $iX + ( $opt[ 'elementWidth' ] / 1.157 ) ).','.( $iY + ( $opt[ 'elementHeight' ] / 2 ) ).' '.( $iX + ( $opt[ 'elementWidth' ] / 8 ) ).','.( $iY + ( $opt[ 'elementHeight' ] / 2 ) ).' '.( $iX + ( $opt[ 'elementWidth' ] / 8 ) ).','.( $iY + ( $opt[ 'elementHeight' ] / 1.2 ) ).'" style="fill:000000" stroke-width="'.( $opt[ 'elementWidth' ] / 60 ).'" stroke="#E5E4E2" /> 61 62 '.$sConductors; 63 64 if( isset( $oCase[ 'title' ] ) ){ 65 $sSvg .= '<text x="'.( $iX + ( $opt[ 'elementWidth' ] / 2 ) ).'" y="'.( $iY + ( $opt[ 'elementHeight' ] / 1.25 ) ).'" text-anchor="middle" font-family="sans-serif" font-size="'.( $opt[ 'elementWidth' ] * 0.3 ).'" fill="#ffffff">'.$oCase[ 'title' ].'</text>'; 66 } 67 if( isset( $oCase[ 'options' ][ 'text' ] ) ){ 68 $sSvg .= '</g>'; 69 } 70 if( isset( $oCase[ 'options' ][ 'link' ] ) ){ 71 $sSvg .= '</a>'; 72 } 73 74 return $sSvg; 75 } 76 } 77