Home
last modified time | relevance | path

Searched refs:short (Results 1 – 7 of 7) sorted by path

/dokuwiki/
H A DCOPYING312 If the program is interactive, make it output a short notice like this
/dokuwiki/inc/
H A Dcommon.php1610 * will never be shortened. The second part $short will be cut
1615 * @param string $short the part to shorten
1621 function shorten($keep, $short, $max, $min = 9, $char = '…')
1625 $len = PhpString::strlen($short);
1626 if ($len <= $max) return $keep . $short;
1629 PhpString::substr($short, 0, $half - 1) .
1631 PhpString::substr($short, $len - $half);
1598 shorten($keep, $short, $max, $min = 9, $char = '…') global() argument
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG94 - Fix short tag usage to allow for configurations where short tags are disabled (BenBE)
H A DLICENSE312 If the program is interactive, make it output a short notice like this
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DREADME.md45 $item->description = $data->short;
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md166 * Added support for German short forms for weekdays and months. [#632](https://github.com/simplepie/simplepie/pull/632)
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DOptions.php156 * @param string|null $short one character option (specified with -)
161 public function registerOption($long, $help, $short = null, $needsarg = false, $command = '') argument
170 'short' => $short
173 if ($short) {
174 if (strlen($short) > 1) {
178 $this->setup[$command]['short'][$short] = $long;
275 // short option
277 if (!isset($this->setup[$this->command]['short'][
[all...]