/plugin/data-au/syntax/ |
D | table.php | 81 $dataau = array( 115 $dataau['cols'][$column['key']] = $column; 119 $dataau['title'] = $line[1]; 125 $dataau['headers'] = array_merge($dataau['headers'], $cols); 138 $dataau['align'][] = $col; 145 $dataau['widths'][] = $col; 149 $dataau['min'] = abs((int) $line[1]); 153 $dataau['limit'] = abs((int) $line[1]); 160 $dataau['sort'] = array(substr($sort, 1), 'DESC'); 162 $dataau['sort'] = array($sort, 'ASC'); [all …]
|
D | list.php | 31 * @param array $dataau instructions by handler 35 protected function beforeVal(&$dataau, $colno) { argument 36 if($dataau['sepbyheaders'] AND $colno === 0) { 37 return $dataau['headers'][$colno]; 50 protected function afterVal(&$dataau, $colno) { argument 51 if($dataau['sepbyheaders']) { 52 return $dataau['headers'][$colno + 1]; 62 * @param array $dataau instruction by handler 65 function preList($clist, $dataau) { argument 66 … return '<div class="dataaggregation"><ul class="dataauplugin_list ' . $dataau['classes'] . '">'; [all …]
|
D | entry.php | 76 $dataau = array(); 92 if(!isset($dataau[$column['key']])) { 96 $dataau[$column['key']] = array(); 102 if(!in_array($val, $dataau[$column['key']])) { 103 $dataau[$column['key']][] = $val; 107 $dataau[$column['key']] = $this->dthlp->_cleanData($line[1], $column['type']); 112 'dataau' => $dataau, 'cols' => $columns, 'classes' => $class, 125 function render($format, Doku_Renderer $renderer, $dataau) { argument 126 if(is_null($dataau)) return false; 133 $this->_showData($dataau, $renderer); [all …]
|
D | related.php | 28 * @param array $dataau data created by handler() 31 function render($format, Doku_Renderer $renderer, $dataau) { argument 33 if(is_null($dataau)) return false; 39 if(!$dataau['sql']) return true; // sql build 40 $this->dthlp->_replacePlaceholdersInSQL($dataau); 42 $res = $sqlite->query($dataau['sql']); 46 $renderer->doc .= '<dl class="' . $dataau['classes'] . '">'; 47 $renderer->doc .= '<dt>' . htmlspecialchars($dataau['title']) . '</dt>'; 65 function _buildSQL(&$dataau, $id = null) { argument 80 foreach(array_keys($dataau['cols']) as $col) { [all …]
|
D | cloud.php | 64 public function _buildSQL(&$dataau) { argument 65 $ckey = array_keys($dataau['cols']); 82 if(is_array($dataau['filter']) && count($dataau['filter'])) { 85 foreach($dataau['filter'] as $filter) { 113 if(isset($dataau['min'])) { 114 $sql .= ' HAVING cnt >= ' . $dataau['min']; 117 if($dataau['limit']) { 118 $sql .= ' LIMIT ' . $dataau['limit']; 132 public function render($format, Doku_Renderer $renderer, $dataau) { argument 136 if(is_null($dataau)) return false; [all …]
|
/plugin/data-au/ |
D | action.php | 47 $dataau = $event->dataau; 48 if(strpos($dataau[0][1],'dataentry') !== false) return; // plugin seems still to be there 52 $id = ltrim($dataau[1].':'.$dataau[2],':'); 68 if ($event->dataau['target'] !== 'plugin_dataau') { 72 $event->dataau['name'] = $this->getLang('dataentry'); 81 if ($event->dataau['target'] !== 'plugin_dataau') { 88 unset($event->dataau['intro_locale']); 89 $event->dataau['media_manager'] = false; 95 $Renderer->form = $event->dataau['form']; 122 if ($event->dataau !== 'dataau_page') {
|
D | script.js | 59 }, function (dataau) { argument 60 response(jQuery.map(dataau, function (name, id) { 102 jQuery(this).dataau("ui-autocomplete").menu.active) {
|
D | README | 10 lib/plugins/dataau/ - if the folder is called different it 24 https://github.com/SFITCS/dokuwiki-plugin-dataau/issues
|
D | plugin.info.txt | 1 base dataau
|
/plugin/data-au/_test/ |
D | syntax_plugin_data_entry.test.php | 56 $dataau = array( 68 $this->assertEquals($dataau, $result['dataau'], 'Data array corrupted'); 95 $dataau = $plugin->handle($test_entry, 0, 10, $handler); 97 $plugin->render('xhtml',$renderer,$dataau); 116 $dataau = $plugin->handle($test_entry, 0, 10, $handler); 118 $plugin->render('xhtml',$renderer,$dataau); 137 $dataau = $plugin->handle($test_entry, 0, 10, $handler); 139 $plugin->render('xhtml',$renderer,$dataau); 158 $dataau = $plugin->handle($test_entry, 0, 10, $handler); 160 $plugin->render('xhtml',$renderer,$dataau); [all …]
|
D | action_edit_button.test.php | 15 $event = new Doku_Event('', $dataau; variable in dataau_action_plugin_edit_button_test 18 $this->assertTrue(isset($dataau'name'])); 23 $dataau= array( 26 $action->_editbutton($dataau null); 28 $this->assertFalse(isset($dataau'name']));
|
D | action_handle.test.php | 26 $this->helper = plugin_load('helper', 'dataau); 35 $dataau= array( 42 $event = new Doku_Event('', $dataau; 50 $dataau= array( 58 $event = new Doku_Event('', $dataau;
|
D | db.test.php | 44 $dataau = $plugin->handle($test_table, 0, 0, $handler); 46 $plugin->render('xhtml',$renderer,$dataau); 73 $dataau = $plugin->handle($test_table, 0, 0, $handler); 75 $plugin->render('xhtml',$renderer,$dataau); 101 $dataau = $plugin->handle($test_table, 0, 0, $handler); 103 $plugin->render('xhtml',$renderer,$dataau); 131 $dataau = $plugin->handle($test_table, 0, 0, $handler); 133 $plugin->render('xhtml',$renderer,$dataau);
|
D | helper.test.php | 186 $dataau = array('sql' => '%user%'); 188 $helper->_replacePlaceholdersInSQL($dataau); 189 $this->assertEquals('test', $dataau['sql']); 191 $dataau = array('sql' => '%groups%'); 193 $helper->_replacePlaceholdersInSQL($dataau); 194 $this->assertEquals("test','admin", $dataau['sql']); 196 $dataau = array('sql' => '%now%'); 197 $helper->_replacePlaceholdersInSQL($dataau); 198 $this->assertRegExp('/[0-9]{4}-[0-9]{2}-[0-9]{2}/', $dataau['sql']); 200 $dataau = array('sql' => '%lang%'); [all …]
|
D | syntax_plugin_data_table.test.php | 36 $dataau = array( 133 $this->assertEquals($dataau, $result, 'Data array corrupted');
|
/plugin/data-au/db/ |
D | update0001.sql | 1 CREATE TABLE dataau (eid INTEGER PRIMARY KEY, pid INTEGER, key, value); table 2 CREATE INDEX idx_key ON dataau(key);
|
D | update0006.sql | 2 CREATE INDEX idx_pid ON dataau(pid);
|
/plugin/data-au/lang/en/ |
D | admin_intro.txt | 5 The aliased types can be used like any other type of the plugin, but all dataau will be prefixed or… 7 Refer to the [[doku>plugin:dataau|plugin description]] for more info about aliases.
|
D | edit_intro_contentonly.txt | 1 Edit the [[doku>plugin:dataau|data entry]] and hit ''Save''. Please edit the entry only if you can …
|
D | edit_intro.txt | 1 Edit the [[doku>plugin:dataau|data entry]] and hit ''Save''. Please edit the entry only if you can …
|
/plugin/data-au/lang/de/ |
D | edit_intro_contentonly.txt | 1 Bearbeiten Sie den [[doku>plugin:dataau|Data-Eintrag]] und klicken danach auf ''Speichern''. Bitte …
|
D | edit_intro.txt | 1 Bearbeiten Sie den [[doku>plugin:dataau|Data-Eintrag]] und klicken danach auf ''Speichern''. Bitte …
|
D | admin_intro.txt | 7 Die vollständige Dokumentation ist auf der [[doku>plugin:dataau|Plugin-Beschreibungsseite]] verfügb…
|