Lines Matching refs:text
63 $text=false;
65 $text="\n<div id='yourip' class='$type'>";
67 $text .= $this->getLang('you_use_v6'); // "You've got IPv6"
68 $text .= "<br/> ";
69 $text .= sprintf( $this->getLang('ipv6_from'), $ip); // "IPv6 connection from $ip"
73 $text .= $this->getLang('you_use_v4'); // "You use old fashioned IPv4"
74 $text .= "<br/>";
75 $text .= sprintf( $this->getLang('ipv4_from'), $ip); // "IPv4 connection from $ip"
77 $text .="</div>\n";
78 $renderer->doc .= $text;
83 $text="<p id='yourip' class='$type'>";
85 $text .= sprintf( $this->getLang('ipv6_from'), $ip); // "IPv6 connection from $ip"
87 $text .= sprintf( $this->getLang('ipv4_from'), $ip); // "IPv4 connection from $ip"
88 $text .="</p>\n";
89 $renderer->doc .= $text;
94 $text = "<p id='yourip' class='$type'>";
95 $text .= "$ip" ;
96 $text .= "</p>\n" ;
97 $renderer->doc .= $text;