]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-surfbar_list.php
More fixes, menus are no longer set visible if extension is deactivated, thanks to...
[mailer.git] / inc / modules / member / what-surfbar_list.php
index c551004e66dbec16a3e153fa3f76aa389818f2c0..b9ac2954a1f25f58480f02ff016a8c7fcb985dfe 100644 (file)
@@ -40,19 +40,31 @@ if (!defined('__SECURITY')) {
 }
 
 // Add description as navigation point
-ADD_DESCR("member", basename(__FILE__));
+ADD_DESCR("member", __FILE__);
 
 // Load user URLs
 $URLs = SURFBAR_GET_USER_URLS();
 
-// Are there entries?
-if (count($URLs) > 0) {
+// Are there entries or form is submitted?
+if ((isset($_POST['ok'])) && (isset($_POST['action'])) && (isset($_POST['id']))) {
+       // Process the form
+       if (SURFBAR_MEMBER_DO_FORM($_POST, $URLs)) {
+               // Action performed but shall we display it?
+               if ((($_POST['action'] != "edit") && ($_POST['action'] != "delete")) || (isset($_POST['execute']))) {
+                       // Display "action done" message if action is wether 'edit' nor 'delete' or has been executed
+                       LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_SURFBAR_ACTION_DONE);
+               } // END - if
+       } else {
+               // Something went wrong
+               LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_SURFBAR_ACTION_FAILED);
+       }
+} elseif (count($URLs) > 0) {
        // List all URLs
        $OUT = ""; $SW = 2;
        foreach ($URLs as $id => $content) {
                // "Translate"/insert data
                $content['sw'] = $SW;
-               $content['url'] = FRAMETESTER($content['url']);
+               $content['url'] = DEREFERER($content['url']);
                if ($content['views_total'] > 0) {
                        // Include link to stats
                        $content['views_total'] = "[<a href=\"".URL."/modules.php?module=login&amp;what=surfbar_list\">".TRANSLATE_COMMA($content['views_total'])."</a>]";
@@ -61,6 +73,10 @@ if (count($URLs) > 0) {
                $content['last_locked'] = MAKE_DATETIME($content['last_locked'], "2");
                $content['actions']     = SURFBAR_MEMBER_ACTIONS($content['id'], $content['status']);
                $content['status']      = SURFBAR_TRANSLATE_STATUS($content['status']);
+               if (empty($content['lock_reason'])) {
+                       // Fixes some HTML problems with empty cells
+                       $content['lock_reason'] = "---";
+               } // END - if
 
                // Load row template
                $OUT .= LOAD_TEMPLATE("member_surfbar_list_row", true, $content);