Home
last modified time | relevance | path

Searched refs:csv (Results 1 – 25 of 113) sorted by relevance

12345

/plugin/sql2wiki/
H A DCsv.php33 * Converts two-dimensional array into csv string that can be written to dokuwiki page content.
39 $csv = "";
42 $csv .= $csv_row . "\n";
44 return $csv;
48 * Converts csv string to two-dimensional array.
50 * @param string $csv
54 static function csv2arr($csv) { argument
55 $lines = array_values(array_filter(preg_split('/\r\n|\r|\n/', $csv)));
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AlertCenter/
H A DAttachment.php28 public function setCsv(Csv $csv) argument
30 $this->csv = $csv;
37 return $this->csv;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudDataplex/
H A DGoogleCloudDataplexV1StorageFormat.php56 public function setCsv(GoogleCloudDataplexV1StorageFormatCsvOptions $csv) argument
58 $this->csv = $csv;
65 return $this->csv;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DataCatalog/
H A DGoogleCloudDatacatalogV1PhysicalSchema.php52 public function setCsv(GoogleCloudDatacatalogV1PhysicalSchemaCsvSchema $csv) argument
54 $this->csv = $csv;
61 return $this->csv;
/plugin/csv/_test/
H A DREADME3 https://github.com/maxogden/csv-spectrum
4 https://github.com/gebi/csv-test
5 https://github.com/keboola/php-csv/tree/master/tests/Keboola/Csv
H A DGeneralTest.php3 namespace dokuwiki\plugin\csv\test;
H A DCSVTest.php3 namespace dokuwiki\plugin\csv\test;
/plugin/userimportextended/
H A Dadmin.php194 while($csv = fgets($fd)){
195 if (!utf8_check($csv)) {
196 $csv = utf8_encode($csv);
198 $raw = str_getcsv($csv);
208 … $this->_import_failures[$line] = array('error' => $error, 'user' => $raw, 'orig' => $csv);
221 … $this->_import_failures[$line] = array('error' => $error, 'user' => $raw, 'orig' => $csv);
/plugin/csv/
H A Dplugin.info.txt1 base csv
7 url http://www.dokuwiki.org/plugin:csv
H A DREADME6 http://www.dokuwiki.org/plugin:csv
9 lib/plugins/csv/ - if the folder is called different it
/plugin/table2csv/
H A DREADME.md4 Create a csv file from the first table on a dokuwiki page
18 The file page should display the plugin Tools selection to Export To csv in the top and bottom righ…
19 Select this to export the first table into a csv file.
21 It currently defaults to table.csv in the dokuwiki base install folder.
H A Dplugin.info.txt6 desc exports a table to a csv file
/plugin/rack/
H A Dsyntax.php160 $csv = "Model,Name,Rack,U,Height,Comment\n";
183 …$csv .= "\"$item[model]\",\"$item[name]\",$opt[name],$item[u_bottom],$item[u_size],\"$item[comment…
229 $renderer->doc .= "<pre style='display:none;' id='$csv_id'>$csv</pre>\n";
/plugin/charter/
H A Dhelper.php314 $csv = $this->_parseCsv($this->data);
315 if (!$csv)
319 $pdata = $this->_createGraphData($csv);
354 * @param csv 2d array containing the data series
359 function _createGraphData($csv) { argument
382 foreach ($csv as $row) {
/plugin/patchpanel/
H A Dsyntax.php192 $csv = "Port,Label,Comment\n";
213 …$csv .= '"' . $item['port'] . '","' . $item['label'] . '","' . trim($item['comment'], '"\' ') . '"…
315 $renderer->doc .= "<pre style='display:none;' id='$csv_id'>$csv</pre>\n";
/plugin/sqlraw/
H A Dplugin.info.txt6 desc Execute SQL query on remote csv data or table data and display the result as a table
/plugin/fckg/fckeditor/editor/css/images/fileicons/
H A Dicon_files.txt8 csv.png
H A Ddir.txt8 csv.png
/plugin/findologicxmlexport/vendor/findologic/libflexport/tests/FINDOLOGIC/Export/Tests/
H A DCSVSerializationTest.php98 self::assertEquals($expectedCsvContent, file_get_contents('/tmp/findologic.csv'));
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Descape.rst100 $twig->getExtension('\Twig\Extension\CoreExtension')->setEscaper('csv', 'csv_escaper');
103 $twig->getExtension('core')->setEscaper('csv', 'csv_escaper');
/plugin/amcharts/assets/amcharts/plugins/dataloader/
H A Dreadme.md68 "url": "data.csv",
69 "format": "csv",
97 format | json | Type of data: json, csv
144 "url": "data/MSFT.csv",
145 "format": "csv",
/plugin/letsencrypt/
H A Dadmin.php212 $raw = file(__DIR__ . '/country-codes.csv');
/plugin/achart/
H A DREADME.md33 <achart url=:wiki:convertcsv.csv height=320px align=center>
51 …7ac11d97672a6890dc/raw/0a80ea7ff3b89d0f376aec0eff0d817550b32334/convertcsv.csv height=320px align=…
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/lasso/
H A Dconfig.lasso53 …'File' = array('7z','aiff','asf','avi','bmp','csv','doc','fla','flv','gif','gz','gzip','jpeg','jpg…
/plugin/findologicxmlexport/vendor/findologic/libflexport/
H A DREADME.md12 * CSV <https://docs.findologic.com/doku.php?id=export_patterns:csv>

12345