Home
last modified time | relevance | path

Searched refs:prefix (Results 351 – 375 of 458) sorted by last modified time

1...<<111213141516171819

/plugin/purplenumbers/
H A Drenderer.php180 * $noprefix: lets you get the current ID without its prefix
198 // build prefix
200 $prefix = '';
204 $prefix = $ID.'.';
207 $prefix = 'ID';
214 $out = $prefix.$nodeID.$itemNo;
217 $out = $prefix.$this->PNitemCount;
/plugin/authfacebook/lib/
H A Dautoload.php49 $prefix = 'Facebook\\'; variable
63 $len = strlen($prefix);
64 if (strncmp($prefix, $class, $len) !== 0) {
/plugin/mdpage/vendor/cebe/markdown/
H A DREADME.md298 Parsing methods for inline elements are also protected and identified by the prefix `parse`. Additi…
/plugin/swiftmail/Swift/Cache/
H A DDisk.php30 protected $prefix; variable in Swift_Cache_Disk
42 $this->prefix = md5(uniqid(microtime(), true));
59 $handle = fopen(self::$save_path . "/" . $this->prefix . $key, "ab");
64 …self::$save_path . "/" . $this->prefix . $key . "] but failed. Check the permissions, or don't us…
74 @unlink(self::$save_path . "/" . $this->prefix . $key);
83 return file_exists(self::$save_path . "/" . $this->prefix . $key);
98 $this->open[$key] = fopen(self::$save_path . "/" . $this->prefix . $key, "rb");
124 $list = glob(self::$save_path . "/" . $this->prefix . "*");
/plugin/swiftmail/Swift/Message/
H A DAttachment.php50 public static function generateFileName($prefix="file") argument
52 return $prefix . (self::$fileId++);
/plugin/fckg/fckeditor/editor/dialog/common/
H A Dfck_dialog_common.js58 function GetCommonDialogCss( prefix ) argument
/plugin/fckg/action/
H A Dmeta.php188 list($prefix,$mdir) = explode(trim(DOKU_BASE, '/'),$userfiles);
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
H A DshCore.js1712 var prefix = 'highlighter_';
1713 return id.indexOf(prefix) == 0 ? id : prefix + id;
1813 function guid(prefix) argument
1815 return (prefix || '') + Math.round(Math.random() * 1000000).toString();
/plugin/syntaxhighlighter3/sxh3/src/js/
H A DshCore.js431 var prefix = 'highlighter_';
432 return id.indexOf(prefix) == 0 ? id : prefix + id;
532 function guid(prefix) argument
534 return (prefix || '') + Math.round(Math.random() * 1000000).toString();
/plugin/autologoff/lang/nl/
H A Dintro.txt2 Hier kun je gebruikers en groepen opgeven die na een vooraf bepaalde tijd van inactiviteit moet worden uitgelogd. Gebruik voor groepen de prefix "@". Een gebruiker die lid is van meerdere geconfigureerde groepen wordt uitgelogd na de langste t (…)
/plugin/autologoff/lang/en/
H A Dintro.txt3 Here you can specify users and groups that should be logged out after the configured time of inactivity. Be sure to prefix groups with ''@''. A user that is member of multiple configured groups will be given the largest c (…)
/plugin/autologoff/lang/sv/
H A Dintro.txt3 Här kan di specificera användare och grupper som ska loggas ut efter vald tidsspann av inaktivitet. Var noga att ge grupper prefix "@". En användare som tillhör flera valda grupper kommer att ges den högst valda tidsangivelsen. D (…)
/plugin/davcard/action/
H A Dajax.php196 $prefix = 'WORK';
198 $prefix = 'PRIVATE';
199 … $cardpattern = str_replace('<DC'.$prefix.'STREET>', $data['address'][2], $cardpattern);
200 … $cardpattern = str_replace('<DC'.$prefix.'CITY>', $data['address'][3], $cardpattern);
201 … $cardpattern = str_replace('<DC'.$prefix.'ZIP>', $data['address'][5], $cardpattern);
202 … $cardpattern = str_replace('<DC'.$prefix.'COUNTRY>', $data['address'][6], $cardpattern);
/plugin/davcard/vendor/composer/
H A DClassLoader.php110 if (!$prefix) {
126 $first = $prefix[0];
157 if (!$prefix) {
172 $length = strlen($prefix);
176 $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
200 public function set($prefix, $paths) argument
202 if (!$prefix) {
205 $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
220 if (!$prefix) {
223 $length = strlen($prefix);
[all …]
/plugin/groupmanager/
H A DREADME52 simple users a bit by deleting the prefix “wg_”, replacing “_” with ” ” and
/plugin/vbsso/vendor/composer/
H A DClassLoader.php111 if (!$prefix) {
127 $first = $prefix[0];
158 if (!$prefix) {
173 $length = strlen($prefix);
177 $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
201 public function set($prefix, $paths) argument
203 if (!$prefix) {
206 $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
221 if (!$prefix) {
224 $length = strlen($prefix);
[all …]
/plugin/fetchmedia/action/
H A Dajax.php207 $prefix = substr($text, 0, $start);
209 if (substr($prefix, -2) === '[[') {
210 $prefix = substr($prefix, 0, -2) . '{{';
214 $text = $prefix . $newMediaId . $postfix;
/plugin/icalevents/vendor/composer/
H A DClassLoader.php111 if (!$prefix) {
127 $first = $prefix[0];
158 if (!$prefix) {
173 $length = strlen($prefix);
177 $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
201 public function set($prefix, $paths) argument
203 if (!$prefix) {
206 $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
221 if (!$prefix) {
224 $length = strlen($prefix);
[all …]
/plugin/icalevents/
H A Dsyntax-impl.php522 $prefix = $this->getConf('customLocationUrlPrefix') ?: $this->getConf('locationUrlPrefix');
523 return ($prefix != '') ? ($prefix . $location) : false;
/plugin/icalevents/vendor/squizlabs/php_codesniffer/scripts/
H A Dbuild-phar.php98 * @param string $prefix The prefix of the structure.
102 function buildFromNode(&$phar, $node, $prefix='') argument
110 $path = $prefix.$node->getAttribute('name');
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/
H A DUpperCaseConstantNameSniff.php153 $prefix = '';
156 $prefix = substr($constName, 0, ($splitPos + 2));
163 $prefix = substr($constName, 0, ($splitPos + 1));
176 $prefix.strtoupper($constName),
177 $prefix.$constName,
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Methods/
H A DMethodDeclarationSniff.php80 $prefix = $stackPtr;
81 …while (($prefix = $phpcsFile->findPrevious(PHP_CodeSniffer_Tokens::$methodPrefixes, ($prefix - 1),…
82 switch ($tokens[$prefix]['code']) {
84 $static = $prefix;
87 $abstract = $prefix;
90 $final = $prefix;
93 $visibility = $prefix;
/plugin/authgoogle/google/external/
H A DURITemplateParser.php91 $exp->prefix = '';
98 $exp->prefix = ';';
102 $exp->prefix = '?';
106 $exp->prefix = '/';
110 $exp->prefix = '.';
121 $part = $exp->prefix;
/plugin/toolbox/
H A DToolboxCounter.js57 if (textarea.form.elements.prefix && textarea.form.elements.prefix.value) {
58 counts.call += charcounter(textarea.form.elements.prefix.value);
59 counts.wall += wordcounter(textarea.form.elements.prefix.value);
/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
H A Dpdfmake.js12711 function uniqueId(prefix) {
12713 return baseToString(prefix) + id;

1...<<111213141516171819