/dokuwiki/inc/Action/ |
H A D | Draftdel.php | 11 * Delete a draft 24 * Delete an existing draft for the current page and user if any 34 if ($draft->isDraftAvailable() && checkSecurityToken()) { 35 $draft->deleteDraft();
|
H A D | ProfileDelete.php | 12 * Delete a user account 31 if (!$auth->canDo('delUser')) throw new ActionDisabledException();
|
/dokuwiki/lib/plugins/authpdo/conf/ |
H A D | metadata.php | 11 $meta['user'] = array('string', '_caution' => 'danger'); 13 $meta['select-user'] = array('', '_caution' => 'danger'); 14 $meta['check-pass'] = array('', '_caution' => 'danger'); 15 $meta['select-user-groups'] = array('', '_caution' => 'danger'); 16 $meta['select-groups'] = array('', '_caution' => 'danger'); 17 $meta['insert-user'] [all...] |
H A D | default.php | 11 $conf['user'] = ''; 15 * statement to select a single user identified by its login name 17 * input: :user 18 * return: user, name, mail, (clear|hash), [uid], [*] 20 $conf['select-user'] = ''; 25 * input: :user, :clear, :hash, [uid], [*] 28 $conf['check-pass'] = ''; 31 * statement to select a single user identified by its login name 33 * input: :user, [ui [all...] |
/dokuwiki/lib/plugins/usermanager/ |
H A D | cli.php | 22 $options->setHelp( 27 $options->registerCommand('list', 'List users'); 28 $options->registerOption('verbose', 'Show detailed user information', 'v', false, 'list'); 31 $options->registerCommand('add', 'Add an user to auth backend'); 32 $options->registerArgument('login', 'Username', true, 'add'); 33 $options->registerArgument('mail', 'Email address', true, 'add'); 34 $options->registerArgument('name', 'Full name', false, 'add'); 35 $options->registerArgumen [all...] |
H A D | admin.php | 9 * User Manager 13 * This version of the user manager has been modified to only work with 30 protected $filter = []; // user selection filter(s) 31 protected $start = 0; // index of first user to be displayed 32 protected $last = 0; // index of the last user to be displayed 34 protected $edit_user = ''; // set to user selected for editing 38 protected $lastdisabled = false; // set to true if last user is unknown and last button is hence buggy 48 $this->setupLocale(); 51 $this->disabled = $this->lan 377 htmlUserForm($cmd, $user = '', $userdata = array(), $indent = 0) global() argument 862 notifyUser($user, $password, $status_alert = true) global() argument 1192 importUser($user, & $error) global() argument [all...] |
/dokuwiki/conf/ |
H A D | acl.auth.php.dist | 11 # or user names you need to urlencode them (only chars <128, leave 12 # UTF-8 multibyte chars as is) 19 # delete 16
|
H A D | mysql.conf.php.example | 27 $conf['plugin']['authmysql']['user'] = ''; 51 /* Basic SQL statements for user authentication (required) */ 56 * of the user. If the result table is empty or contains more than one 62 * %{user} user name 70 WHERE login='%{user}' 74 * information about one user. The field needed are: 76 * 'name' the user's full name 77 * 'mail' the user's email address 83 * %{user} use [all...] |
/dokuwiki/lib/plugins/acl/ |
H A D | remote.php | 14 * @return array {Scope: ACL}, where ACL = dictionnary {user/group: permissions_int} 27 $apa->initAclConfig(); 28 return $apa->acl; 35 * @param string $user The user or group to apply the ACL to 40 public function addAcl($scope, $user, $level) 51 return $apa->addOrUpdateACL($scope, $user, $level); 58 * @param string $user The user o 67 addAcl($scope, $user, $level) global() argument 89 delAcl($scope, $user) global() argument [all...] |
/dokuwiki/inc/Extension/ |
H A D | AuthPlugin.php | 12 * @author Jan Schumann <js@jschumann-it.com> 35 'logout' => true, // can the user logout again? (eg. not possible with HTTP auth) 42 * able to operate. Set capabilities in $this->cando 48 * Set $this->success to false if checks fail 68 return array_keys($this->cando); 74 * Checks the capabilities set in the $this->cando array and 89 // can at least one of the user's properties be changed? 90 return ($this->cando['modPass'] || 91 $this->cando['modName'] || 92 $this->cand 197 trustExternal($user, $pass, $sticky = false) global() argument 233 checkPass($user, $pass) global() argument 254 getUserData($user, $requireGroups = true) global() argument 279 createUser($user, $pass, $name, $mail, $grps = null) global() argument 295 modifyUser($user, $changes) global() argument 406 cleanUser($user) global() argument 456 useSessionCache($user) global() argument [all...] |
/dokuwiki/lib/plugins/authpdo/ |
H A D | auth.php | 10 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html 33 $this->debugMsg('PDO extension for PHP not found.', -1, __LINE__); 34 $this->success = false; 38 if (!$this->getConf('dsn')) { 39 $this->debugMsg('No DSN specified', -1, __LINE__); 40 $this->success = false; 45 $this->pdo = new PDO( 46 $this->getCon 162 checkPass($user, $pass) global() argument 202 getUserData($user, $requireGroups = true) global() argument 236 createUser($user, $clear, $name, $mail, $grps = null) global() argument 295 modifyUser($user, $changes) global() argument 509 selectUser($user) global() argument 551 deleteUser($user) global() argument [all...] |
/dokuwiki/inc/Subscriptions/ |
H A D | SubscriberManager.php | 24 * This will automatically overwrite any existent subscription for the given user on this 27 * @throws Exception when user or style is empty 31 * @param string $user 37 public function add($id, $user, $style, $data = '') 39 if (!$this->isenabled()) { 43 // delete any existing subscription 44 $this->remove($id, $user); 46 $user = auth_nameencode(trim($user)); 38 add($id, $user, $style, $data = '') global() argument 81 remove($id, $user = null, $style = null, $data = null) global() argument 111 userSubscription($id = '', $user = '') global() argument 164 subscribers($page, $user = null, $style = null, $data = null) global() argument [all...] |
/dokuwiki/vendor/geshi/geshi/ |
H A D | build.xml | 1 <?xml version="1.0" encoding="utf-8"?> 3 <!-- 4 GeSHi - Generic Syntax Highlighter - phing build file. 8 --> 13 <property name="zipfile" value="${phing.project.name}-${version}.zip" /> 14 <property name="gzfile" value="${phing.project.name}-${version}.tar.gz" /> 15 <property name="bz2file" value="${phing.project.name}- [all...] |
/dokuwiki/lib/plugins/authad/adLDAP/classes/ |
H A D | adLDAPUsers.php | 12 * Copyright (c) 2006-2012 Scott Barnett, Richard Hyland 29 * @subpackage User 31 * @copyright (c) 2006-2012 Scott Barnett, Richard Hyland 32 * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1 43 * USER FUNCTIONS 54 $this->adldap = $adldap; 58 * Validate a user's login credentials 60 * @param string $username A user's AD username 61 * @param string $password A user' 171 public function delete($username, $isGUID = false) global() function in adLDAPUsers [all...] |
H A D | adLDAPGroups.php | 12 * Copyright (c) 2006-2012 Scott Barnett, Richard Hyland 31 * @copyright (c) 2006-2012 Scott Barnett, Richard Hyland 32 * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1 54 $this->adldap = $adldap; 67 $parentGroup = $this->ginfo($parent, array("cn")); 74 $childGroup = $this->info($child, array("cn")); 83 $result = @ldap_mod_add($this->adldap->getLdapConnection(), $parentDn, $add); 91 * Add a user t 98 addUser($group, $user, $isGUID = false) global() argument 196 public function delete($group) { global() function in adLDAPGroups 250 removeUser($group, $user, $isGUID = false) global() argument [all...] |
H A D | adLDAPFolders.php | 12 * Copyright (c) 2006-2012 Scott Barnett, Richard Hyland 31 * @copyright (c) 2006-2012 Scott Barnett, Richard Hyland 32 * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1 51 $this->adldap = $adldap; 55 * Delete a distinguished name from Active Directory 58 * @param string $dn The distinguished name to delete 61 public function delete($dn){ function in adLDAPFolders 62 $result = ldap_delete($this->adldap->getLdapConnectio [all...] |
/dokuwiki/bin/ |
H A D | dwpage.php | 29 $options->registerOption( 34 $options->registerOption( 35 'user', 36 'work as this user. defaults to current CLI user', 40 $options->setHelp( 46 $options->registerCommand( 54 $options->registerArgument( 60 $options->registerArgument( 68 $options->registerComman [all...] |
/dokuwiki/lib/plugins/authplain/ |
H A D | auth.php | 13 * @author Jan Schumann <js@schumann-it.com> 17 /** @var array user cache */ 40 $this->success = false; 43 $this->cando['addUser'] = true; 44 $this->cando['delUser'] = true; 45 $this->cando['modLogin'] = true; 46 $this->cando['modPass'] = true; 47 $this->cando['modName'] = true; 48 $this->cando['modMail'] = true; 49 $this->cand 67 checkPass($user, $pass) global() argument 90 getUserData($user, $requireGroups = true) global() argument 108 createUserLine($user, $pass, $name, $mail, $grps) global() argument 137 createUser($user, $pwd, $name, $mail, $grps = null) global() argument 173 modifyUser($user, $changes) global() argument 354 cleanUser($user) global() argument 455 filter($user, $info) global() argument [all...] |
/dokuwiki/inc/ |
H A D | auth.php | 7 * a user by calling auth_login() 51 if ($INPUT->server->str('REMOTE_USER') === '') { 52 $INPUT->server->remove('REMOTE_USER'); 58 foreach ($plugin_controller->getList('auth') as $plugin) { 60 $auth = $plugin_controller->load('auth', $plugin); 66 msg($lang['authtempfail'], -1); 70 if ($auth->success == false) { 71 // degrade to unauthenticated user 207 auth_login($user, $pass, $sticky = false, $silent = false) global() argument 454 auth_ismanager($user = null, $groups = null, $adminonly = false, $recache = false) global() argument 514 auth_isadmin($user = null, $groups = null, $recache = false) global() argument 529 auth_isMember($memberlist, $user, array $groups) global() argument 596 auth_aclcheck($id, $user, $groups) global() argument 831 auth_sendPassword($user, $password) global() argument 1246 auth_setCookie($user, $pass, $sticky) global() argument [all...] |
/dokuwiki/inc/Remote/ |
H A D | ApiCore.php | 15 use dokuwiki\Remote\Response\User; 35 'core.getAPIVersion' => (new ApiCall([$this, 'getAPIVersion'], 'info'))->setPublic(), 38 'core.getWikiTitle' => (new ApiCall([$this, 'getWikiTitle'], 'info'))->setPublic(), 41 'core.login' => (new ApiCall([$this, 'login'], 'user'))->setPublic(), 42 'core.logoff' => new ApiCall([$this, 'logoff'], 'user'), 43 'core.whoAmI' => (new ApiCall([$this, 'whoAmI'], 'user')), 44 'core.aclCheck' => new ApiCall([$this, 'aclCheck'], 'user'), 106 * Returns a Unix timestamp (seconds since 1970-01-0 740 aclCheck($id, $user = null, $groups = null) global() argument 1033 login($user, $pass) global() argument [all...] |
/dokuwiki/inc/Ui/ |
H A D | UserProfile.php | 10 * DokuWiki User Profile Interface 17 * Display the User Profile Form Panel 31 'user' => $_SERVER['REMOTE_USER'], 32 'name' => $INPUT->post->str('fullname', $INFO['userinfo']['name'], true), 33 'mail' => $INPUT->post->str('email', $INFO['userinfo']['mail'], true), 40 echo $this->updateProfileForm($userinfo)->toHTML('UpdateProfile'); 41 echo $this->tokenFor [all...] |
/dokuwiki/vendor/geshi/geshi/src/geshi/ |
H A D | progress.php | 4 * -------- 13 * -- [all...] |
H A D | cobol.php | 4 * ---------- [all...] |
/dokuwiki/lib/exe/ |
H A D | mediamanager.php | 17 if ($INPUT->str('msg1')) msg(hsc($INPUT->str('msg1')), 1); 18 if ($INPUT->str('err')) msg(hsc($INPUT->str('err')), -1); 22 if ($INPUT->str('delete')) { 23 $DEL = cleanID($INPUT->str('delete')); 26 } elseif ($INPUT->st [all...] |
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/ |
H A D | Stream.php | 12 * @license http://www.opensource.org/licenses/mit-license.html MIT License 32 * Rather than re-create the connection we re-use instances if possible 150 } elseif ($orig[strlen($orig) - 1] == '#') { 158 if (isset($this->context)) { 159 $context = stream_context_get_params($this->context); 161 $this->notification = $context['notification']; 165 if (preg_match('/^{[a-z0-9]+}$/i', $host)) { 170 $this->sft [all...] |