Home
last modified time | relevance | path

Searched refs:data (Results 4501 – 4525 of 5080) sorted by path

1...<<181182183184185186187188189190>>...204

/plugin/structgroup/
H A Daction.php22 $event->data['Group'] = 'dokuwiki\\plugin\\structgroup\\types\\Group';
/plugin/structgroupby/syntax/
H A Done.php36 * @param array $data The data from the handler() function
39 public function render($mode, Doku_Renderer $renderer, $data) argument
41 if (!$data) return false;
45 if (count($data['cols']) > 1) {
51 foreach ($data['cols'] as &$col) {
65 $search = new SearchConfig($data);
/plugin/structinputstretch/
H A Dscript.js23 if (!$input.data('structinputstretch__minWidth')) {
24 $input.data('structinputstretch__minWidth', $input.width());
25 $input.data('structinputstretch__maxWidth', $input.closest('fieldset').width());
27 var minWidth = $input.data('structinputstretch__minWidth'),
28 maxWidth = $input.data('structinputstretch__maxWidth'),
/plugin/structjoin/
H A Daction.php43 $event->data['Join'] = \dokuwiki\plugin\structjoin\types\Join::class;
/plugin/structnotification/action/
H A Dnotification.php38 $event->data[] = 'structnotification';
43 if (!in_array('structnotification', $event->data['plugins'])) return;
49 $event->data['dependencies'][] = $sqlite->getAdapter()->getDbFile();
72 if (!in_array('structnotification', $event->data['plugins'])) return;
83 $user = $event->data['user'];
125 $event->data['notifications'][] = [
/plugin/structodt/
H A DREADME3 Generate ODT documents, using struct data
H A Daction.php41 $key = $event->data['key'];
42 $val = trim($event->data['val']);
51 $event->data['config'][$key] = array_map('trim', explode(',', $val));
54 $event->data['config'][$key] = (bool) $val;
55 if ($event->data['config']) {
60 $event->data['config'][$key] = false;
67 $event->data['config'][$key] = false;
73 $event->data['config'][$key] = (bool) $val;
76 $event->data['config'][$key] = trim($val);
94 if ($event->data !
[all...]
H A Dplugin.info.txt6 desc Generate ODT documents, using struct data
H A Dscript.js9 const schema = $table.parents('.structaggregation').data('schema');
12 const template = $table.parents('.structaggregation').data('template');
15 const filetype = $table.parents('.structaggregation').data('filetype');
18 const filename = $table.parents('.structaggregation').data('filename'); // filename can be empty
32 const rid = $me.data('rid');
33 const pid = $me.data('pid');
34 const rev = $me.data('rev');
/plugin/structodt/meta/
H A DAggregationEditorTableOdt.php47 * We add the schema name as data attribute
54 $this->renderer->info['struct_table_hash'] = md5(var_export($this->data, true));
75 data-schema=\"$table\" data-searchconf=\"$config\"
76 data-template=\"$template\" data-filetype=\"$filetype\"
77 data-filename=\"$filename\"'>";
80 $this->renderer->info['struct_table_hash'] = md5(var_export($this->data, true));
102 foreach($this->data['schemas'] as $key => $schema) {
107 foreach($this->data['filte
[all...]
H A DAggregationTableOdt.php47 $this->renderer->info['struct_table_hash'] = md5(var_export($this->data, true));
56 $this->renderer->doc .= '<div class="structaggregation structodt" data-schema="' . $table . '"
57 data-template="' . $this->template . '" data-filetype="' . $filetype . '">';
69 if(!$this->data['pdf']) return;
79 foreach($this->data['schemas'] as $key => $schema) {
84 foreach($this->data['filter'] as $i => $filter) {
93 if (!empty($this->data['csv'])) {
/plugin/structprogress/
H A Daction.php21 $event->data['Progress'] = 'dokuwiki\\plugin\\structprogress\\types\\Progress';
/plugin/structpublish/_test/
H A Drevision.test.php36 $data = '';
37 $migration->handleMigrations(new Doku_Event('DUMMY_EVENT', $data));
/plugin/structpublish/action/
H A Dbanner.php8 * attached to struct data of a page
33 if ($event->data !== 'show') {
93 * Fills place holder texts with data from the given Revision
H A Dcache.php32 $cache = $event->data;
H A Dpublish.php22 if ($event->data != 'show') {
H A Drevisions.php24 $form = $event->data;
H A Dsave.php20 * Handle the page save event to store revision meta data
30 $id = $event->data['id'];
39 $revision = new Revision($id, $event->data['newRevision']);
H A Dshow.php26 if ($event->data != 'show') {
51 $event->data = 'denied';
/plugin/structpublish/meta/
H A DRevision.php67 * Store the currently set structpublish meta data in the database
217 $data = [
227 $access->saveData($data);
231 * Fetches data from the structpublish schema for the current page.
260 $data = $search->execute();
261 if (!empty($data)) {
262 return array_pop($data);
/plugin/structrowcolor/
H A Dstruct.php49 $data = $event->data;
50 $key = $data['key'];
56 $val = trim($data['val']);
57 $data['config'][$key] = $val;
71 $mode = $event->data['mode'];
73 $data = $event->data['data'];
77 $rowcolor = $data['rowcolor'];
117 $mode = $event->data['mode'];
123 $data = $event->data['data'];
125 $rownum = $event->data['rownum'];
[all …]
/plugin/structsection/
H A Daction.php69 $last = end($event->data->calls);
74 $event->data->calls[] = array(
91 $event->data['Section'] = 'dokuwiki\\plugin\\structsection\\types\\Section';
H A Dsyntax.php126 $data = $schemadata->getData();
127 if (!count($data)) {
132 foreach ($data as $field) {
/plugin/structsection/lib/
H A Dbundle.js1 …n();var t=jQuery(this).parent().prev().find("div.level2"),i=JSINFO.id,n=t.data("struct"),p=JSINFO.…
/plugin/structsection/script/
H A Dmain.js20 const field = $self.data('struct');
52 (data) => {
53 if (!data) return; // we're done
55 $form.prepend(data);
82 .done((data) => {
83 const saved = JSON.parse(data);
89 .fail((data) => {
91 $errors.text(data.responseText).show();

1...<<181182183184185186187188189190>>...204