Home
last modified time | relevance | path

Searched refs:user (Results 151 – 175 of 1528) sorted by relevance

12345678910>>...62

/plugin/authgooglesheets/vendor/google/apiclient-services/src/AnalyticsReporting/
H A DSearchUserActivityRequest.php103 public function setUser(User $user) argument
105 $this->user = $user;
112 return $this->user;
/plugin/userhomepage/
H A Dstyle.css7 a.uhp_public_png { background:url(images/user.png) no-repeat left; }
9 a.uhp_public_svg { background:url(images/user.svg) no-repeat left; }
10 a.uhp_fa i.fa-user-secret,
11 a.uhp_fa i.fa-user { padding: 0 5px 0 2px !important; }
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DriveActivity/
H A DActor.php92 public function setUser(User $user) argument
94 $this->user = $user;
101 return $this->user;
H A DPermission.php112 public function setUser(User $user) argument
114 $this->user = $user;
121 return $this->user;
/plugin/chat/
H A Dchat.php198 $user = $_COOKIE['chatName'];
199 if (empty($user)) {
200 $user = "guest".date(time(),'hms');
204 $user = $INFO['userinfo']['name'];
227 …'<input type="text" name="user" id="user" maxlength="30" autocomplete="off" value="'.$user.'" clas…
229 '<input type="hidden" name="user" value="'.$user.'" />'
H A Dscript.js286 this.send_sack.encVar('user', user);
294 '&user='+encodeURIComponent(user));
376 msgrec[0] = user;
384 this.send_sack.encVar('user', user);
610 function chatSendMessage(user,msg) { argument
646 user + "</strong> (" +
655 ajax_chat.chatSend(user,msg);
669 function chatClearMessages(user) { argument
672 ajax_chat.chatClear(user);
803 if (form.user && 'text' == form.user.type) {
[all …]
/plugin/translator/
H A Dadmin.php211 foreach ( $user_list as $user => $values ) {
214 …ser[$user]", $lang, tpl_link(wl($ID, array('do' => 'admin', 'page' => 'translator', 'manageUser' =…
263 foreach ( $users as $user => $lang ) {
265 $user = trim($user);
266 if ( empty($user) ) continue;
271 $this->functions->database->execute($user);
279 $this->functions->database->execute($user);
572 function _userCategoryManager($user) { argument
576 $this->functions->database->execute($user);
590 $form->addHidden("manageUser", $user);
[all …]
/plugin/givemeyouremail/
H A Dsyntax.php126 $user = trim($_REQUEST['fullname']);
127 if ($this->_isValidEmailAdress($user)){
128 $givemeyouremail .= $user.';';
140 if(!empty($user)){
141 …derer->doc .= $this->_givemeyouremailResults($givemeyouremail, $options,$email_adress_valid,$user);
/plugin/lms/syntax/
H A Dlms.php16 /** @var string current user */
17 protected $user;
26 $this->user = $INPUT->server->str('REMOTE_USER');
68 if (!$this->user) return true;
71 $seen = $this->hlp->getLesson($INFO['id'], $this->user);
120 $seen = $this->hlp->getLesson($INFO['id'], $this->user);
15 protected $user; global() variable in syntax_plugin_lms_lms
/plugin/bureaucracyau/helper/
H A Dfieldusers.php62 return implode($delimiter, array_map(function ($user) use ($auth, $attribute) {
63 return $auth->getUserData($user)[$attribute];
90 foreach ($users as $user) {
91 if ($auth->getUserData($user) === false) {
/plugin/bureaucracy-au/helper/
H A Dfieldusers.php62 return implode($delimiter, array_map(function ($user) use ($auth, $attribute) {
63 return $auth->getUserData($user)[$attribute];
90 foreach ($users as $user) {
91 if ($auth->getUserData($user) === false) {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Keep/
H A DPermission.php132 public function setUser(User $user) argument
134 $this->user = $user;
141 return $this->user;
/plugin/bureaucracy/helper/
H A Dfieldusers.php62 return implode($delimiter, array_map(function ($user) use ($auth, $attribute) {
63 return $auth->getUserData($user)[$attribute];
90 foreach ($users as $user) {
91 if ($auth->getUserData($user) === false) {
/plugin/imagecarousel/vendor/slick/
H A Dslick.less9 -webkit-user-select: none;
10 -khtml-user-select: none;
11 -moz-user-select: none;
12 -ms-user-select: none;
13 user-select: none;
/plugin/diagramsnet/lib/js/diagramly/
H A DDrawioClient.js25 DrawioClient.prototype.user = null; method in DrawioClient
30 DrawioClient.prototype.setUser = function(user) argument
32 this.user = user;
41 return this.user;
/plugin/adfs/
H A Dauth.php37 public function trustExternal($user, $pass, $sticky = false) argument
142 public function cleanUser($user) argument
145 $user = strtr(
146 $user, array(
155 return utf8_strtolower($user);
157 return $user;
/plugin/bez/mdl/
H A DEntity.php183 foreach ($users as $user) {
184 if (is_array($user)) {
185 $user = $user['user_id'];
188 if (in_array($user, $muted_users)) continue;
190 $email = $this->model->userFactory->get_user_email($user);
191 //do we have user email address
194 $name = $this->model->userFactory->get_user_full_name($user);
198 // $token = $this->model->factory('subscription')->getUserToken($user);
/plugin/fckg/fckeditor/editor/filemanager/connectors/php/
H A Dcheck_acl.php37 * @param string $user Username
41 function auth_aclcheck($id,$user,$groups, $_auth=1){ argument
59 $user = auth_nameencode($user);
70 if($user || count($groups)){
74 if($user) $groups[] = $user;
271 $acl = str_replace('%USER%',$user,$acl); // fall-back, in case client not found
/plugin/authucenter/lib/uc_client/model/
H A Duser.php119 function check_login($username, $password, &$user) { argument
120 $user = $this->get_user_by_username($username);
121 if(empty($user['username'])) {
123 } elseif($user['password'] != md5(md5($password).$user['salt'])) {
126 return $user['uid'];
212 while($user = $this->db->fetch_array($query)) {
213 $arr[] = $user['uid'];
221 while($user = $this->db->fetch_array($query)) {
222 $arr[$user['uid']] = $user['username'];
/plugin/swiftmail/Swift/Authenticator/
H A DPLAIN.php30 public function isAuthenticated($user, $pass, Swift $swift) argument
34 $credentials = base64_encode($user . chr(0) . $user . chr(0) . $pass);
/plugin/cryptsign/
H A Dsign.php18 $user = $_SERVER['REMOTE_USER']; variable
20 $sig = md5($id.$user.trim($text).auth_cookiesalt());
22 echo '{{',$text,' $$',$sig,'--',$user,'$$}}';
/plugin/userimportextended/lang/en/
H A Dintro.txt3 Requires a CSV file of users with at least five columns. The columns must contain, in order: user-i…
6 Except for the user-id, all of the columns may be empty. In that case the users will be created wit…
8 Duplicate user-ids will be ignored.
10 Each successfully imported user will receive an email with their username and password.
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AndroidManagement/
H A DEnrollmentToken.php176 public function setUser(User $user) argument
178 $this->user = $user;
185 return $this->user;
/plugin/authsplit/
H A DREADME19 - a SECONDARY auth plugin that supplies ADDITIONAL user information such as
35 As authsplit has to orchestrate two auth plugins and the user's state in
36 them, it is possible that a user is known to one of the two plugins only or
55 validates both login name and password successfully. If a user is not known
71 tries to obtain the additional user information (real name, email address,
72 groups) from the SECONDARY auth plugin, which means that the user will have to
76 users), authsplit will create a user account there, too, using user
78 most likely not be very useful, the user will not only be notified that an
80 also review his or her user profil
[all...]
/plugin/stale/_test/
H A DbaseTest.php164 private static function runAsAdmin(TestRequest $request = null, $user = 'admin') argument
168 $conf['superuser'] = $user;
169 $conf['remoteuser'] = $user;
172 $request->setServer('REMOTE_USER', $user);
175 $INPUT->server->set('REMOTE_USER', $user);

12345678910>>...62