Home
last modified time | relevance | path

Searched refs:domain (Results 26 – 50 of 236) sorted by relevance

12345678910

/plugin/letsencrypt/
H A Dhelper.php113 foreach($domains as $domain) {
114 if($info['expires_in_days'] && in_array($domain, $info['domains'])) {
120 $result[$domain] = $expire;
129 * @param string $domain
132 public function domainFilter($domain) { argument
133 if(empty($domain)) return false;
134 if(strpos($domain, '.') === false) return false; // need at least one dot
135 if($domain == 'localhost.localdomain') return false;
136 …4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/', $domain)) return false;
H A Dcli.php80 foreach($domains as $domain => $expire) {
91 foreach($domains as $domain => $expire) {
93 …$this->colors->ptln(sprintf("%-50s" . $this->helper->getLang('valid'), $domain, $expire), 'green');
95 … $this->colors->ptln(sprintf("%-50s" . $this->helper->getLang('invalid'), $domain), 'red');
97 …$this->colors->ptln(sprintf("%-50s" . $this->helper->getLang('valid'), $domain, $expire), 'yellow'…
/plugin/authucenter/lib/uc_client/model/
H A Ddomain.php26 function add_domain($domain, $ip) { argument
27 if($domain) {
28 $this->db->query("INSERT INTO ".UC_DBTABLEPRE."domains SET domain='$domain', ip='$ip'");
50 function update_domain($domain, $ip, $id) { argument
51 $this->db->query("UPDATE ".UC_DBTABLEPRE."domains SET domain='$domain', ip='$ip' WHERE id='$id'");
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Sheets/
H A DCandlestickChartSpec.php45 public function setDomain(CandlestickDomain $domain) argument
47 $this->domain = $domain;
54 return $this->domain;
H A DPieChartSpec.php39 public function setDomain(ChartData $domain) argument
41 $this->domain = $domain;
48 return $this->domain;
H A DWaterfallChartSpec.php61 public function setDomain(WaterfallChartDomain $domain) argument
63 $this->domain = $domain;
70 return $this->domain;
H A DBubbleChartSpec.php170 public function setDomain(ChartData $domain) argument
172 $this->domain = $domain;
179 return $this->domain;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/
H A DDatasetAccess.php27 public $domain; variable in Google\\Service\\Bigquery\\DatasetAccess
70 public function setDomain($domain) argument
72 $this->domain = $domain;
79 return $this->domain;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Directory/
H A DUserOrganization.php41 public $domain; variable in Google\\Service\\Directory\\UserOrganization
130 public function setDomain($domain) argument
132 $this->domain = $domain;
139 return $this->domain;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Storage/
H A DBucketAccessControl.php29 public $domain; variable in Google\\Service\\Storage\\BucketAccessControl
82 public function setDomain($domain) argument
84 $this->domain = $domain;
91 return $this->domain;
H A DObjectAccessControl.php29 public $domain; variable in Google\\Service\\Storage\\ObjectAccessControl
90 public function setDomain($domain) argument
92 $this->domain = $domain;
99 return $this->domain;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DriveActivity/
H A DOwner.php34 public function setDomain(Domain $domain) argument
36 $this->domain = $domain;
43 return $this->domain;
H A DPermission.php70 public function setDomain(Domain $domain) argument
72 $this->domain = $domain;
79 return $this->domain;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Cloudchannel/
H A DGoogleCloudChannelV1Customer.php43 public $domain; variable in Google\\Service\\Cloudchannel\\GoogleCloudChannelV1Customer
138 public function setDomain($domain) argument
140 $this->domain = $domain;
147 return $this->domain;
/plugin/favoris/
H A Dfavoris.js16 function setCookie(name, value, expires, path, domain, secure) { argument
20 ((domain) ? "; domain=" + domain : "") +
49 function deleteCookie(name, path, domain) { argument
53 ((domain) ? "; domain=" + domain : "") +
/plugin/quickstats/GEOIP/vendor/geoip2/geoip2/src/Model/
H A DDomain.php8 * @property-read string|null $domain The second level domain associated with the
16 protected $domain; variable in GeoIp2\\Model\\Domain
28 $this->domain = $this->get('domain');
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Drive/
H A DPermission.php38 public $domain; variable in Google\\Service\\Drive\\Permission
125 public function setDomain($domain) argument
127 $this->domain = $domain;
134 return $this->domain;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PeopleService/
H A DOrganization.php37 public $domain; variable in Google\\Service\\PeopleService\\Organization
126 public function setDomain($domain) argument
128 $this->domain = $domain;
135 return $this->domain;
/plugin/ckgedit/scripts/
H A Dsetsamesite.php6 …function setcookieSameSite($name, $value, $expire=0, $path ='/', $domain="", $httponly="HttpOnly",… argument
9 … setcookie($name, $value, $expire, "$path; samesite=$samesite", $domain, $secure, $httponly);
15 'domain' => $domain,
/plugin/authimap/
H A Dauth.php63 $domain = $this->getConf('domain');
68 $login = "$user@$domain";
98 $domain = $this->getConf('domain');
102 'mail' => "$user@$domain",
/plugin/authgooglesheets/vendor/symfony/polyfill-intl-idn/
H A Dbootstrap80.php121domain, ?int $flags = IDNA_DEFAULT, ?int $variant = INTL_IDNA_VARIANT_UTS46, &$idna_info = null): … argument
124domain, ?int $flags = IDNA_DEFAULT, ?int $variant = INTL_IDNA_VARIANT_UTS46, &$idna_info = null): … argument
/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DCookie.php49 if (isset($cookieArray['domain'])) {
50 $cookie->setDomain($cookieArray['domain']);
103 * The domain the cookie is visible to. Defaults to the current browsing context's document's URL domain if omitted.
105 * @param string $domain
107 public function setDomain($domain) argument
109 if (mb_strpos($domain, ':') !== false) {
110 throw new InvalidArgumentException(sprintf('Cookie domain "%s" should not contain a port', $domain));
113 $this->offsetSet('domain',
[all...]
/plugin/fckg/fckeditor/editor/filemanager/browser/default/js/
H A Dcommon.js28 var d = document.domain ;
35 var test = window.top.opener.document.domain ;
49 document.domain = d ;
/plugin/shorty/
H A Dhelper.php84 function getBitlyURL($pageID, $domain) { argument
86 $url = $this->readShortUrl($pageID, $domain);
94 $uri .= "&domain=" . $domain;
104 $this->writeShortUrl($pageID, $url, $domain);
/plugin/authgoogle/
H A Dauth.php196 foreach ($domains as $domain) {
197 $domain = trim($domain);
199 if ($domain == '*') return true;
201 if ($email == $domain) return true;
203 if (preg_match("/^\\*@([^@ ]+)/is", $domain, $m)) {

12345678910