Home
last modified time | relevance | path

Searched refs:columns (Results 1 – 5 of 5) sorted by relevance

/dokuwiki/vendor/splitbrain/php-cli/src/
H A DTableFormatter.php8 * Output text in multiple columns
15 /** @var string border between columns */
115 * @param array $columns
119 protected function calculateColLengths($columns) argument
123 $fixed = (count($columns) - 1) * $border; // borders are used already
126 // first pass for format check and fixed columns
127 foreach ($columns as $idx => $col) {
128 // handle fixed columns
153 foreach ($columns as $idx => $col) {
161 $columns[
189 format($columns, $texts, $colors = array()) global() argument
[all...]
/dokuwiki/lib/plugins/usermanager/lang/en/
H A Dimport.txt3 Requires a CSV file of users with at least four columns.
4 The columns must contain, in order: user-id, full name, email address and groups.
/dokuwiki/lib/tpl/dokuwiki/css/
H A D_admin.less3 /* main task grouped in two columns */
/dokuwiki/vendor/splitbrain/php-cli/
H A DREADME.md99 The table formatter allows coloring full columns. To use that mechanism pass an array of colors as third parameter to
105 The ``TableFormatter`` class allows you to align texts in multiple columns. It tries to figure out the available
109 widths, the second contains the texts to fill into the columns. Between each column a border is printed (a single space
120 When mixing fixed and percentage widths, percentages refer to the remaining space after all fixed columns have been
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php934 * Number of columns for terminal window size
944 * Number of columns for terminal window size
5283 * Returns the number of columns for the terminal window size.
5303 * Sets the number of columns for the terminal window size.
5323 * Sets the number of columns and rows for the terminal window size.
5325 * @param int $columns
5328 public function setWindowSize($columns = 80, $rows = 24)
5330 $this->windowColumns = $columns;
5383 setWindowSize($columns = 80, $rows = 24) global() argument