| /dokuwiki/inc/Input/ |
| H A D | Input.php | 76 * @param string $name Parameter name 79 public function has($name) argument 81 return isset($this->access[$name]); 91 * @param string $name Parameter name 93 public function remove($name) argument 95 if (isset($this->access[$name])) { 96 unset($this->access[$name]); 99 if (isset($this->post) && isset($_POST[$name])) { 100 unset($_POST[$name]); 102 if (isset($this->get) && isset($_GET[$name])) { [all …]
|
| H A D | Get.php | 21 * @param string $name Parameter name 24 public function set($name, $value) argument 26 parent::set($name, $value); 27 $_REQUEST[$name] = $value;
|
| H A D | Post.php | 21 * @param string $name Parameter name 24 public function set($name, $value) argument 26 parent::set($name, $value); 27 $_REQUEST[$name] = $value;
|
| /dokuwiki/lib/plugins/authpdo/_test/pgsql/ |
| H A D | django.sql | 15 -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: 22 -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: 35 -- Name: auth_group; Type: TABLE; Schema: public; Owner: postgres 40 name character varying(80) NOT NULL field 47 -- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres 61 -- Name: auth_group_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres 68 -- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: postgres 81 -- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres 95 -- Name: auth_group_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres 102 -- Name: auth_permission; Type: TABLE; Schema: public; Owner: postgres [all …]
|
| H A D | django.php | 13 CONCAT_WS(\' \', first_name, last_name) AS name, 20 SELECT G.name AS "group" 26 SELECT id AS gid, name AS "group" 32 …VALUES (:hash, false, :user, SPLIT_PART(:name,\' \',1), SPLIT_PART(:name,\' \',2), :mail, false, t… 46 AND G.name LIKE :group 48 AND CONCAT_WS(\' \', U.first_name, U.last_name) LIKE :name 59 AND G.name LIKE :group 61 AND CONCAT_WS(\' \', U.first_name, U.last_name) LIKE :name 66 SET first_name = SPLIT_PART(:name,\' \',1), 67 last_name = SPLIT_PART(:name,\' \',2), [all …]
|
| /dokuwiki/conf/ |
| H A D | interwiki.conf | 4 # {NAME} this is replaced by the wikiname as given in the document 14 # If no placeholder is defined the urlencoded name is appended to the URL 19 wp https://en.wikipedia.org/wiki/{NAME} 20 wpfr https://fr.wikipedia.org/wiki/{NAME} 21 wpde https://de.wikipedia.org/wiki/{NAME} 22 wpes https://es.wikipedia.org/wiki/{NAME} 23 wppl https://pl.wikipedia.org/wiki/{NAME} 24 wpjp https://ja.wikipedia.org/wiki/{NAME} 25 wpru https://ru.wikipedia.org/wiki/{NAME} 26 wpmeta https://meta.wikipedia.org/wiki/{NAME} [all …]
|
| H A D | mysql.conf.php.example | 13 * gid name 62 * %{user} user name 64 * %{dgroup} default group name 71 AND name='%{dgroup}'"; 76 * 'name' the user's full name 83 * %{user} user name 85 $conf['plugin']['authmysql']['getUserInfo'] = "SELECT pass, CONCAT(firstname,' ',lastname) AS name,… 91 * member of. The plugin accesses the group name as 'group' so an alias 95 * %{user} user name 97 $conf['plugin']['authmysql']['getGroups'] = "SELECT name as `group` [all …]
|
| H A D | license.php | 11 'name' => 'CC0 1.0 Universal', 15 'name' => 'Public Domain', 19 'name' => 'CC Attribution 4.0 International', 23 'name' => 'CC Attribution-Share Alike 4.0 International', 27 'name' => 'GNU Free Documentation License 1.3', 31 'name' => 'CC Attribution-Noncommercial 4.0 International', 35 'name' => 'CC Attribution-Noncommercial-Share Alike 4.0 International',
|
| /dokuwiki/vendor/geshi/geshi/ |
| H A D | build.xml | 2 <project name="GeSHi" default="pack" basedir="."> 11 <property name="version" value="1.0.9.1" /> 12 <property name="stability" value="stable" /> 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}-${version}.tar.bz2" /> 16 <property name="pkgfile" value="geshi-${version}.tgz" /> 17 <property name="fileprefix" value="geshi/" /> 18 <property name="sfproject" value="GeSHi" /> 19 <property name="sffilepath" value="g/ge/geshi/" /> [all …]
|
| /dokuwiki/inc/Form/ |
| H A D | InputElement.php | 28 * @param string $name The name of this form element 31 public function __construct($type, $name, $label = '') argument 33 parent::__construct($type, ['name' => $name]); 34 $this->attr('name', $name); 93 * The element's name could have been given as a simple string ('foo') 100 * @return array name and array key (null if not an array) 104 $name = $this->attr('name'); 105 parse_str("$name=1", $parsed); 107 $name = array_keys($parsed); 108 $name = array_shift($name); [all …]
|
| H A D | Form.php | 17 * @var array name value pairs for hidden values 68 * @param string $name 72 public function setHiddenField($name, $value) argument 74 $this->hidden[$name] = $value; 143 * @param string $name Name of the attribute 148 public function findPositionByAttribute($name, $value, $offset = 0) argument 152 if ($this->elements[$pos]->attr($name) == $value) { 214 * @param string $name 219 public function addTextInput($name, $label = '', $pos = -1) argument 221 return $this->addElement(new InputElement('text', $name, $label), $pos); [all …]
|
| H A D | CheckableElement.php | 16 * @param string $name The name of this form element 19 public function __construct($type, $name, $label) argument 21 parent::__construct($type, $name, $label); 32 [$name, $key] = $this->getInputName(); 35 if (!$INPUT->has($name)) return; 39 $value = $INPUT->str($name); 47 $input = $INPUT->arr($name);
|
| /dokuwiki/lib/plugins/authplain/_test/ |
| H A D | escaping.test.php | 30 $name = $config_cascade['plainauth.users']['default']; 31 copy($name, $name.".orig"); 38 $name = $config_cascade['plainauth.users']['default']; 39 copy($name.".orig", $name); 50 $this->assertEquals("Mediawiki User",$mwuser['name']); 54 $name = ":Colon: User:"; 55 $this->auth->createUser("colonuser", "password", $name, "me@example.com"); 58 $this->assertEquals($name,$user['name']); 62 $name = "\\Slash\\ User\\"; 63 $this->auth->createUser("slashuser", "password", $name, "me@example.com"); [all …]
|
| /dokuwiki/.github/workflows/ |
| H A D | release-build.yml | 5 name: "Release: Tag, Build & Deploy" 14 name: Tag Release 17 - name: Checkout 20 - name: Prepare Environment 24 - name: Check if a tag already exists 31 - name: Create tag 46 name: Build Release 50 - name: Checkout 53 - name: Prepare Environment 57 - name: Build Archives [all …]
|
| H A D | testWindows.yml | 1 name: Windows Unit Tests 15 name: PHP ${{ matrix.php-versions }} 25 - name: Checkout 28 - name: Setup PHP 34 - name: Setup problem matchers 39 - name: Setup PHPUnit 44 - name: Run PHPUnit
|
| H A D | autoFix.yml | 1 name: "Auto-Fix code" 12 - name: Checkout 17 - name: Setup PHP 22 - name: Install tools 27 - name: Setup Cache 33 - name: Run Rector 36 - name: Run PHP CodeSniffer autofixing 40 - name: Create Pull Request
|
| H A D | testLinux.yml | 1 name: Linux Unit Tests 15 name: PHP ${{ matrix.php-versions }} 42 - name: Checkout 45 - name: Setup PHP 52 - name: Setup problem matchers 57 - name: Setup PHPUnit 65 - name: Run PHPUnit
|
| H A D | release-preparation.yml | 6 name: "Release: Preparation " 28 name: Prepare Pull Request 31 - name: Fail if branch is not master 37 - name: Checkout 42 - name: Set git identity 44 git config --global user.name "${{ github.actor }}" 47 - name: Prepare Environment 51 --name "${{ inputs.codename }}" \ 55 - name: Check if a tag of the new release already exists 62 - name: Create merge commit with version info [all …]
|
| /dokuwiki/inc/Debug/ |
| H A D | PropertyDeprecationHelper.php | 36 * List of deprecated properties, in <property name> => <class> format 37 * where <class> is the the name of the class defining the property 48 * @param string $property The name of the property. 49 * @param null $class name of the class defining the property 59 public function __get($name) argument 61 if (isset($this->deprecatedPublicProperties[$name])) { 62 $class = $this->deprecatedPublicProperties[$name]; 63 DebugHelper::dbgDeprecatedProperty($class, $name); 64 return $this->$name; 67 $qualifiedName = get_class() . '::$' . $name; [all …]
|
| /dokuwiki/vendor/splitbrain/lesserphp/ |
| H A D | .phpcs.xml | 4 <exclude name="Generic.ControlStructures.InlineControlStructure.NotAllowed" /> 5 <exclude name="PSR1.Methods.CamelCapsMethodName.NotCamelCaps" /> 6 <exclude name="PSR2.ControlStructures.ControlStructureSpacing.SpaceBeforeCloseBrace" /> 7 <exclude name="PSR2.ControlStructures.ControlStructureSpacing.SpacingAfterOpenBrace" /> 10 <arg name="encoding" value="UTF-8"/> 11 <arg name="extensions" value="php"/>
|
| /dokuwiki/inc/Remote/Response/ |
| H A D | User.php | 10 /** @var string The login name of the user */ 12 /** @var string The full name of the user */ 13 public $name; variable in dokuwiki\\Remote\\Response\\User 25 * @param string $name 29 public function __construct($login = '', $name = '', $mail = '', $groups = []) argument 36 $this->name = $name; 50 $this->name = $this->name ?: $USERINFO['name']; 56 $this->name = $this->name ?: $userData['name'];
|
| /dokuwiki/vendor/splitbrain/lesserphp/src/Utils/ |
| H A D | Asserts.php | 14 public static function assertArgs($value, $expectedArgs, $name = '') argument 25 if ($name) { 26 $name = $name . ': '; 29 throw new Exception("{$name}expecting $expectedArgs arguments, got $numValues"); 41 public static function assertMinArgs($value, $expectedMinArgs, $name = '') argument 49 if ($name) { 50 $name = $name . ': '; 53 … throw new Exception("$name expecting at least $expectedMinArgs arguments, got $numValues");
|
| /dokuwiki/inc/parser/ |
| H A D | metadata.php | 438 * @param string $link The link name 450 * @param string $name name for the link 452 public function locallink($hash, $name = null) argument 454 if (is_array($name)) { 455 $this->_firstimage($name['src']); 456 if ($name['type'] == 'internalmedia') { 457 $this->_recordMediaUsage($name['src']); 466 * @param string|array|null $name name for the link, array for media file 468 public function internallink($id, $name = null) argument 472 if (is_array($name)) { [all …]
|
| /dokuwiki/vendor/simplepie/simplepie/src/Cache/ |
| H A D | File.php | 22 * * Neither the name of the SimplePie Team nor the names of its contributors may be used 83 protected $name; variable in SimplePie\\Cache\\File 89 * @param string $name Unique ID for the cache 92 public function __construct($location, $name, $type) argument 95 $this->filename = $name; 97 $this->name = "$this->location/$this->filename.$this->extension"; 108 …if (file_exists($this->name) && is_writable($this->name) || file_exists($this->location) && is_wri… 114 return (bool) file_put_contents($this->name, $data); 126 if (file_exists($this->name) && is_readable($this->name)) { 127 return unserialize(file_get_contents($this->name)); [all …]
|
| /dokuwiki/inc/Extension/ |
| H A D | PluginInterface.php | 21 * base - the plugin's base name (eg. the directory it needs to be installed in) 25 * name - Name of the plugin 32 * The type of the plugin inferred from the class name 39 * The name of the plugin inferred from the class name 41 * @return string plugin name 46 * The component part of the plugin inferred from the class name 48 * @return string component name 112 * @param string $name name of plugin to load 116 public function loadHelper($name, $msg = true); argument 123 * @param string $name [all …]
|