Home
last modified time | relevance | path

Searched refs:user (Results 1 – 25 of 1528) sorted by last modified time

12345678910>>...62

/plugin/pagelist/
H A Dstyle.css
H A DCOPYING110 these conditions, and telling the user how to view a copy of this
/plugin/pagequery/
H A Dreadme.md31 * Listing all pages created by a certain user
/plugin/twofactoremail/
H A DLICENSE109 these conditions, and telling the user how to view a copy of this
/plugin/twofactor/
H A Dadmin.php10 * Allows to reset a user's twofactor data
16 /** @var int index of first user to be displayed */
82 foreach ($users as $user => $userinfo) {
83 $form = $this->addTableUser($form, $user, $userinfo);
127 $form->addTextInput('filter[user]');
148 * @param $user
152 protected function addTableUser(Form $form, $user, $userinfo) argument
156 $form->addHTML(hsc($user));
165 $form->addButton('reset[' . $user . ']', $this->getLang('reset'))
225 * Apply the given filters and return user detail
[all...]
H A DLICENSE109 these conditions, and telling the user how to view a copy of this
H A DManager.php32 protected $user; variable in dokuwiki\\plugin\\twofactor\\Manager
123 * Convenience method to get current user
129 if ($this->user === null) {
131 $this->user = $INPUT->server->str('REMOTE_USER');
134 if (!$this->user) {
135 throw new \RuntimeException('2fa user specifics used before user available');
137 return $this->user;
141 * Set the current user
143 * This is only needed when running 2fa actions for a non-logged-in user (
145 setUser($user) global() argument
[all...]
H A DProvider.php46 * Initializes the provider for the given user
47 * @param string $user Current user
49 public function init($user) argument
51 $this->settings = new Settings($this->getProviderID(), $user);
57 * The user data for the current user
58 * @return array (user=>'login', name=>'full name', mail=>'user@example.com', grps=>['group1', 'group2',...])
64 $user
[all...]
H A DSettings.php6 * Encapsulate the attribute plugin for per user/provider storage
19 /** @var string Login of the user these settings are for */
20 protected $user; variable in dokuwiki\\plugin\\twofactor\\Settings
24 * @param string $user User login
26 public function __construct($module, $user) argument
33 $this->user = $user;
52 * Get the user these settings are for
58 return $this->user;
69 return $this->attribute->exists($this->providerID, $key, $this->user);
[all...]
/plugin/twofactor/lang/en/
H A Dadmin.txt3 The table below lists all users that have at least one second factor mechanism set up for use. You can use this tool to reset the user's setup when they lost access to their second factor mechanism.
5 Note: this will reset **all** two-factor mechanisms for the user! Depending on your setup, the user may be required to configure a new two factor mechanism on their next login.
/plugin/twofactor/action/
H A Dresendpwd.php9 * flow and insert our own 2fa form, initialized with the user provided in the reset form. When the user
53 if (!$INPUT->str('login')) return; // no user given yet, don't interrupt
55 $user = $INPUT->str('login');
57 $manager->setUser($user);
60 if (!count($manager->getUserProviders())) return; // no 2fa for this user, don't interrupt
/plugin/attribute/
H A DREADME.md2 Arbitrary attribute definition and storage for user associated data.
H A Dhelper.php139 * @param string $user
152 return $user;
163 if (!$user || ($user !== $_SERVER['REMOTE_USER'] && !$INFO['isadmin'])) {
167 return $user;
296 * @param null $user
306 $user = $this->validateUser($user);
343 $user = $this->validateUser($user);
380 $user = $this->validateUser($user);
416 $user = $this->validateUser($user);
448 * @param string $user
[all …]
H A Dplugin.info.txt6 desc Arbitrary attribute definition and storage for user associated data.
H A DLICENSE109 these conditions, and telling the user how to view a copy of this
H A DREADME3 Arbitrary attribute definition and storage for user associated data.
/plugin/nspages/
H A DLICENSE109 these conditions, and telling the user how to view a copy of this
/plugin/dbquery/
H A DLICENSE109 these conditions, and telling the user how to view a copy of this
H A Dhelper.php37 * @param string|null $user
41 public function getPDO($dsn = null, $user = null, $pass = null) argument
44 $user = $user ?: $this->getConf('user');
46 $conid = md5($dsn . $user . $pass);
56 $this->pdo[$conid] = new PDO($dsn, $user, $pass, $opts);
/plugin/siteexport/
H A DLICENSE109 these conditions, and telling the user how to view a copy of this
H A DREADME.md23 …option will allow to export non-public pages that the currently logged in user has access too as w…
160 notoc | hide the user defined TOC in the document
/plugin/siteexport/inc/
H A Dfunctions.php733 $user = $this->getConf('defaultAuthenticationUser');
735 return empty($user) ? false : array(
736 'user' => $user,
H A Dhttpproxy.php69 … $this->_debug("Using Authentication:", array('user' => $this->user, 'password' => '*****'));
90 list($this->user, $sticky, $this->pass) = auth_getCookie();
93 if ($secondAttempt && !isset($this->user) && $INPUT->str('u') && $INPUT->str('p')) {
96 $this->user = $INPUT->str('u');
103 return isset($this->user);
/plugin/linkback/
H A Dhttp.php67 if ($uri['user'])
68 $this->user = $uri['user'];
101 if ($this->user) {
102 $headers['Authorization'] = 'BASIC ' . base64_encode($this->user . ':' . $this->pass);
H A Dtools.php129 $user = $_SERVER['REMOTE_USER'];
141 ), 'id' => $id, 'user' => $user, 'sum' => str_replace($strip, '', $summary), 'extra' => str_replace($strip, '', $extra));

12345678910>>...62