templates/de/html/admin/admin_list_sponsor_row.tpl -text
templates/de/html/admin/admin_list_surfbar_reflvl.tpl -text
templates/de/html/admin/admin_list_surfbar_reflvl_row.tpl -text
+templates/de/html/admin/admin_list_surfbar_urls.tpl -text
+templates/de/html/admin/admin_list_surfbar_urls_row.tpl -text
templates/de/html/admin/admin_list_task_rows.tpl -text
templates/de/html/admin/admin_list_transfer.tpl -text
templates/de/html/admin/admin_list_transfer_row.tpl -text
define('EMAIL_POOL_TYPE', "Derzeitiger Status");
define('EMAIL_TSEND', "Noch zu sendene Mails");
define('EMAIL_URL', "Beworbene URL");
-define('EMAIL_URL_TEST', "URL testen");
+define('ADMIN_TEST_URL', "URL testen");
define('EMAIL_TIMESTAMP', "Gebucht am");
define('GUEST_FRAMETESTER_TOP', "Sollte dieser Text verschwinden, enthält Ihre Webseite einen Frame-Killer!");
define('ADMIN_SELECT_EMAIL_EDIT', "Email auswählen, um diese zu editieren");
define('RESET_SELECT', "Auswahl zurücknehmen");
define('ADMIN_EDIT_EMAIL', "Mailbuchung bearbeiten");
define('ADMIN_CHANGE_EMAIL', "Änderungen speichern");
-define('EMAIL_EDIT_URL', "URL bearbeiten");
+define('EDIT_URL', "URL bearbeiten");
define('EMAIL_EDIT_SUBJ', "Betreff bearbeiten");
define('EMAIL_EDIT_TEXT', "Werbetext bearbeiten");
define('ADMIN_UNLOCK_EMAILS', "Neue Mailbuchungen freischalten");
define('EMAIL_POOL_TYPE', "Derzeitiger Status");
define('EMAIL_TSEND', "Noch zu sendene Mails");
define('EMAIL_URL', "Beworbene URL");
-define('EMAIL_URL_TEST', "URL testen");
+define('ADMIN_TEST_URL', "URL testen");
define('EMAIL_TIMESTAMP', "Gebucht am");
define('GUEST_FRAMETESTER_TOP', "Sollte dieser Text verschwinden, enthält Ihre Webseite einen Frame-Killer!");
define('ADMIN_SELECT_EMAIL_EDIT', "Email auswählen, um diese zu editieren");
define('RESET_SELECT', "Auswahl zurücknehmen");
define('ADMIN_EDIT_EMAIL', "Mailbuchung bearbeiten");
define('ADMIN_CHANGE_EMAIL', "Änderungen speichern");
-define('EMAIL_EDIT_URL', "URL bearbeiten");
+define('EDIT_URL', "URL bearbeiten");
define('EMAIL_EDIT_SUBJ', "Betreff bearbeiten");
define('EMAIL_EDIT_TEXT', "Werbetext bearbeiten");
define('ADMIN_UNLOCK_EMAILS', "Neue Mailbuchungen freischalten");
define('ADMIN_SURFBAR_NOTIFY_UNLOCK_NO', "Nein, nicht informieren.");
define('ADMIN_SURFBAR_NO_REF_LEVELS_FOUND', "Zur Zeit sind keine Referal-Ebenen für die Surfbar eingestellt.<br />\nBitte installieren Sie die Erweiterung <strong>surfbar</strong> neu.");
define('ADMIN_SURFBAR_ADD_NEW_REFDEPTH', "Neue Referal-Ebene zur Surfbar hinzufügen");
+define('ADMIN_SURFBAR_NO_URLS_FOUND', "Es konnten keine URLs in der Surfbar gefunden werden.");
+define('ADMIN_SURFBAR_REWARD', "Vergütung");
+define('ADMIN_SURFBAR_VIEWS_TOTAL', "Gesamtaufrufe");
+define('ADMIN_SURFBAR_STATUS', "URL-Status");
+define('ADMIN_SURFBAR_REGISTERED', "URL aufgenommen");
+define('ADMIN_SURFBAR_LAST_LOCKED', "Zuletzt gesperrt");
+define('ADMIN_SURFBAR_LOCK_REASON', "Sperrgrund");
+define('ADMIN_SURFBAR_EDIT_URL', "URL ändern");
+define('ADMIN_SURFBAR_DEL_URL', "URL löschen");
+define('ADMIN_SURFBAR_UNLOCK_URL', "URL ent-/sperren");
// Subject lines for admins
define('ADMIN_SURFBAR_NOTIFY_URL_UNLOCK_SUBJECT', "URL in Surfbar gebucht");
</TD>
<TD align=\"center\" class=\"top right\">
".EMAIL_URL.":<br />
- <STRONG class=\"admin_misc\"><A href=\"".FRAMETESTER($pool[8])."\" target=\"_blank\">".EMAIL_URL_TEST."</A></STRONG>
+ <STRONG class=\"admin_misc\"><A href=\"".FRAMETESTER($pool[8])."\" target=\"_blank\">".ADMIN_TEST_URL."</A></STRONG>
</TD>
<TD align=\"center\" class=\"top\">
".EMAIL_TIMESTAMP.":<br />
</TD>
<TD align=\"center\" class=\"top right\">
".EMAIL_URL.":<br />
- <STRONG class=\"admin_misc\"><A href=\"".FRAMETESTER($bonus[8])."\" target=\"_blank\">".EMAIL_URL_TEST."</A></STRONG>
+ <STRONG class=\"admin_misc\"><A href=\"".FRAMETESTER($bonus[8])."\" target=\"_blank\">".ADMIN_TEST_URL."</A></STRONG>
</TD>
<TD align=\"center\" class=\"top\">
".EMAIL_TIMESTAMP.":<br />
if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!is_admin())) {
$INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
require($INC);
-}
+} // END - if
// Add description as navigation point
ADD_DESCR("admin", basename(__FILE__));
-// First list all booked URLs (no bonus!)
+// List all URLs
+$result = SQL_QUERY("SELECT id, userid, url, reward, views_total, status, UNIX_TIMESTAMP(registered) AS registered, UNIX_TIMESTAMP(last_locked) AS last_locked, lock_reason
+FROM "._MYSQL_PREFIX."_surfbar_urls
+ORDER BY id ASC", __FILE__, __LINE__);
+
+// Do we have some URLs left?
+if (SQL_NUMROWS($result) > 0) {
+ // List all URLs
+ $OUT = ""; $SW = 2;
+ while ($content = SQL_FETCHARRAY($result)) {
+ // "Translate"/add content
+ $content['sw'] = $SW;
+ $content['userid'] = ADMIN_USER_PROFILE_LINK($content['userid']);
+ $content['url'] = FRAMETESTER($content['url']);
+ $content['reward'] = TRANSLATE_COMMA($content['reward']);
+ $content['views_total'] = TRANSLATE_COMMA($content['views_total']);
+ $content['status'] = SURFBAR_TRANSLATE_STATUS($content['status']);
+ $content['registered'] = MAKE_DATETIME($content['registered'], 2);
+ $content['last_locked'] = MAKE_DATETIME($content['last_locked'], 2);
+ if (empty($content['lock_reason'])) $content['lock_reason'] = "---";
+
+ // Load row template
+ $OUT .= LOAD_TEMPLATE("admin_list_surfbar_urls_row", true, $content);
+
+ // Switch color
+ $SW = 3 - $SW;
+ } // END - while
+
+ // Load main template
+ LOAD_TEMPLATE("admin_list_surfbar_urls", false, $OUT);
+} else {
+ // No URLs in surfbar
+ LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_NO_URLS_FOUND);
+}
+
+// Free result
+SQL_FREERESULT($result);
//
?>
-<FORM
- action="{--URL--}/modules.php?module=admin&what=add_bank_package"
- method="POST">
-<TABLE border="0" cellspacing="0" cellpadding="0" width="600"
- align="center" class="admin_table dashed">
+<FORM action="{--URL--}/modules.php?module=admin&what=add_bank_package" method="POST">
+<TABLE border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
<TR>
<TD class="admin_title bottom2" height="30" colspan="3" align="center">
<STRONG>{--ADMIN_ADD_BANK_PACKAGE_TITLE--}</STRONG></TD>
-<FORM
- action="{!URL!}/modules.php?module=admin&what=adminedit&sub={!__SUB_VALUE!}"
- method="POST" target="_self">
-<TABLE border="0" cellspacing="0" cellpadding="0" width="600"
- class="admin_table dashed">
- <TR>
- <TH class="admin_title bottom2 right2" align="center" width="30"
- height="30"><STRONG>{--ID_SELECT--}</STRONG></TH>
- <TH class="admin_title bottom2 right2" align="center"><STRONG>{--DISPLAY_ACTION--}</STRONG></TH>
- <TH class="admin_title bottom2 right2" align="center"><STRONG>{--DISPLAY_WHAT--}</STRONG></TH>
- <TH class="admin_title bottom2 right2" align="center"><STRONG>{--DISPLAY_TITLE--}</STRONG></TH>
- <TH class="admin_title bottom2" align="center"><STRONG>{--SORT_NAVIGATION--}</STRONG></TH>
- </TR>
- {!__MENU_ROWS!}
- <TR>
- <TD colspan="5" align="center" class="admin_footer"><INPUT
- type="reset" class="admin_reset" value="{--UNDO_SELECTIONS--}"
- class="admin_normal"> * <INPUT type="submit"
- class="admin_submit" name="edit" value="{--EDIT_MENUS--}"> *
- <INPUT type="submit" class="admin_delete submit" name="del"
- value="{--DEL_MENUS--}"></TD>
- </TR>
+<FORM action="{!URL!}/modules.php?module=admin&what=adminedit&sub={!__SUB_VALUE!}" method="POST" target="_self">
+<TABLE border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
+<TR>
+ <TH class="admin_title bottom2 right2" align="center" width="30" height="30"><STRONG>{--ID_SELECT--}</STRONG></TH>
+ <TH class="admin_title bottom2 right2" align="center"><STRONG>{--DISPLAY_ACTION--}</STRONG></TH>
+ <TH class="admin_title bottom2 right2" align="center"><STRONG>{--DISPLAY_WHAT--}</STRONG></TH>
+ <TH class="admin_title bottom2 right2" align="center"><STRONG>{--DISPLAY_TITLE--}</STRONG></TH>
+ <TH class="admin_title bottom2" align="center"><STRONG>{--SORT_NAVIGATION--}</STRONG></TH>
+</TR>
+{!__MENU_ROWS!}
+<TR>
+ <TD colspan="5" align="center" class="admin_footer">
+ <INPUT type="reset" class="admin_reset" value="{--UNDO_SELECTIONS--}" class="admin_normal"> *
+ <INPUT type="submit" class="admin_submit" name="edit" value="{--EDIT_MENUS--}"> *
+ <INPUT type="submit" class="admin_delete submit" name="del" value="{--DEL_MENUS--}">
+ </TD>
+</TR>
</TABLE>
-</FORM>
\ No newline at end of file
+</FORM>
-<FORM action="{!URL!}/modules.php?module=admin&what=config_admin"
- method="POST" style="margin-bottom: 0px">
-<TABLE border="0" cellspacing="0" cellpadding="0" width="600"
- class="admin_table dashed">
+<FORM action="{!URL!}/modules.php?module=admin&what=config_admin" method="POST" style="margin-bottom: 0px">
+<TABLE border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
<TR>
<TD colspan="3" align="center" class="admin_title bottom2" height="30">
<STRONG>{--ADMIN_CONFIG_ADMIN_MENU_HEADER--}</STRONG></TD>
<TD class="top2 right2 admin_misc" align="center">{!__ID!}</TD>
<TD class="top2 right2 admin_misc" align="center">{!__SUBJECT!}</TD>
<TD class="top2 right2 admin_misc" align="center"><A
- href="{!__URL!}" target="_blank">{--EMAIL_URL_TEST--}</A></TD>
+ href="{!__URL!}" target="_blank">{--ADMIN_TEST_URL--}</A></TD>
<TD class="top2 right2 admin_misc" align="center">{!__ORDERED!}</TD>
</TR>
</TABLE>
<TD class="top2 right2 admin_misc" align="center">{!__SENDER!}</TD>
<TD class="top2 right2 admin_misc" align="center">{!__SUBJECT!}</TD>
<TD class="top2 right2 admin_misc" align="center"><A
- href="{!__URL!}" target="_blank">{--EMAIL_URL_TEST--}</A></TD>
+ href="{!__URL!}" target="_blank">{--ADMIN_TEST_URL--}</A></TD>
<TD class="top2 right2 admin_misc" align="center">{!__ORDERED!}</TD>
</TR>
</TABLE>
-<FORM
- action="{!URL!}/modules.php?module=admin&what=config_cats&do=edit"
- method="POST">
-<TABLE border="0" cellspacing="0" cellpadding="0"
- class="admin_table dashed" width="600">
- <TR>
- <TD align="center" colspan="3" height="30"
- class="admin_header bottom2"><STRONG>{--EDIT_CATEGORIES--}:</STRO
- </TR>
- {!__CAT_ROWS!}
- <TR>
- <TD align="center" colspan="3" class="admin_footer"><INPUT
- type="reset" class="admin_reset" value="{--CLEAR_FORM--}"> *
- <INPUT type="submit" name="ok" class="admin_submit"
- value="{--CHANGE_CATS--}"></TD>
- </TR>
+<FORM action="{!URL!}/modules.php?module=admin&what=config_cats&do=edit" method="POST">
+<TABLE border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
+<TR>
+ <TD align="center" colspan="3" height="30" class="admin_header bottom2">
+ <STRONG>{--EDIT_CATEGORIES--}:</STRONG>
+ </TD>
+</TR>
+{!__CAT_ROWS!}
+<TR>
+ <TD align="center" colspan="3" class="admin_footer">
+ <INPUT type="reset" class="admin_reset" value="{--CLEAR_FORM--}" /> *
+ <INPUT type="submit" name="ok" class="admin_submit" value="{--CHANGE_CATS--}" />
+ </TD>
+</TR>
</TABLE>
</FORM>
</TR>
<TR>
<TD width="10" class="top2 seperator" height="35"> </TD>
- <TD align="right" class="top2"><STRONG>{--EMAIL_EDIT_URL--}:</STRONG>
+ <TD align="right" class="top2"><STRONG>{--EDIT_URL--}:</STRONG>
</TD>
<TD width="5" class="top2 seperator"> </TD>
<TD class="top2"><INPUT type="text" name="url"
<TD align="center" class="switch_sw$content[sw] top right">
{--EMAIL_URL--}:<BR />
<STRONG class="admin_misc"><A href="$content[url]"
- target="_blank">{--EMAIL_URL_TEST--}</A></STRONG></TD>
+ target="_blank">{--ADMIN_TEST_URL--}</A></STRONG></TD>
<TD align="center" class="switch_sw$content[sw] top">
{--EMAIL_TIMESTAMP--}:<BR />
<STRONG class="admin_misc">$content[stamp]</STRONG></TD>
-<TABLE border="0" cellspacing="0" cellpadding="0" width="600"
- class="admin_table dashed" align="center">
- <TR>
- <TD colspan="5" align="center" class="admin_title bottom2" height="30">
- <STRONG>{--ADMIN_EXT_NEW_FOUND_TITLE--}:</STRONG></TD>
- </TR>
- <TR>
- <TD align="center" width="5%" class="admin_title bottom2 right2">{--ID_SELECT--}</TD>
- <TD align="center" width="35%" class="admin_title bottom2 right2">{--ADMIN_EXT_DOWNLOAD_LINK--}</TD>
- <TD align="center" width="30%" class="admin_title bottom2 right2">{--ADMIN_EXT_FILE_CTIME--}</TD>
- <TD align="center" width="15%" class="admin_title bottom2 right2">{--ADMIN_EXT_FILE_SIZE--}</TD>
- <TD align="center" width="15%" class="admin_title bottom2">{--ADMIN_EXT_FILE_VERSION--}</TD>
- </TR>
- {--__EXTENSIONS_ROWS--}
- <TR>
- <TD colspan="2" align="center" class="admin_title right2">{--ADMIN_EXT_TOTAL_FOUND--}:
- <STRONG>{--__TEXT_VALUE!}</STRONG></TD>
- <TD colspan="3" align="right" class="admin_title right2">{--ADMIN_EXT_TOTAL_FSIZE--}: <STRONG>{--__TKBYTES_VALUE!}
- {--KBYTES--}</STRONG> </TD>
- </TR>
-</TABLE>
\ No newline at end of file
+<TABLE border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" align="center">
+<TR>
+ <TD colspan="5" align="center" class="admin_title bottom2" height="30">
+ <STRONG>{--ADMIN_EXT_NEW_FOUND_TITLE--}:</STRONG></TD>
+</TR>
+<TR>
+ <TD align="center" width="5%" class="admin_title bottom2 right2">{--ID_SELECT--}</TD>
+ <TD align="center" width="35%" class="admin_title bottom2 right2">{--ADMIN_EXT_DOWNLOAD_LINK--}</TD>
+ <TD align="center" width="30%" class="admin_title bottom2 right2">{--ADMIN_EXT_FILE_CTIME--}</TD>
+ <TD align="center" width="15%" class="admin_title bottom2 right2">{--ADMIN_EXT_FILE_SIZE--}</TD>
+ <TD align="center" width="15%" class="admin_title bottom2">{--ADMIN_EXT_FILE_VERSION--}</TD>
+</TR>
+{--__EXTENSIONS_ROWS--}
+<TR>
+ <TD colspan="2" align="center" class="admin_title right2">
+ {--ADMIN_EXT_TOTAL_FOUND--}: <STRONG>{!__TEXT_VALUE!}</STRONG>
+ </TD>
+ <TD colspan="3" align="right" class="admin_title right2">
+ {--ADMIN_EXT_TOTAL_FSIZE--}: <STRONG>{!__TKBYTES_VALUE!} {--KBYTES--}</STRONG>
+ </TD>
+</TR>
+</TABLE>
-<FORM
- action="{!URL!}/modules.php?module=admin&what=guestedit&sub={!__SUB_VALUE!}"
- method="POST" target="_self">
-<TABLE border="0" cellspacing="0" cellpadding="0" width="600"
- class="admin_table dashed">
- <TR>
- <TH class="admin_title bottom2 right2" align="center" width="30"
- height="30"><STRONG>{--ID_SELECT--}</STRONG></TH>
- <TH class="admin_title bottom2 right2" align="center"><STRONG>{--DISPLAY_ACTION--}</STRONG></TH>
- <TH class="admin_title bottom2 right2" align="center"><STRONG>{--DISPLAY_WHAT--}</STRONG></TH>
- <TH class="admin_title bottom2 right2" align="center"><STRONG>{--DISPLAY_TITLE--}</STRONG></TH>
- <TH class="admin_title bottom2" align="center"><STRONG>{--SORT_NAVIGATION--}</STRONG></TH>
- </TR>
- {!__MENU_ROWS!}
- <TR>
- <TD colspan="5" align="center" class="admin_footer"><INPUT
- type="reset" class="admin_reset" value="{--UNDO_SELECTIONS--}"
- class="admin_normal"> * <INPUT type="submit"
- class="admin_submit" name="edit" value="{--EDIT_MENUS--}"> *
- <INPUT type="submit" class="admin_submit" name="status"
- value="{--CHANGE_MENUS--}"> * <INPUT type="submit"
- class="admin_delete submit" name="del" value="{--DEL_MENUS--}">
- </TD>
- </TR>
+<FORM action="{!URL!}/modules.php?module=admin&what=guestedit&sub={!__SUB_VALUE!}" method="POST" target="_self">
+<TABLE border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
+<TR>
+ <TH class="admin_title bottom2 right2" align="center" width="30" height="30"><STRONG>{--ID_SELECT--}</STRONG></TH>
+ <TH class="admin_title bottom2 right2" align="center"><STRONG>{--DISPLAY_ACTION--}</STRONG></TH>
+ <TH class="admin_title bottom2 right2" align="center"><STRONG>{--DISPLAY_WHAT--}</STRONG></TH>
+ <TH class="admin_title bottom2 right2" align="center"><STRONG>{--DISPLAY_TITLE--}</STRONG></TH>
+ <TH class="admin_title bottom2" align="center"><STRONG>{--SORT_NAVIGATION--}</STRONG></TH>
+</TR>
+{!__MENU_ROWS!}
+<TR>
+ <TD colspan="5" align="center" class="admin_footer">
+ <INPUT type="reset" class="admin_reset" value="{--UNDO_SELECTIONS--}" class="admin_normal"> *
+ <INPUT type="submit" class="admin_submit" name="edit" value="{--EDIT_MENUS--}"> *
+ <INPUT type="submit" class="admin_submit" name="status" value="{--CHANGE_MENUS--}"> *
+ <INPUT type="submit" class="admin_delete submit" name="del" value="{--DEL_MENUS--}">
+ </TD>
+</TR>
</TABLE>
-</FORM>
\ No newline at end of file
+</FORM>
-<TABLE border="0" cellspacing="0" cellpadding="0" width="600"
- class="admin_table dashed" align="center">
- <TR>
- <TD colspan="5" align="center" class="admin_title bottom2" height="30">
- <STRONG>{--ADMIN_EXT_NEW_FOUND_TITLE--}:</STRONG></TD>
- </TR>
- <TR>
- <TD align="center" width="5%" class="admin_title bottom2 right2">{--ID_SELECT--}</TD>
- <TD align="center" width="35%" class="admin_title bottom2 right2">{--ADMIN_EXT_DOWNLOAD_LINK--}</TD>
- <TD align="center" width="30%" class="admin_title bottom2 right2">{--ADMIN_EXT_FILE_CTIME--}</TD>
- <TD align="center" width="15%" class="admin_title bottom2 right2">{--ADMIN_EXT_FILE_SIZE--}</TD>
- <TD align="center" width="15%" class="admin_title bottom2">{--ADMIN_EXT_FILE_VERSION--}</TD>
- </TR>
- {!__EXTENSIONS_ROWS!}
- <TR>
- <TD colspan="2" align="center" class="admin_title right2">{--ADMIN_EXT_TOTAL_FOUND--}:
- <STRONG>{!__TEXT_VALUE!}</STRONG></TD>
- <TD colspan="3" align="right" class="admin_title right2">{--ADMIN_EXT_TOTAL_FSIZE--}: <STRONG>{--__TKBYTES_VALUE!}
- {--KBYTES--}</STRONG> </TD>
- </TR>
+<TABLE border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" align="center">
+<TR>
+ <TD colspan="5" align="center" class="admin_title bottom2" height="30">
+ <STRONG>{--ADMIN_EXT_NEW_FOUND_TITLE--}:</STRONG></TD>
+</TR>
+<TR>
+ <TD align="center" width="5%" class="admin_title bottom2 right2">{--ID_SELECT--}</TD>
+ <TD align="center" width="35%" class="admin_title bottom2 right2">{--ADMIN_EXT_DOWNLOAD_LINK--}</TD>
+ <TD align="center" width="30%" class="admin_title bottom2 right2">{--ADMIN_EXT_FILE_CTIME--}</TD>
+ <TD align="center" width="15%" class="admin_title bottom2 right2">{--ADMIN_EXT_FILE_SIZE--}</TD>
+ <TD align="center" width="15%" class="admin_title bottom2">{--ADMIN_EXT_FILE_VERSION--}</TD>
+</TR>
+{!__EXTENSIONS_ROWS!}
+<TR>
+ <TD colspan="2" align="center" class="admin_title right2">
+ {--ADMIN_EXT_TOTAL_FOUND--}: <STRONG>{!__TEXT_VALUE!}</STRONG>
+ </TD>
+ <TD colspan="3" align="right" class="admin_title right2">
+ {--ADMIN_EXT_TOTAL_FSIZE--}: <STRONG>{--__TKBYTES_VALUE!} {--KBYTES--}</STRONG>
+ </TD>
+</TR>
</TABLE>
</TR>
<TR>
<TD align="right" class="bottom2 right2">{--SPONSOR_ENTER_URL--}: </TD>
- <TD class="bottom2"> [ <A href="{--__SPONSOR_URL--}" target="_blank"><STRONG>{--EMAIL_URL_TEST--}</STRONG></A> ] </TD>
+ <TD class="bottom2"> [ <A href="{--__SPONSOR_URL--}" target="_blank"><STRONG>{--ADMIN_TEST_URL--}</STRONG></A> ] </TD>
</TR>
<TR>
<TD colspan="2" align="center" class="admin_title bottom2" height="30">
<FORM action="{!URL!}/modules.php?module=admin&what=list_surfbar_reflvl" method="POST">
-<TABLE border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="600">
+<TABLE border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
<TR>
<TD align="center" colspan="3" class="admin_title" height="30"><STRONG>{--EDIT_DEL_REFDEPTH--}</STRONG>
</TD>
--- /dev/null
+<FORM action="{!URL!}/modules.php?module=admin&what=list_surfbar_urls" method="POST">
+<TABLE border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
+<TR>
+ <TD align="center" colspan="9" class="admin_title" height="30">
+ <STRONG>{--EDIT_DEL_REFDEPTH--}</STRONG>
+ </TD>
+</TR>
+<TR>
+ <TD class="admin_title bottom2 right2" align="center"><STRONG>{--ID_SELECT--}</STRONG></TD>
+ <TD class="admin_title bottom2 right2" align="center"><STRONG>{--_UID--}</STRONG></TD>
+ <TD class="admin_title bottom2 right2" align="center"><STRONG>{--ADMIN_TEST_URL--}</STRONG></TD>
+ <TD class="admin_title bottom2 right2" align="center"><STRONG>{--ADMIN_SURFBAR_REWARD--}</STRONG></TD>
+ <TD class="admin_title bottom2 right2" align="center"><STRONG>{--ADMIN_SURFBAR_VIEWS_TOTAL--}</STRONG></TD>
+ <TD class="admin_title bottom2 right2" align="center"><STRONG>{--ADMIN_SURFBAR_STATUS--}</STRONG></TD>
+ <TD class="admin_title bottom2 right2" align="center"><STRONG>{--ADMIN_SURFBAR_REGISTERED--}</STRONG></TD>
+ <TD class="admin_title bottom2 right2" align="center"><STRONG>{--ADMIN_SURFBAR_LAST_LOCKED--}</STRONG></TD>
+ <TD class="admin_title bottom2" align="center"><STRONG>{--ADMIN_SURFBAR_LOCK_REASON--}</STRONG></TD>
+</TR>
+$content
+<TR>
+ <TD class="admin_footer" align="center" colspan="9">
+ <INPUT type="reset" class="admin_reset" value="{--UNDO_SELECTIONS--}"> *
+ <INPUT type="submit" name="edit" class="admin_submit" value="{--ADMIN_SURFBAR_EDIT_URL--}"> *
+ <INPUT type="submit" name="lock" class="admin_submit" value="{--ADMIN_SURFBAR_UNLOCK_URL--}"> *
+ <INPUT type="submit" name="del" class="admin_delete" value="{--ADMIN_SURFBAR_DEL_URL--}">
+ </TD>
+</TR>
+</TABLE>
+</FORM>
--- /dev/null
+<TR>
+ <TD align="center" class="bottom2 right2 switch_sw$content[sw]">
+ <INPUT type="checkbox" name="id[$content[id]]" value="1" class="admin_normal" />
+ </TD>
+ <TD align="center" class="bottom2 right2 switch_sw$content[sw]">
+ $content[userid]
+ </TD>
+ <TD align="center" class="bottom2 right2 switch_sw$content[sw]">
+ <a href="$content[url]" target="_blank" title="{--ADMIN_TEST_URL--}">{--ADMIN_TEST_URL--}</a>
+ </TD>
+ <TD align="center" class="bottom2 right2 switch_sw$content[sw]">
+ $content[reward] {!POINTS!}
+ </TD>
+ <TD align="center" class="bottom2 right2 switch_sw$content[sw]">
+ $content[views_total]
+ </TD>
+ <TD align="center" class="bottom2 right2 switch_sw$content[sw]">
+ $content[status]
+ </TD>
+ <TD align="center" class="bottom2 right2 switch_sw$content[sw]">
+ $content[registered]
+ </TD>
+ <TD align="center" class="bottom2 right2 switch_sw$content[sw]">
+ $content[last_locked]
+ </TD>
+ <TD align="center" class="bottom2 switch_sw$content[sw]">
+ $content[lock_reason]
+ </TD>
+</TR>
<TD align="center" class="bottom2 right2">{--EMAIL_URL--}:<BR />
<STRONG><A
href="{!URL!}/modules.php?module=frametester&url={--__LIST_UNCON_URL--}"
- target="_blank">{--EMAIL_URL_TEST--}</A></STRONG></TD>
+ target="_blank">{--ADMIN_TEST_URL--}</A></STRONG></TD>
<TD align="center" class="bottom2">{--EMAIL_TIMESTAMP--}:<BR />
<STRONG>{--__LIST_UNCON_STAMP--}</STRONG></TD>
</TR>
-<FORM
- action="{!URL!}/modules.php?module=admin&what=memedit&sub={!__SUB_VALUE!}"
- method="POST" target="_self">
-<TABLE border="0" cellspacing="0" cellpadding="0" width="600"
- class="admin_table dashed">
- <TR>
- <TH class="admin_title bottom2 right2" align="center" width="5%"
- height="30"><STRONG>{--ID_SELECT--}</STRONG></TH>
- <TH class="admin_title bottom2 right2" align="center" width="25%"><STRONG>{--DISPLAY_ACTION--}</STRONG></TH>
- <TH class="admin_title bottom2 right2" align="center" width="25%"><STRONG>{--DISPLAY_WHAT--}</STRONG></TH>
- <TH class="admin_title bottom2" align="center" width="25%"><STRONG>{--DISPLAY_TITLE--}</STRONG></TH>
- <TH class="admin_title bottom2" align="center" width="20%"><STRONG>{--SORT_NAVIGATION--}</STRONG></TH>
- </TR>
- {!__MENU_ROWS!}
- <TR>
- <TD colspan="5" align="center" class="admin_footer"><INPUT
- type="reset" class="admin_reset" value="{--UNDO_SELECTIONS--}"
- class="admin_normal"> * <INPUT type="submit"
- class="admin_submit" name="edit" value="{--EDIT_MENUS--}"> *
- <INPUT type="submit" class="admin_submit" name="status"
- value="{--CHANGE_MENUS--}"> * <INPUT type="submit"
- class="admin_delete" name="del" value="{--DEL_MENUS--}"></TD>
- </TR>
+<FORM action="{!URL!}/modules.php?module=admin&what=memedit&sub={!__SUB_VALUE!}" method="POST" target="_self">
+<TABLE border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
+<TR>
+ <TH class="admin_title bottom2 right2" align="center" width="5%" height="30"><STRONG>{--ID_SELECT--}</STRONG></TH>
+ <TH class="admin_title bottom2 right2" align="center" width="25%"><STRONG>{--DISPLAY_ACTION--}</STRONG></TH>
+ <TH class="admin_title bottom2 right2" align="center" width="25%"><STRONG>{--DISPLAY_WHAT--}</STRONG></TH>
+ <TH class="admin_title bottom2" align="center" width="25%"><STRONG>{--DISPLAY_TITLE--}</STRONG></TH>
+ <TH class="admin_title bottom2" align="center" width="20%"><STRONG>{--SORT_NAVIGATION--}</STRONG></TH>
+</TR>
+{!__MENU_ROWS!}
+<TR>
+ <TD colspan="5" align="center" class="admin_footer">
+ <INPUT type="reset" class="admin_reset" value="{--UNDO_SELECTIONS--}" class="admin_normal"> *
+ <INPUT type="submit" class="admin_submit" name="edit" value="{--EDIT_MENUS--}"> *
+ <INPUT type="submit" class="admin_submit" name="status" value="{--CHANGE_MENUS--}"> *
+ <INPUT type="submit" class="admin_delete" name="del" value="{--DEL_MENUS--}">
+ </TD>
+</TR>
</TABLE>
-</FORM>
\ No newline at end of file
+</FORM>
<FORM action="{!URL!}/modules.php?module=admin&what=config_points&sub=ref" method="POST">
-<TABLE border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" width="600">
+<TABLE border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
<TR>
<TD align="center" colspan="3" class="admin_title" height="30">
<STRONG>{--EDIT_DEL_REFDEPTH--}</STRONG>
-<TABLE border="0" cellspacing="0" cellpadding="0" width="600"
- class="admin_table dashed" align="center">
- <TR>
- <TD colspan="5" align="center" class="admin_title bottom2" height="30">
- <STRONG>{--ADMIN_THEME_NEW_FOUND_TITLE--}:</STRONG></TD>
- </TR>
- <TR>
- <TD align="center" width="5%" class="admin_title bottom2 right2">{--ID_SELECT--}</TD>
- <TD align="center" width="35%" class="admin_title bottom2 right2">{--ADMIN_EXT_DOWNLOAD_LINK--}</TD>
- <TD align="center" width="30%" class="admin_title bottom2 right2">{--ADMIN_THEME_FILE_CTIME--}</TD>
- <TD align="center" width="15%" class="admin_title bottom2 right2">{--ADMIN_EXT_FILE_SIZE--}</TD>
- <TD align="center" width="15%" class="admin_title bottom2">{--THEME_VERSION--}</TD>
- </TR>
- {--__THEMES_ROWS--}
- <TR>
- <TD colspan="2" align="center" class="admin_title right2">{--ADMIN_THEME_TOTAL_FOUND--}:
- <STRONG>{--__TTHEME_VALUE!}</STRONG></TD>
- <TD colspan="3" align="right" class="admin_title right2">{--ADMIN_EXT_TOTAL_FSIZE--}: <STRONG>{--__TKBYTES_VALUE!}
- {--KBYTES--}</STRONG> </TD>
- </TR>
-</TABLE>
\ No newline at end of file
+<TABLE border="0" cellspacing="0" cellpadding="0" class="admin_table dashed" align="center">
+<TR>
+ <TD colspan="5" align="center" class="admin_title bottom2" height="30">
+ <STRONG>{--ADMIN_THEME_NEW_FOUND_TITLE--}:</STRONG>
+ </TD>
+</TR>
+<TR>
+ <TD align="center" width="5%" class="admin_title bottom2 right2">{--ID_SELECT--}</TD>
+ <TD align="center" width="35%" class="admin_title bottom2 right2">{--ADMIN_EXT_DOWNLOAD_LINK--}</TD>
+ <TD align="center" width="30%" class="admin_title bottom2 right2">{--ADMIN_THEME_FILE_CTIME--}</TD>
+ <TD align="center" width="15%" class="admin_title bottom2 right2">{--ADMIN_EXT_FILE_SIZE--}</TD>
+ <TD align="center" width="15%" class="admin_title bottom2">{--THEME_VERSION--}</TD>
+</TR>
+{!__THEMES_ROWS!}
+<TR>
+ <TD colspan="2" align="center" class="admin_title right2">
+ {--ADMIN_THEME_TOTAL_FOUND--}: <STRONG>{!__TTHEME_VALUE!}</STRONG>
+ </TD>
+ <TD colspan="3" align="right" class="admin_title right2">
+ {--ADMIN_EXT_TOTAL_FSIZE--}: <STRONG>{!__TKBYTES_VALUE!} {--KBYTES--}</STRONG>
+ </TD>
+</TR>
+</TABLE>
<TD class="switch_sw$content[sw] top2 right2 admin_misc" align="center">$content[u_link]</TD>
<TD class="switch_sw$content[sw] top2 right2 admin_misc">$content[subj]</TD>
<TD class="switch_sw$content[sw] top2 right2" align="center"><A
- href="$content[tester]" target="_blank">{--EMAIL_URL_TEST--}</A> <INPUT
+ href="$content[tester]" target="_blank">{--ADMIN_TEST_URL--}</A> <INPUT
type="hidden" name="url[$content[id]]" value="$content[url]">
</TD>
<TD class="switch_sw$content[sw] top2 right2 admin_misc" align="center">
-<FORM action="{!URL!}/modules.php?module=login&what=categories"
- method="POST" style="margin-bottom: 0px">
-<TABLE border="0" cellspacing="0" cellpadding="0" width="600"
- align="center" class="member_main dashed">
- <TR>
- <TD colspan="5" height="5" class="seperator"></TD>
- </TR>
- <TR>
- <TD width="5" class="seperator" rowspan="{!__ROWS!}"> </TD>
- <TD align="center" class="member_header" width="408"><STRONG>{--CATNAME--}</STRONG></TD>
- <TD width="2" class="seperator"> </TD>
- <TD align="center" class="member_header" width="180"><STRONG>{--SELECT_CAT--}</STRONG></TD>
- <TD width="5" class="seperator" rowspan="{!__ROWS!}"> </TD>
- </TR>
- <TR>
- <TD colspan="3" height="5" class="seperator"></TD>
- </TR>
\ No newline at end of file
+<FORM action="{!URL!}/modules.php?module=login&what=categories" method="POST" style="margin-bottom: 0px">
+<TABLE border="0" cellspacing="0" cellpadding="0" align="center" class="member_main dashed">
+<TR>
+ <TD colspan="5" height="5" class="seperator"></TD>
+</TR>
+<TR>
+ <TD width="5" class="seperator" rowspan="{!__ROWS!}"> </TD>
+ <TD align="center" class="member_header" width="408"><STRONG>{--CATNAME--}</STRONG></TD>
+ <TD width="2" class="seperator"> </TD>
+ <TD align="center" class="member_header" width="180"><STRONG>{--SELECT_CAT--}</STRONG></TD>
+ <TD width="5" class="seperator" rowspan="{!__ROWS!}"> </TD>
+</TR>
+<TR>
+ <TD colspan="3" height="5" class="seperator"></TD>
+</TR>
-<FORM action="{!URL!}/modules.php?module=login&what=holiday"
- method="POST" style="margin-bottom: 0px">
-<TABLE border="0" cellspacing="0" cellpadding="0" width="600"
- class="member_table dashed">
+<FORM action="{!URL!}/modules.php?module=login&what=holiday" method="POST" style="margin-bottom: 0px">
+<TABLE border="0" cellspacing="0" cellpadding="0" class="member_table dashed">
<TR>
<TD colspan="3" align="center" class="bottom member_title2"
height="30"><STRONG>{--HOLIDAY_MEMBER_DEACTIVATE_TITLE--}</STRONG>
<TD colspan="3" class="seperator" height="5"> </TD>
</TR>
<TR>
- <TD colspan="3" align="center"><FONT class="member_note">{--HOLIDAY_DEACTIVATE_NOTES--}</FONT>
+ <TD colspan="3" align="center">
+ <FONT class="member_note">{--HOLIDAY_DEACTIVATE_NOTES--}</FONT>
</TD>
</TR>
<TR>
<TD colspan="3" class="seperator bottom" height="5"> </TD>
</TR>
<TR>
- <TD colspan="3" align="center" class="member_footer"><INPUT
- type="reset" class="member_reset" value="{--CLEAR_FORM--}"> *
- <INPUT type="submit" name="stop" class="member_submit"
- value="{--HOLIDAY_STOP--}"></TD>
+ <TD colspan="3" align="center" class="member_footer">
+ <INPUT type="reset" class="member_reset" value="{--CLEAR_FORM--}" /> *
+ <INPUT type="submit" name="stop" class="member_submit" value="{--HOLIDAY_STOP--}" />
+ </TD>
</TR>
</TABLE>
</FORM>
-<FORM action="{!URL!}/modules.php?module=login&what=holiday"
- method="POST" style="margin-bottom: 0px">
-<TABLE border="0" cellspacing="0" cellpadding="0" width="600"
- class="member_table dashed">
+<FORM action="{!URL!}/modules.php?module=login&what=holiday" method="POST" style="margin-bottom: 0px">
+<TABLE border="0" cellspacing="0" cellpadding="0" class="member_table dashed">
<TR>
<TD colspan="3" align="center" class="bottom member_title2"
height="30"><STRONG>{--HOLIDAY_MEMBER_TITLE--}</STRONG></TD>
-<TABLE border="0" cellspacing="0" cellpadding="0" align="center"
- class="member_misc dashed" width="600">
- <TR>
- <TD colspan="3" align="center" height="25" class="member_header">
- <STRONG class="member_done">{--MEMBER_POOL_CONTENT--}</STRONG></TD>
- </TR>
- {--__STATS_ROWS--}
+<TABLE border="0" cellspacing="0" cellpadding="0" align="center" class="member_misc dashed">
+<TR>
+ <TD colspan="3" align="center" height="25" class="member_header">
+ <STRONG class="member_done">{--MEMBER_POOL_CONTENT--}</STRONG>
+ </TD>
+</TR>
+{!__STATS_ROWS!}
</TABLE>