Table editor fills the new entry form with the default values of the fields
[platal.git] / modules / core.php
index e9766b8..b7def03 100644 (file)
 
 class CoreModule extends PLModule
 {
-    function menu_entries()
-    {
-        return array();
-    }
-
     function handlers()
     {
         return array(
-            '403'   => $this->make_hook('handler_403', AUTH_PUBLIC, ''),
-            '404'   => $this->make_hook('handler_404', AUTH_PUBLIC, ''),
+            '403'         => $this->make_hook('403', AUTH_PUBLIC),
+            '404'         => $this->make_hook('404', AUTH_PUBLIC),
+            'purge_cache' => $this->make_hook('purge_cache', AUTH_COOKIE, 'admin'),
+
+            'valid.html'  => $this->make_hook('valid', AUTH_PUBLIC),
+            'favicon.ico' => $this->make_hook('favicon', AUTH_PUBLIC),
         );
     }
 
-    function handler_auth(&$page)
+    function handler_valid(&$page)
     {
-        return PL_OK;
+        readfile($page->compile_dir.'/valid.html');
+        exit;
     }
 
     function handler_403(&$page)
     {
-        header('HTTP/1.0 403 Forbidden');
+        header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
         $page->changeTpl('403.tpl');
-        return PL_OK;
     }
 
     function handler_404(&$page)
     {
-        header('HTTP/1.0 404 Not Found');
+        header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found');
         $page->changeTpl('404.tpl');
-        return PL_OK;
+    }
+
+    function handler_favicon(&$page)
+    {
+        $data = file_get_contents(dirname(__FILE__).'/../htdocs/images/favicon.png');
+        header('Content-Type: image/png');
+        echo $data;
+        exit;
+    }
+
+    function handler_purge_cache(&$page)
+    {
+        require_once 'wiki.inc.php';
+
+        $page->clear_compiled_tpl();
+        wiki_clear_all_cache();
+
+        http_redirect(empty($_SERVER['HTTP_REFERER']) ? './' : $_SERVER['HTTP_REFERER']);
     }
 }