]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-surfbar_list.php
Surfbar member actions continued (good night! :))
[mailer.git] / inc / modules / member / what-surfbar_list.php
index aa07ac6400b52a134af379ff9da0a28483889721..05657ff1748f58b42b9bd61a226ec69c80740d5c 100644 (file)
@@ -42,5 +42,52 @@ if (!defined('__SECURITY')) {
 // Add description as navigation point
 ADD_DESCR("member", basename(__FILE__));
 
+// Load user URLs
+$URLs = SURFBAR_GET_USER_URLS();
+
+// 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)) {
+               // Action performed
+               LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_SURFBAR_ACTION_DONE);
+       } 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'] = 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>]";
+               } // END - if
+               $content['registered']  = MAKE_DATETIME($content['registered'], "2");
+               $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);
+
+               // Switch color
+               $SW = 3 - $SW;
+       } // END - if
+
+       // Load main template
+       LOAD_TEMPLATE("member_surfbar_list", false, $OUT);
+} else {
+       // No URLs booked so far
+       LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_SURFBAR_NO_URLS_FOUND);
+}
+
 //
 ?>