Home
last modified time | relevance | path

Searched refs:prefix (Results 51 – 75 of 458) sorted by last modified time

12345678910>>...19

/plugin/oauth/vendor/composer/
H A DClassLoader.php175 * Registers a set of PSR-0 directories for a given prefix, either
176 * appending or prepending to the ones previously set for this prefix.
178 * @param string $prefix The prefix
184 public function add($prefix, $paths, $prepend = false) argument
186 if (!$prefix) {
202 $first = $prefix[0];
203 if (!isset($this->prefixesPsr0[$first][$prefix])) {
204 $this->prefixesPsr0[$first][$prefix] = (array) $paths;
209 $this->prefixesPsr0[$first][$prefix]
233 addPsr4($prefix, $paths, $prepend = false) global() argument
280 set($prefix, $paths) global() argument
300 setPsr4($prefix, $paths) global() argument
[all...]
/plugin/upgrade/vendor/composer/
H A DClassLoader.php179 * Registers a set of PSR-0 directories for a given prefix, either
180 * appending or prepending to the ones previously set for this prefix.
182 * @param string $prefix The prefix
188 public function add($prefix, $paths, $prepend = false) argument
190 if (!$prefix) {
206 $first = $prefix[0];
207 if (!isset($this->prefixesPsr0[$first][$prefix])) {
208 $this->prefixesPsr0[$first][$prefix] = (array) $paths;
213 $this->prefixesPsr0[$first][$prefix]
237 addPsr4($prefix, $paths, $prepend = false) global() argument
284 set($prefix, $paths) global() argument
304 setPsr4($prefix, $paths) global() argument
[all...]
/plugin/upgrade/vendor/splitbrain/php-archive/src/
H A DTar.php135 * Alternatively a fixed string prefix may be passed in $strip. If the filename matches this prefix,
136 * the prefix will be stripped. It is recommended to give prefixes with a trailing slash.
148 * @param int|string $strip either the number of path components or a fixed prefix to strip
533 $prefix = '';
547 $prefix = $dir;
560 $data_last = pack("a1a100a6a2a32a32a8a8a155a12", $typeflag, '', 'ustar', '', '', '', '', '', $prefix, "");
625 if (trim($header['prefix'])) {
626 $return['filename'] = trim($header['prefix']).'/'.$return['filename'];
/plugin/upgrade/vendor/splitbrain/php-cli/src/
H A DBase.php24 /** @var array PSR-3 compatible loglevels and their prefix, color, output channel */
228 /** @var string $prefix */
231 list($prefix, $color, $channel) = $this->loglevel[$level];
232 if (!$this->colors->isEnabled()) $prefix = '';
235 $this->colors->ptln($prefix . $message, $color, $channel);
/plugin/smtp/
H A Dloader.php19 foreach($namespaces as $prefix => $base_dir) {
21 $len = strlen($prefix);
22 if (strncmp($prefix, $class, $len) !== 0) {
/plugin/statistics/inc/
H A DStatisticsLogger.class.php71 $sql = "REPLACE INTO " . $this->hlp->prefix . "lastseen
100 $sql = "INSERT DELAYED INTO " . $this->hlp->prefix . "groups
189 $sql = "INSERT INTO " . $this->hlp->prefix . "search
200 $sql = "INSERT DELAYED INTO " . $this->hlp->prefix . "searchwords
224 $sql = "INSERT DELAYED INTO " . $this->hlp->prefix . "session
243 FROM " . $this->hlp->prefix . "iplocation
260 $sql = "REPLACE INTO " . $this->hlp->prefix . "iplocation
283 $sql = "INSERT DELAYED INTO " . $this->hlp->prefix . "outlinks
342 $sql = "INSERT DELAYED INTO " . $this->hlp->prefix . "access
368 $sql = "INSERT DELAYED IGNORE INTO " . $this->hlp->prefix
[all...]
H A DStatisticsQuery.class.php17 FROM " . $this->hlp->prefix . "access as A
35 FROM " . $this->hlp->prefix . "access as A
48 FROM " . $this->hlp->prefix . "session as A
56 FROM " . $this->hlp->prefix . "session as A
70 FROM " . $this->hlp->prefix . "session as A
77 FROM ".$this->hlp->prefix."access as A
86 FROM " . $this->hlp->prefix . "session as A
95 FROM " . $this->hlp->prefix . "logins as A
103 FROM " . $this->hlp->prefix . "logins as A
111 FROM ". $this->hlp->prefix
[all...]
/plugin/statistics/
H A Dhelper.php12 public $prefix; variable in helper_plugin_statistics
21 $this->prefix = $this->getConf('db_prefix');
43 $this->prefix = $this->getConf('db_prefix');
57 $this->prefix = $this->getConf('db_prefix');
H A Daction.php178 $sql = "SELECT `info` FROM " . $hlp->prefix . "history WHERE `dt` = DATE(NOW())";
/plugin/approve/lang/en/
H A Dassignments_intro.txt10 Groups can be assigned as approvers with @ prefix.
/plugin/odt/ODT/
H A DODTImport.php254 $prefix = NULL;
263 $prefix = '0';
285 if ( isset($prefix) ) {
286 $style->setPropertyForLevel($level, 'num-prefix', $prefix);
/plugin/openid/Auth/OpenID/
H A DMessage.php525 list($prefix, $rest) = $parts;
527 $prefix = null;
530 if ($prefix != 'openid') {
H A DPredisStore.php40 protected $prefix; variable in Auth_OpenID_PredisStore
46 * @param string $prefix Prefix for all keys stored to the Redis
48 function __construct(\Predis\Client $redis, $prefix = '') argument
50 $this->prefix = $prefix;
177 return $this->prefix .
187 return $this->prefix .
197 return $this->prefix .
/plugin/openid/Auth/
H A DOpenID.php235 * @param string $prefix
238 static function addPrefix($values, $prefix) argument
242 $new_values[] = $prefix . $s;
/plugin/openid/Auth/Yadis/
H A DXML.php39 foreach ($namespace_map as $prefix => $uri) {
40 if (!$this->registerNamespace($prefix, $uri)) {
52 * @param string $prefix The namespace prefix to appear in XML tag
61 function registerNamespace($prefix, $uri) argument
165 function registerNamespace($prefix, $uri) argument
167 return xpath_register_ns($this->xpath, $prefix, $uri);
274 function registerNamespace($prefix, $uri) argument
276 return $this->xpath->registerNamespace($prefix, $uri);
/plugin/openid/
H A DMakefile31 $(GIT) checkout-index -a -f --prefix=$(STAGE)/ ; \
/plugin/prosemirror/parser/
H A DListNode.php16 protected $prefix; variable in dokuwiki\\plugin\\prosemirror\\parser\\ListNode
29 $this->prefix = $data['type'] == 'bullet_list' ? ' *' : ' -';
42 $liText .= $this->prefix;
H A DRSSNode.php24 $prefix = '{{rss>';
55 return $prefix . $url . $paramString . $postfix;
H A DImageNode.php109 $prefix = '' argument
111 $node->attr($prefix . 'src', ml($src));
112 $node->attr($prefix . 'title', $title);
127 $node->attr($prefix . 'class', $class);
128 $node->attr($prefix . 'align', $align);
129 $node->attr($prefix . 'width', $width);
130 $node->attr($prefix . 'height', $height);
131 $node->attr($prefix . 'id', $src);
132 $node->attr($prefix . 'cache', $cache);
133 $node->attr($prefix
[all...]
H A DLinkNode.php52 $prefix = $this->textNode->getPrefixSyntax();
72 return $prefix . '[[' . $inner . $title . ']]' . $postfix;
H A DTableCellNode.php40 $prefix = '|';
42 $prefix = '^';
49 return $prefix . $paddingLeft . trim($doc) . $paddingRight;
H A DTextNode.php114 $prefix = $this->getPrefixSyntax();
117 return $prefix . $inner . $postfix;
/plugin/barcodes/vendor/composer/
H A DClassLoader.php190 if (!$prefix) {
206 $first = $prefix[0];
239 if (!$prefix) {
254 $length = strlen($prefix);
258 $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
284 public function set($prefix, $paths) argument
286 if (!$prefix) {
289 $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
306 if (!$prefix) {
309 $length = strlen($prefix);
[all …]
/plugin/authdrupal8/
H A DREADME.md41 * The database prefix used for your drupal tables (including the underscore e.g. ```myprefix_```)
/plugin/edittable/lib/
H A Dhandsontable.full.js10417 var prefix = '[' + func + '("]';
12347 prefix,
12367 prefix = '-0';
12369 prefix = '0';
12374 prefix += '.';
12380 str = prefix + endStr;
12717 prefix,
12743 prefix = format.slice(1, end);
12746 prefix = '';
12949 return prefix +
[all …]

12345678910>>...19