Esempio n. 1
0
 /**
  * Old entries will be deleted automatically with this cleanup
  */
 static function cleanupEvents()
 {
     $time = RDR_Setting::get("maxeventlifetime")->value;
     if (!$time) {
         $time = "- 1 day";
     }
     while (true) {
         $tmp = RDR_Event::getByCondition("createTime < {0}", array(dt("now {$time}")), null, 1000);
         if (!$tmp) {
             break;
         }
         db()->deleteMultiple($tmp);
     }
 }
Esempio n. 2
0
    /**
     * Get content
     */
    public function getContent()
    {
        headline(t("dashboard"));
        $settings = array("note.opml.import" => array("url" => l("RDR_Organize")), "note.addfeed" => array("url" => ""), "note.bug" => array("url" => "https://bfldev.com/nreeda"), "note.opml.export" => array("url" => l("RDR_Organize")), "note.search" => array("url" => ""), "note.settings" => array("url" => ""));
        echo sprintf(t("hello"), '<b>' . user()->username . '</b>') . "<br/><br/>";
        foreach ($settings as $key => $data) {
            if (user()->setting($key)) {
                continue;
            }
            echo '<div class="note" data-id="' . $key . '" data-url="' . $data["url"] . '">' . t($key) . '</div>';
        }
        ?>

        <script type="text/javascript">
        $("#content .note").on("click", function(){
            var url = $(this).attr("data-url");
            var e = $(this);
            $.post(Global.vars.ajaxUrl, {action : "changesetting", "key" : $(this).attr("data-id"), "value" : 1}, function(data){
                e.remove();
                if(url){
                    if(url.match(/^http/)){
                        window.open(url);
                    }else{
                        window.location.href = url;
                    }
                }
            })
        });
        </script>

        <div class="spacer"></div>
        <?php 
        if (needRole(RDR_User::ROLE_ADMIN)) {
            headline(t("dashboard.eventlog"));
            $logs = RDR_Event::getByCondition(null, null, "-id", 50);
            ?>
            <div id="eventlog">
                <?php 
            if ($logs) {
                ?>
<input type="button" class="btn" value="<?php 
                echo t("dashboard.clearlog");
                ?>
"/><?php 
            }
            ?>
                <div class="spacer"></div>
                <?php 
            foreach ($logs as $log) {
                ?>
                    <div class="event">
                        <time datetime="<?php 
                echo $log->createTime->getUnixtime();
                ?>
" class="inline-btn"></time>
                        <?php 
                echo $log->getText();
                ?>
                    </div>
                <?php 
            }
            ?>
            </div>
            <div class="spacer"></div>
            <script type="text/javascript">
            $("#eventlog input.btn").on("click", function(){
                $.post(window.location.href, {clearlog : 1});
                $("#eventlog").remove();
            });
            </script>
            <?php 
            $file = CHOQ_ACTIVE_MODULE_DIRECTORY . "/logs/error.log.php";
            if (file_exists($file) && filesize($file)) {
                $data = file_get_contents($file);
                $data = substr($data, strpos($data, "\n\n"));
                headline(t("dashboard.errorlog"));
                ?>
                <div id="errorlog">
                    <input type="button" class="btn" value="<?php 
                echo t("dashboard.clearlog");
                ?>
"/>
                    <pre style="font-size:11px; overflow:auto; max-height:400px;"><code><?php 
                echo s(trim($data));
                ?>
</code></pre>
                </div>
                <script type="text/javascript">
                $("#errorlog input.btn").on("click", function(){
                    $.post(window.location.href, {clearerrorlog : 1});
                    $("#errorlog").remove();
                });
                </script>
                <?php 
            }
        }
    }