Home
last modified time | relevance | path

Searched refs:tables (Results 1 – 25 of 254) sorted by last modified time

1234567891011

/plugin/pagequery/
H A Dstyle.css24 /* Old-school tables version */
/plugin/vertical/
H A DREADME.md2 Simple plugin to configure vertical-align in tables
H A Dplugin.info.txt6 desc Simple plugin to configure vertical-align in tables
/plugin/structpublish/helper/
H A Dpublish.php67 $tables = $schemaAssignments->getPageAssignments($ID);
69 if (empty($tables)) {
75 foreach ($tables as $table) {
/plugin/struct/meta/
H A DAccessDataValidator.php49 $tables = $assignments->getPageAssignments($pageid);
50 foreach ($tables as $table) {
H A DAssignments.php109 $tables = $this->getPageAssignments($row['pid'], true);
110 if (!in_array($table, $tables)) {
127 $tables = $this->getPageAssignments($pid, true);
129 // fetch possibly affected tables
133 // reevalute the tables and apply assignments
135 if (in_array($row['tbl'], $tables)) {
210 * @return \string[] tables assigned
214 $tables = [];
222 $tables[] = $row['tbl'];
230 $tables[]
[all...]
H A DSchema.php176 $tables = $db->queryAll("SELECT DISTINCT tbl FROM schemas ORDER BY tbl");
179 foreach ($tables as $row) {
/plugin/struct/syntax/
H A Doutput.php114 $tables = $assignments->getPageAssignments($ID);
115 if (!$tables) return true;
120 foreach ($tables as $table) {
/plugin/struct/action/
H A Ddiff.php53 $tables = $assignments->getPageAssignments($id);
54 if (!$tables) return;
57 foreach ($tables as $table) {
H A Dedit.php92 $tables = $assignments->getPageAssignments($ID);
95 foreach ($tables as $table) {
H A Dentry.php141 $tables = $assignments->getPageAssignments($event->data['id']);
142 foreach ($tables as $table) {
H A Dinline.php131 $tables = $assignments->getPageAssignments($this->pid, true);
132 if (!in_array($this->schemadata->getSchema()->getTable(), $tables)) {
H A Dmigration.php51 * Add a latest column to all existing multi tables
60 $tables = $sqlite->queryAll($sql);
62 foreach ($tables as $row) {
63 $table = $row['name']; // no escaping needed, it's our own tables
81 // get tables and their SQL definitions
85 $tables = $sqlite->queryAll($sql);
95 // Step 1: move original data to temporary tables and create new ones with modified schemas
96 foreach ($tables as $table) {
106 // add rid and new primary key to regular tables
109 // add rid and new primary key to lookup tables
[all...]
H A Dsearch.php45 $tables = $assignments->getPageAssignments($id);
46 if (!$tables) return;
48 foreach ($tables as $table) {
66 $tables = $assignments->getPageAssignments($id);
67 if (!$tables) return;
69 foreach ($tables as $table) {
/plugin/sqlite/
H A DSQLiteDB.php378 $tables = $this->queryAll("SELECT name,sql FROM sqlite_master WHERE type='table'");
381 foreach ($tables as $table) {
385 foreach ($tables as $table) {
389 foreach ($tables as $table) {
/plugin/mikioplugin/
H A DREADME.md129 - Fixed accordian not rendering tables inside itself [#15](https://github.com/nomadjimbob/mikioplugin/issues/15). Thanks Melphios
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/data/
H A Dvocab.bpe
/plugin/bez/
H A Dstyle.css1038 /*SVG lock in tables*/
/plugin/xlsx2dw/
H A DREADME.md2 The XLSX2DW plugin for DokuWiki makes it easy to import XLS, XLSX or ODS tables to a page.
27 ![Alt text](./screenshots/using_button.jpg?raw=true "Import of tables")
29 3. Choose a table file. You can select example table from `/_test/test-tables/` folder.
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js4403 this.tables = {};
5060 return this.tables[name];
5276 tables: Object.values(this.tables).map(function (table) {
5328 this.tables = value.tables.reduce(function (tables, table) {
5332 return tables;
10649 if (model.tables) {
19268 model.tables = (model.tables || []).map(function (tablePart) {
24050 tables: model.tables,
24515 tables: {},
24943 var tables = worksheet.tables;
[all …]
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs4081 /* TODO: use tables directly, don't encode */
22318 case 'data-pilot-tables': // 9.6.2 <table:data-pilot-tables>
25730 …if(o.codepage && typeof $cptable === "undefined") console.error("Codepage tables are not loaded. …
/plugin/orphanswanted/
H A Dplugin.info.txt6 desc Display Orphans, Wanteds and Valid link tables
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DOtlDump.php85 var $tables; variable in Mpdf\\OtlDump
188 $this->tables = [];
233 $this->tables = [];
240 $this->tables[$record['tag']] = $record;
249 // Check the checksums for all tables
250 foreach ($this->tables as $t) {
308 $offset = isset($this->tables[$tag]['offset']) ? $this->tables[$tag]['offset'] : null;
309 $length = isset($this->tables[$tag]['length']) ? $this->tables[
[all...]
H A DTTFontFile.php104 var $tables; variable in Mpdf\\TTFontFile
238 $this->tables = [];
304 $this->tables = [];
312 $this->tables[$record['tag']] = $record;
322 // Check the checksums for all tables
323 foreach ($this->tables as $t) {
386 if (!isset($this->tables[$tag])) {
389 $offset = $this->tables[$tag]['offset'];
390 $length = $this->tables[$tag]['length'];
570 $this->tables
[all...]
H A DTTFontFileAnalysis.php20 $this->tables = [];
222 if (isset($this->tables["OS/2"])) {
325 if (isset($this->tables['post'])) {
377 if (isset($this->tables['post'])) {

1234567891011