Home
last modified time | relevance | path

Searched refs:TableCell (Results 1 – 13 of 13) sorted by path

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/
H A DTableCell.php20 class TableCell extends \Google\Model class
44 class_alias(TableCell::class, 'Google_Service_Bigquery_TableCell');
H A DTableRow.php23 protected $fType = TableCell::class;
27 * @param TableCell[]
34 * @return TableCell[]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Docs/
H A DTableCell.php20 class TableCell extends \Google\Collection class
147 class_alias(TableCell::class, 'Google_Service_Docs_TableCell');
H A DTableRow.php41 protected $tableCellsType = TableCell::class;
117 * @param TableCell[]
124 * @return TableCell[]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Slides/
H A DTableCell.php20 class TableCell extends \Google\Model class
110 class_alias(TableCell::class, 'Google_Service_Slides_TableCell');
H A DTableRow.php25 protected $tableCellsType = TableCell::class;
45 * @param TableCell[]
52 * @return TableCell[]
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Block/
H A DTableCellRenderer.php24 use League\CommonMark\Extension\Table\TableCell; alias
30 TableCell::assertInstanceOf($node);
33 $separator = $node->getType() === TableCell::TYPE_HEADER ? '^' : '|';
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/
H A DTableExtension.php25 use League\CommonMark\Extension\Table\TableCell; alias
43 ->addRenderer(TableCell::class, new TableCellRenderer())
/plugin/commonmark/vendor/league/commonmark/src/Extension/Table/
H A DTableCell.php20 final class TableCell extends AbstractBlock
24 final class TableCell extends AbstractStringContainerBlock implements InlineContainerInterface global() class
H A DTableCellRenderer.php28 TableCell::ALIGN_LEFT => ['align' => 'left'],
29 TableCell::ALIGN_CENTER => ['align' => 'center'],
30 TableCell::ALIGN_RIGHT => ['align' => 'right'],
33 /** @var array<TableCell::ALIGN_*, array<string, string|string[]|bool>> */
37 * @param array<TableCell::ALIGN_*, array<string, string|string[]|bool>> $alignmentAttributes
45 * @param TableCell $node
53 TableCell::assertInstanceOf($node);
60 $tag = $node->getType() === TableCell::TYPE_HEADER ? 'th' : 'td';
71 * @param TableCell $node
79 TableCell
[all...]
H A DTableExtension.php60 ->addRenderer(TableCell::class, new TableCellRenderer($environment->getConfiguration()->get('table/alignment_attributes')));
H A DTableParser.php40 * @psalm-var array<int, TableCell::ALIGN_*|null>
41 * @phpstan-var array<int, TableCell::ALIGN_*|null>
61 * @psalm-param array<int, TableCell::ALIGN_*|null> $columns
63 * @phpstan-param array<int, TableCell::ALIGN_*|null> $columns
113 $tableCell->setType(TableCell::TYPE_HEADER);
139 private function parseCell(string $cell, int $column, InlineParserEngineInterface $inlineParser): TableCell
141 $tableCell = new TableCell();
H A DTableRow.php