Lines Matching refs:width
48 $width = preg_split('/\s+/', $match[1]);
49 $tableAlign = preg_match('/[<>]+/', $width[0]) == 1 ? array_shift($width) : '-';
50 $tableWidth = array_shift($width);
59 return $table . $this->renderColumns($width) . $data[3][0];
65 private function styleTable($html, $width, $align) { argument
72 $widthStyle = $this->getTableWidthStyle($width);
89 private function getTableWidthStyle($width) { argument
90 if ($width != '-') {
91 return 'min-width: 0; width: ' . $width . ';';
116 private function renderColumns($width) { argument
119 if (!empty($width)) {
121 foreach ($width as $w) {