Home
last modified time | relevance | path

Searched refs:sticky (Results 1 – 25 of 137) sorted by relevance

123456

/plugin/fedauth/classes/
H A Dfa_cookie.class.php73 … list($user, $sticky, $provid, $svcdata, $sectok) = explode('|', $_COOKIE[FEDAUTH_COOKIE], 5);
75 $sticky = (bool) $sticky;
80 …return array('user' => $user, 'sticky' => $sticky, 'prid' => $provid, 'svcd' => $svcdata, 'stok' =…
89 * @param bool $sticky whether or not the cookie will last beyond the session
91 function set($user, $provid, $svcdata, $sticky) { argument
103 . ((int) $sticky) . '|' // FIXME reimplement to timeout value
107 $time = $sticky ? (time() + 60 * 60 * 24 * 365) : 0; //one year
/plugin/evesso/
H A Dauth.php33 * @param bool $sticky
36 function trustExternal($user, $pass, $sticky = false) { argument
78 $ok = $this->processLogin($sticky, $hlp, $service, $servicename, $page, $params);
111 return auth_login($user, $pass, $sticky);
175 … protected function processLogin($sticky, $hlp, $service, $servicename, $page, $params = array()) { argument
182 $this->setUserCookie($uinfo['user'], $sticky, $servicename);
373 * @param bool $sticky
377 …private function setUserCookie($user, $sticky, $servicename, $validityPeriodInSeconds = 31536000) { argument
380 …$cookie = base64_encode($user).'|'.((int) $sticky).'|'.base64_encode('oauth').'|'.base64_encode($s…
382 $time = $sticky ? (time() + $validityPeriodInSeconds) : 0;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/FirebaseCloudMessaging/
H A DAndroidNotification.php96 public $sticky; variable in Google\\Service\\FirebaseCloudMessaging\\AndroidNotification
381 public function setSticky($sticky) argument
383 $this->sticky = $sticky;
390 return $this->sticky;
/plugin/fblogin/files/
H A Dfacebook.class.php50 function trustExternal($user,$pass,$sticky=true ){ argument
53 $sticky ? $sticky = true : $sticky = false; //sanity check
/plugin/authclientcert/
H A Dauth.php39 * @param bool $sticky Cookie should not expire
43 public function trustExternal($user, $pass, $sticky=false) { argument
45 $sticky ? $sticky = true : $sticky = false; //sanity check
/plugin/authdjango/
H A Dauth.php52 function trustExternal($user,$pass,$sticky=false){ argument
57 $sticky ? $sticky = true : $sticky = false; //sanity check
/plugin/authmantis/
H A Dauth.php61 * @param bool $sticky Cookie should not expire
64 public function trustExternal( $user, $pass, $sticky = false ) { argument
82 if( auth_attempt_login( $user, $pass, $sticky ) ) {
/plugin/twofactor/action/
H A Dlogin.php182 * Get sticky value from standard cookie
191 list(, $sticky,) = explode('|', $_COOKIE[DOKU_COOKIE], 3);
192 return (bool)$sticky;
215 protected function verify($code, $providerID, $sticky)
228 $time = $sticky ? (time() + 60 * 60 * 24 * 30 * 3) : 0; //three months on sticky login
208 verify($code, $providerID, $sticky) global() argument
/plugin/authnc/
H A Dauth.php74 * @param bool $sticky Cookie should not expire
78 public function trustExternal($user, $pass, $sticky = false) argument
82 $sticky ? $sticky = true : $sticky = false; //sanity check
/plugin/combo/resources/theme/default/components/css/
H A Dposition.css17 .position-sticky {
18 position: sticky!important
/plugin/authsmf20/
H A Dauth.php99 * @param boolean $sticky Cookie should not expire
102 public function trustExternal($user = '', $pass = '', $sticky = false) argument
106 $sticky ? $sticky = true : $sticky = false;
/plugin/authvk/
H A Daction.php123 $sticky = true;
125 $secret = auth_cookiesalt(!$sticky, true); //bind non-sticky to session
126 auth_setCookie($vk_login, auth_encrypt($vk_pass, $secret), $sticky);
/plugin/authloginapi/
H A Dauth.php31 * @param bool $sticky Cookie should not expire
34 public function trustExternal($user, $pass, $sticky = false) argument
/plugin/combo/ComboStrap/
H A DPosition.php23 const STICKY_ATTRIBUTE = "sticky";
24 const STICKY = "sticky";
25 const STICKY_CLASS = "combo-sticky";
38 $sticky = strtolower($attributes->getValueAndRemove(self::STICKY_ATTRIBUTE));
39 if ($sticky == "true") {
/plugin/vbsso/includes/
H A Dapi.php260 * @param integer $sticky glue
265 function vbsso_auth_setCookie($user, $pass, $sticky, $session_timeout) { argument
274 $cookie = base64_encode($user) . '|' . ((int)$sticky) . '|' . base64_encode($pass);
276 $time = $sticky ? (time() + 60 * 60 * 24 * 365) : (time() + $session_timeout); //one year
/plugin/authfacebook/
H A Dauth.php41 function trustExternal($user,$pass,$sticky=true ){ argument
44 $sticky ? $sticky = true : $sticky = false; //sanity check
/plugin/authucenter/
H A Dauth.php79 * @param bool $sticky Cookie should not expire
82 public function trustExternal($user, $pass, $sticky = false) { argument
84 $sticky ? $sticky = true : $sticky = false; //sanity check
/plugin/shibbolethauth/files/
H A Dshibboleth.class.php112 * @param bool $sticky Cookie should not expire
115 function trustExternal($user,$pass,$sticky=false){ argument
121 $sticky ? $sticky = true : $sticky = false; //sanity check
/plugin/siteexport/inc/
H A Dhttpproxy.php90 list($this->user, $sticky, $this->pass) = auth_getCookie();
99 $secret = auth_cookiesalt(!$sticky, true); //bind non-sticky to session
/plugin/genericsso/
H A Dauth.php60 * @param bool $sticky Cookie should not expire
63 public function trustExternal($user, $pass, $sticky=false) { argument
/plugin/authlemonldap/
H A Dauth.php24 public function trustExternal($user, $pass, $sticky = false) { argument
/plugin/authchained/
H A Dauth.php167 * @param bool $sticky Cookie should not expire
170 public function trustExternal($user, $pass, $sticky = false) { argument
173 if($module[1]->canDo('external') && $module[1]->trustExternal($user, $pass, $sticky)) {
/plugin/autogallery/
H A Dauth.php51 * @param bool $sticky Cookie should not expire
/plugin/prosemirror/
H A Dstyle.less
/plugin/authsaml/
H A Dauth.php71 public function trustExternal($user, $pass, $sticky = false) argument

123456