summaryrefslogtreecommitdiff
path: root/common.php
blob: 370141df05944066fddc4e54940dfe295a65645a (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
<?php
    /*
     * Copyright (C) 2024 dwlr <dweller@cabin.digital>
     *
     * BSD 3-Clause License (BSD-3-Clause)
     * See LICENSE for details
     */


    $root = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://' . $_SERVER['HTTP_HOST'];
    $manpath = "/usr/share/man";

    $action  = trim($_GET['action']  ?? null);
    $query   = trim($_GET['query']   ?? null);
    $section = trim($_GET['section'] ?? null);


    /*
    function dbg_print($data)
    {
        $output = $data;
        if(is_array($output)) $output = implode(',', $output);
        echo "<script>console.log('srv => " . $output . "' );</script>";
    }
    */
?>