summaryrefslogtreecommitdiff
path: root/conf/plugin/bureaucracy/subpagedb.php
blob: e2aa175ade369054a033d64ff22884ade90235fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php

// Subpage Database script - stores all the data in a simple dokuwiki table
// All data is stored in a page with extension .log and the same name than current page
// How to use this:
//
// <form>
// action script subpagedb.php
// thanks "Thank you for register in. You can join the call in [[https://meet.jit.si/GTA-Webinar|this link]]"
// Fieldset "About you"
// hidden "Lang" "=en"
// hidden "Date" "=@DATE@"
// Textbox  "Name"
// email "E-Mail" !
// select "Country" "Afghanistan|Åland Islands|Albania|"
// yesno "Subscribe me for e-mail updates?" "=true value" "!false value"
// submit "Register in"
// </form>

use dokuwiki\plugin\bureaucracy\interfaces\bureaucracy_handler_interface;

class helper_plugin_bureaucracy_handler_subpagedb implements bureaucracy_handler_interface {
    /**
     * Log the form fields to DokuWiki's debug log
     */

    public function handleData($fields, $thanks)
    {
        global $INFO;

        $n = 0;
        $m = 0;

        foreach($fields as $row){
          if ($n != 0) {
            if ($row->opt["label"] === 'E-Mail') {
              $line = $line . ' | <' . $row->opt["value"] . '>';
            } else {
              $line = $line . ' | ' . $row->opt["value"];
            }
            if ($n === 1) {
              $lang = $row->opt["value"];
            }
          }
          $n++;
        }
        $filepath = $INFO['filepath'];

        // unifica el registro si viene de idioma español
        $store_tmp = str_replace("/es/","/",$filepath);
        $store = str_replace(".txt",".log.txt",$store_tmp);
        // // Abre el fichero para obtener el contenido existente
        if(!is_file($store)){
          foreach($fields as $row){
            if ($m != 0) {
              $header = $header . ' ^ ' . $row->opt["label"];
            }
            $m++;
          }
          $header = substr($header, 1);
          file_put_contents($store, "$header\n");     // Save our content to the file.
        }
        $actual = file_get_contents($store);
        $line = substr($line, 1);
        $actual .= "$line\n";
        // // Escribe el contenido al fichero
        file_put_contents($store, $actual);
        //

        // dbglog($line);
        return $thanks;
    }
}