Home
last modified time | relevance | path

Searched refs:strtoupper (Results 226 – 250 of 342) sorted by last modified time

12345678910>>...14

/plugin/davcard/vendor/sabre/vobject/lib/
H A DDocument.php133 if (isset(static::$componentMap[strtoupper($name)])) {
166 $name = strtoupper($name);
198 $name = strtoupper(substr($name, $i+1));
200 $name = strtoupper($name);
238 $valueParam = strtoupper($valueParam);
H A DFreeBusyGenerator.php192 … if (isset($component->TRANSP) && (strtoupper($component->TRANSP) === 'TRANSPARENT')) {
196 $status = strtoupper($component->STATUS);
280 … $fbType = isset($freebusy['FBTYPE'])?strtoupper($freebusy['FBTYPE']):'BUSY';
/plugin/davcard/vendor/sabre/vobject/lib/Parser/
H A DMimeDir.php113 switch(strtoupper($line)) {
134 if (strtoupper(substr($line,0,4)) === 'END:') {
144 $name = strtoupper(substr($line, 4));
161 if (strtoupper(substr($line, 0, 6)) === 'BEGIN:') {
169 if (strtoupper(substr($line,0,4)) === 'END:') {
179 $name = strtoupper(substr($line, 4));
357 $lastParam = strtoupper($match['paramName']);
368 $property['name'] = strtoupper($match['name']);
410 if (strtoupper($propObj['ENCODING']) === 'QUOTED-PRINTABLE') {
/plugin/davcard/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php108 return strtoupper((string)$this['VALUE']) !== 'DATE';
334 if (strtoupper($name)!=='VALUE') {
H A DRecur.php48 $v = strtoupper($v);
58 $newVal[strtoupper($k)] = $v;
86 return strtoupper(implode(';',$out));
181 $value = strtoupper($value);
/plugin/davcard/vendor/sabre/vobject/lib/Property/
H A DBoolean.php33 $val = strtoupper($val)==='TRUE'?true:false;
H A DText.php259 $lastLine.='=' . strtoupper(bin2hex($val[$ii]));
/plugin/fetchmedia/
H A Dadmin.php42 if (strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN') {
/plugin/database2/
H A Ddatabase2.php3876 $sqldef = $colName . ' ' . strtoupper( $sqldef );
/plugin/rrdgraph/
H A Dhelper.php319 switch (strtoupper($element[1])) {
456 switch (strtoupper($element[1])) {
/plugin/rrdgraph/inc/
H A Dsvgbinding.php203 switch (strtoupper($this->aggregates[$bindingName])) {
/plugin/nsindex/
H A Dsyntax.php220 $first = strtoupper(substr($data[$i]['sortkey'],0,1));
/plugin/konsole/
H A Dsyntax.php97 $type_user = strtoupper($type_user);
/plugin/issuetracker/
H A Dedit.php145 $usenames = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? false : true;
H A Dsyntax.php422 { if ($this->_get_one_value($count,strtoupper($status))=='')
423 {$count[strtoupper($status)] = array(1,$status);}
425 {$count[strtoupper($status)][0] += 1;}
605 $a_product = strtoupper($this->_get_one_value($issue,'product'));
606 $a_version = strtoupper($this->_get_one_value($issue,'version'));
608 $a_tblock = strtoupper($this->_get_one_value($issue,'tblock'));
712 $a_product = strtoupper($this->_get_one_value($issue,'product'));
715 $a_tblock = strtoupper($this->_get_one_value($issue,'tblock'));
1010 $usenames = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? false : true;
1155 if(stripos(strtoupper($data['product']),strtoupper($a))!==false) {
[all …]
H A Daction.php1112 $a_product = strtoupper($this->_get_one_value($issue,'product'));
1113 $a_version = strtoupper($this->_get_one_value($issue,'version'));
1114 $a_component = strtoupper($this->_get_one_value($issue,'component'));
1115 $a_tblock = strtoupper($this->_get_one_value($issue,'tblock'));
1116 $a_assignee = strtoupper($this->_get_one_value($issue,'assignee'));
1117 $a_reporter = strtoupper($this->_get_one_value($issue,'user_name'));
1139 else { $status_img = $style.strtoupper($a_status); }
1147 else { $severity_img = $style.strtoupper($a_severity); }
2899 $usenames = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? false : true;
3062 { if ($this->_get_one_value($count,strtoupper($status))=='')
[all …]
/plugin/icalevents/
H A Dsyntax-impl.php416 $dtSabre = $event->{'DT' . strtoupper($which)};
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/
H A DBarcode1D.php98 switch (strtoupper($type)) {
286 $code = strtoupper($code);
457 $code = strtoupper($code);
932 switch(strtoupper($type)) {
1561 $code = strtoupper($code);
1694 $code = 'A'.strtoupper($code).'A';
2087 array_push($hex, strtoupper(dechex(bcmod($number, '16'))));
H A DBarcode2D.php96 $qrtype = strtoupper($mode[0]);
141 $qrcode = new QRcode($code, strtoupper($mode[1]));
/plugin/dir/
H A Dsyntax.php661 return strtoupper($matches[0]);
/plugin/pagetemplater/
H A Daction.php60 $new = str_replace('@@' . strtoupper(trim($rkey)) . '@@', $replace[$key], $template);
61 …$new = str_replace(urlencode('@@') . strtoupper(trim($rkey)) . urlencode('@@'), $replace[$key], $n…
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/
H A DText.php78 echo strtoupper(PHP_EOL."| $standard CODING STANDARD: $title |".PHP_EOL);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Classes/
H A DClassDeclarationSniff.php173 …$keyword = $phpcsFile->findNext(constant('T_'.strtoupper($keywordType)), ($stackPtr + 1), $opening…
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Arrays/
H A DArrayDeclarationSniff.php65 if ($tokens[$stackPtr]['content'] === strtoupper($tokens[$stackPtr]['content'])) {
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/
H A DColourDefinitionSniff.php65 $expected = strtoupper($colour);

12345678910>>...14