Home
last modified time | relevance | path

Searched refs:tables (Results 1 – 25 of 254) sorted by relevance

1234567891011

/plugin/dataloop/syntax/
H A Droll.php270 $tables = array();
294 if(!$tables[$col]){
296 … $from .= ' LEFT JOIN data AS '.$tables[$col].' ON '.$tables[$col].'.pid = pages.pid';
313 if(!$tables[$col]){
315 … $from .= ' LEFT JOIN data AS '.$tables[$col].' ON '.$tables[$col].'.pid = pages.pid';
338 if(!$tables[$col]){
340 … $from .= ' LEFT JOIN data AS '.$tables[$col].' ON '.$tables[$col].'.pid = pages.pid';
355 if(!$tables[$col]){
356 $tables[$col] = 'T'.(++$cnt);
357 … $from .= ' LEFT JOIN data AS '.$tables[$col].' ON '.$tables[$col].'.pid = pages.pid';
[all …]
H A Dtextloop.php310 $tables = array();
334 if(!$tables[$col]){
336 … $from .= ' LEFT JOIN data AS '.$tables[$col].' ON '.$tables[$col].'.pid = pages.pid';
353 if(!$tables[$col]){
355 … $from .= ' LEFT JOIN data AS '.$tables[$col].' ON '.$tables[$col].'.pid = pages.pid';
378 if(!$tables[$col]){
380 … $from .= ' LEFT JOIN data AS '.$tables[$col].' ON '.$tables[$col].'.pid = pages.pid';
395 if(!$tables[$col]){
396 $tables[$col] = 'T'.(++$cnt);
397 … $from .= ' LEFT JOIN data AS '.$tables[$col].' ON '.$tables[$col].'.pid = pages.pid';
[all …]
H A Dloop.php386 $tables = array();
410 if(!$tables[$col]){
412 … $from .= ' LEFT JOIN data AS '.$tables[$col].' ON '.$tables[$col].'.pid = pages.pid';
429 if(!$tables[$col]){
431 … $from .= ' LEFT JOIN data AS '.$tables[$col].' ON '.$tables[$col].'.pid = pages.pid';
454 if(!$tables[$col]){
456 … $from .= ' LEFT JOIN data AS '.$tables[$col].' ON '.$tables[$col].'.pid = pages.pid';
471 if(!$tables[$col]){
472 $tables[$col] = 'T'.(++$cnt);
473 … $from .= ' LEFT JOIN data AS '.$tables[$col].' ON '.$tables[$col].'.pid = pages.pid';
[all …]
/plugin/data-au/syntax/
H A Drelated.php70 $tables = array();
113 if(!$tables[$col]) {
114 $tables[$col] = 'T' . (++$cnt);
115 … $from .= ' LEFT JOIN dataau AS ' . $tables[$col] . ' ON ' . $tables[$col] . '.pid = pages.pid';
116 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->quote_string($col);
119 $order = ', ' . $tables[$col] . '.value ' . $dataau['sort'][1];
139 if(!$tables[$col]) {
140 $tables[$col] = 'T' . (++$cnt);
141 … $from .= ' LEFT JOIN dataau AS ' . $tables[$col] . ' ON ' . $tables[$col] . '.pid = pages.pid';
142 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->quote_string($col);
[all …]
H A Dcloud.php71 $tables = array();
95 if(!$tables[$col]) {
96 $tables[$col] = 'T' . (++$cnt);
97 … $from .= ' LEFT JOIN dataau AS ' . $tables[$col] . ' ON ' . $tables[$col] . '.pid = dataau.pid';
98 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->quote_string($col);
101 … $where .= ' ' . $filter['logic'] . ' ' . $tables[$col] . '.value ' . $filter['compare'] .
H A Dtable.php564 $tables = array();
588 if(!isset($tables[$key])) {
589 $tables[$key] = 'T' . (++$cnt);
590 … $from .= ' LEFT JOIN dataau AS ' . $tables[$key] . ' ON ' . $tables[$key] . '.pid = W1.pid';
591 $from .= ' AND ' . $tables[$key] . ".key = " . $sqlite->quote_string($key);
605 $select[] = 'group_concat(" " || ' . $tables[$key] . ".value,'\n')";
625 if(!$tables[$col]) {
626 $tables[$col] = 'T' . (++$cnt);
627 … $from .= ' LEFT JOIN dataau AS ' . $tables[$col] . ' ON ' . $tables[$col] . '.pid = W1.pid';
628 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->quote_string($col);
[all …]
/plugin/data/syntax/
H A Drelated.php75 $tables = [];
116 if (!$tables[$col]) {
117 $tables[$col] = 'T' . (++$cnt);
118 $from .= ' LEFT JOIN data AS ' . $tables[$col] . ' ON ' . $tables[$col] . '.pid = pages.pid';
119 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->getPdo()->quote($col);
122 $order = ', ' . $tables[$col] . '.value ' . $data['sort'][1];
148 if (!$tables[$col]) {
149 $tables[$col] = 'T' . (++$cnt);
150 $from .= ' LEFT JOIN data AS ' . $tables[
[all...]
H A Dcloud.php83 $tables = [];
104 if (!$tables[$col]) {
105 $tables[$col] = 'T' . (++$cnt);
106 $from .= ' LEFT JOIN data AS ' . $tables[$col] . ' ON ' . $tables[$col] . '.pid = data.pid';
107 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->getPdo()->quote($col);
110 $where .= ' ' . $filter['logic'] . ' ' . $tables[$col] . '.value ' . $filter['compare'] .
/plugin/struct/action/
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/authgooglesheets/vendor/google/apiclient-services/src/SQLAdmin/
H A DExportContextSqlExportOptions.php32 public $tables; variable in Google\\Service\\SQLAdmin\\ExportContextSqlExportOptions
65 public function setTables($tables) argument
67 $this->tables = $tables;
74 return $this->tables;
/plugin/randomtables/table-roller/src/Generator/
H A DBaseGenerator.php12 protected Registry $tables; variable in TableRoller\\Generator\\BaseGenerator
21 * @param Registry $tables
23 public function __construct(Registry $tables) argument
25 $this->tables = $tables;
46 $table = $this->tables->load($tableName);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudDataplex/
H A DGoogleCloudDataplexV1AssetDiscoveryStatusStats.php37 public $tables; variable in Google\\Service\\CloudDataplex\\GoogleCloudDataplexV1AssetDiscoveryStatusStats
84 public function setTables($tables) argument
86 $this->tables = $tables;
93 return $this->tables;
/plugin/struct/meta/
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...]
/plugin/semanticdata/syntax/
H A Dtable.php321 $tables = array();
345 if(!isset($tables[$key])){
346 $tables[$key] = 'T'.(++$cnt);
348 …e .= sprintf('{ ?pageurl <%s%s> ?%s . }',$this->getConf('base_url'),urlencode($key),$tables[$key]);
354 …ct[] = sprintf('(GROUP_CONCAT(DISTINCT ?%s ; SEPARATOR=",") AS ?%ss)',$tables[$key],$tables[$key]);
355 $selectview[] = "?".$tables[$key]."s";
374 if(!$tables[$col]){
375 $tables[$col] = 'T'.(++$cnt);
376 …$select[] = "(GROUP_CONCAT(DISTINCT ?".$tables[$col]." ; SEPARATOR=\",\") AS ?".$tables[$col]."s)";
380 $order = sprintf('ORDER BY %s(?%ss)',$data['sort'][1],$tables[$col]);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Area120Tables/
H A DListTablesResponse.php47 public function setTables($tables) argument
49 $this->tables = $tables;
56 return $this->tables;
H A DWorkspace.php87 public function setTables($tables) argument
89 $this->tables = $tables;
96 return $this->tables;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/BigtableAdmin/
H A DListTablesResponse.php47 public function setTables($tables) argument
49 $this->tables = $tables;
56 return $this->tables;
H A DCreateClusterMetadata.php80 public function setTables($tables) argument
82 $this->tables = $tables;
89 return $this->tables;
/plugin/conform/
H A Dhelper.php169 if ( count($tables) == 0 && $tablecount == 0 )
171 $this->conformTablesCreate($tables, $tablecount, $tablemode);
173 array_push( $tables[$tablecount]['args'], $args );
197 $batch['tables'] = $tables;
245 function conformTablesCreate(&$tables, $tablecount, $tablemode) argument
247 $tables[$tablecount]['mode'] = $tablemode;
248 $tables[$tablecount]['args'] = array();
/plugin/mobiletable/
H A DmobileTable.js216 const transform = tables => {
217 tables = tables || document.querySelectorAll(selector)
221 for (let table of tables) {
244 const undo = tables => {
245 tables = tables || document.querySelectorAll(selector)
249 for (let table of tables) {
277 return (isMobile, tables) => isMobile ? transform(tables) : undo(tables)
/plugin/displayorphans/
H A DREADME.md10 The Display Orphans Plugin can display tables of orphaned, wanted, and linked pages.
22 The plugin offers three block elements that expand into tables listing appropriate pages and other …
36 | `show_table_header` | yes | Specifies whether generated tables should include a header. |
37 | `sort_table_ascending` | yes | Specifies whether generated tables should sort in ascending order;…
38 | `ignore_orphaned_pages` | empty | Space-separated list of pages to ignore when generating tables
39 …` | empty | Space-separated list of namespaces to ignore when generating tables of orphaned pages.…
40 | `ignore_wanted_pages` | empty | Space-separated list of pages to ignore when generating tables of…
41 …s` | empty | Space-separated list of namespaces to ignore when generating tables of wanted pages. |
42 | `ignore_linked_pages` | empty | Space-separated list of pages to ignore when generating tables of…
43 …s` | empty | Space-separated list of namespaces to ignore when generating tables of linked pages. |
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/
H A DTableList.php87 public function setTables($tables) argument
89 $this->tables = $tables;
96 return $this->tables;
/plugin/randomtables/table-roller/src/Table/
H A DManager.php13 private static array $tables; variable in TableRoller\\Table\\Manager
35 if (!isset(self::$tables[$name])) {
39 self::$tables[$name] = new DokuwikiJsonTable($row['rows']);
41 self::$tables[$name] = new BaseTable();
45 return self::$tables[$name];
/plugin/latexport/examples/
H A Dsimplest.tex7 \usepackage{array} % To have better presentation in tables.
9 \usepackage{multirow} % To have rowspan in tables.
10 \usepackage{makecell} % To have colspan in tables.
11 \usepackage{tabulary} % To make tables.
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRijndael.php333 static $tables;
337 $t0 = $tables[0];
338 $t1 = $tables[1];
339 $t2 = $tables[2];
340 $t3 = $tables[3];
676 static $tables;
724 $tables = [
751 return $tables;
765 static $tables;
808 $tables = [
[all …]

1234567891011