/plugin/quickstats/scripts/php-inet6_1.0.2/ |
H A D | inet6.php | 39 * @param string $addr A valid IPv6 address 42 function inet6_expand($addr) argument 45 if (strpos($addr, '::') !== false) { 46 $part = explode('::', $addr); 55 $part = explode(":", $addr); 77 * @param string $addr A valid IPv6 address 80 function inet6_compress($addr) argument 83 $result = inet_ntop(inet_pton($addr)); 116 * @param string $addr A valid IPv6 address 120 function inet6_to_range($addr, argument 150 inet6_to_int64($addr) global() argument [all...] |
/plugin/dlcount/ |
H A D | action.php | 173 $addr = $_SERVER['HTTP_X_FORWARDED_FOR']; 174 if (!empty($addr) && $this->isValidIP($addr)) return $addr; 175 $addr = $_SERVER['HTTP_CLIENT_IP']; 176 if (!empty($addr) && $this->isValidIP($addr)) return $addr; 177 $addr = $_SERVER['REMOTE_ADDR']; 178 if (!empty($addr) && $this->isValidIP($addr)) return $addr;
|
/plugin/swiftmail/ |
H A D | action.php | 89 $addr = $matches[2]; 91 $addr = $part; 95 if(empty($addr)) continue; 99 $from =& new Swift_Address($addr,$text); 104 $reci->add($addr,$text,'to'); 106 $reci->add($addr,$text,$hdr);
|
/plugin/swiftmail/Swift/Plugin/ |
H A D | MailSend.php | 117 foreach ($recipients->getTo() as $addr) 119 if ($this->isWindows()) $to[] = substr($addr->build(true), 1, -1); 120 else $to[] = $addr->build(); 129 foreach ($recipients->getBcc() as $addr) $bcc[] = $addr->build();
|
/plugin/schedule/syntax/ |
H A D | display.php | 87 list ($insee, $lat, $lon, $addr) = explode ("|", $line); 98 ($addr ? 99 … preg_replace ('%\\\\\\\\%', "<br/>", preg_replace ('%~[bB][rR]~%', "<br/>", $addr)) : 103 (($addr && $lat && $lon) ?
|
/plugin/badbehaviour/bad-behavior/ |
H A D | functions.inc.php | 37 function match_cidr($addr, $cidr) { argument 42 if (match_cidr($addr, $cidrlet)) { 51 $output = ((ip2long($addr) & $mask) == (ip2long($ip) & $mask));
|
/plugin/smtp/classes/ |
H A D | Message.php | 53 foreach($addresses as $addr) { 55 if(preg_match('#(.*?)<(.*?)>#', $addr, $matches)) { 58 $rcpt[] = trim($addr);
|
/plugin/quickstats/GEOIP/ |
H A D | geoip.inc | 1561 $addr = $rec[0]["ipv6"]; 1562 if (!$addr || $addr == $name) { 1565 return geoip_country_id_by_addr_v6($gi, $addr); 1570 $addr = gethostbyname($name); 1571 if (!$addr || $addr == $name) { 1574 return geoip_country_id_by_addr($gi, $addr); 1613 function geoip_country_id_by_addr_v6($gi, $addr) 1615 $ipnum = inet_pton($addr); [all...] |
H A D | geoipcity.inc | 146 function GeoIP_record_by_addr_v6($gi, $addr) 148 if ($addr == null) { 151 $ipnum = inet_pton($addr); 164 function GeoIP_record_by_addr($gi, $addr) 166 if ($addr == null) { 169 $ipnum = ip2long($addr);
|
/plugin/ipgroup/ |
H A D | action.php | 73 $addr = inet_pton($ipaddr); 79 $len = 8*strlen($addr); 97 return ($addr & $mask);
|
/plugin/vcard/ |
H A D | syntax.php | 213 $addr = array(); 216 $addr[] = $this->_tagclass('street-address', $html); 231 $addr[] = join(' ', $loc); 236 $addr[] = $this->_tagclass('country-name', $html); 239 if (!empty($addr)) { 240 $folded .= ' <b>'.$this->getLang('address').'</b> '. join(', ', $addr);
|
/plugin/publish/action/ |
H A D | banner.php | 90 $addr = $this->getConf('apr_mail_receiver'); 91 if(!mail_isvalid($addr)) { 92 msg(sprintf($this->getLang('mail_invalid'),htmlspecialchars($addr)),-1);
|
/plugin/tplmod/ |
H A D | action.php | 219 $addr = trim($ips[$i]);
220 if($remote_addr == $addr) {
253 $addr = trim($ips[$i]);
254 if($remote_addr == $addr) {
288 $addr = trim($ips[$i]);
289 if($remote_addr == $addr) {
|
/plugin/schedule/lib/ |
H A D | scheduleCitiesMap.js | 203 var addr = scheduleSelectedCity.find ('span.addresse').html ().replace (/<br>/gi, '~br~'); 208 line.push (addr); 574 var addr = input.val (); 575 var match = addr.match (locationFormatRE); 577 addr = match [3]; 584 input.val (addr); 585 scheduleSelectedCity.find ('span.addresse').html (addr.replace (/~br~/gi, '<br/>'));
|
/plugin/davcard/ |
H A D | helper.php | 644 $addr = array(); 674 … $addr[] = array('type' => strtolower((string)$adr['TYPE']), 'address' => $adr->getParts()); 676 $addr[] = array('address' => $adr->getParts()); 727 'addr' => $addr, 853 $addr = $this->getAddressbookIdForPage($id); 856 if($addr === false)
|
/plugin/schedule/ |
H A D | schedule.class.php | 25 var $addr; // event place addresse variable in schedule
|
/plugin/markdownextra/lib/meltdown/js/lib/ |
H A D | js-markdown-extra.js | 1484 Markdown_Parser.prototype.encodeEmailAddress = function(addr) { argument 1532 addr = "mailto:" + addr; 1535 for(i = 0; i < addr.length; i++) { 1536 chars.push(addr.charAt(i)); 1538 var seed = Math.floor(Math.abs(_crc32(addr) / addr.length)); // # Deterministic seed. 1554 addr = chars.join(''); 1556 addr = "<a href=\"" + addr + "\">" + text + "</a>"; 1558 return addr;
|
/plugin/markdownextra/ |
H A D | markdown.php | 1504 function encodeEmailAddress($addr) { argument 1520 $addr = "mailto:" . $addr; 1521 $chars = preg_split('/(?<!^)(?!$)/', $addr); 1522 $seed = (int)abs(crc32($addr) / strlen($addr)); # Deterministic seed. 1537 $addr = implode('', $chars); 1539 $addr = "<a href=\"$addr\">$text</a>"; 1541 return $addr;
|
/plugin/database2/ |
H A D | media.php | 116 $ioIndex, $user, $addr ) = $source; 118 if ( $addr !== $_SERVER['REMOTE_ADDR'] )
|
/plugin/webdavclient/ |
H A D | admin.php | 117 foreach($addressbooks as $addr) 119 $idx = intval($addr);
|
/plugin/swiftmail/Swift/Message/ |
H A D | Headers.php | 439 $addr = substr($lines[$i], $s); 440 $lines[$i] = "\"" . substr($lines[$i], 0, $s) . "\"" . $addr;
|
/plugin/wysiwyg/fckeditor/editor/_source/internals/ |
H A D | fckdomtools.js | 595 GetNodeFromAddress : function( doc, addr, normalized ) argument 598 for ( var i = 0 ; i < addr.length ; i++ ) 600 var target = addr[i] ;
|
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/ |
H A D | QRcode.php | 707 $addr = $this->getNextPosition(); 708 $this->setFrameAt($addr, 0x02 | (($bit & $code) != 0)); 715 $addr = $this->getNextPosition(); 716 $this->setFrameAt($addr, 0x02);
|
/plugin/dirtylittlehelper/mermaid/editor/docs/ |
H A D | 42.42.js.map | 1 …addr@',\n 'addr',\n 'fold@',\n 'free@',\n 'fix@',\n 'fix',\n …
|
/plugin/qrcode2/ |
H A D | phpqrcode.php | 2998 $addr = $filler->next(); 2999 $filler->setFrameAt($addr, 0x02 | (($bit & $code) != 0)); 3011 $addr = $filler->next(); 3012 $filler->setFrameAt($addr, 0x02);
|