]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-reflinks.php
config.php partly solved, see #117
[mailer.git] / inc / modules / member / what-reflinks.php
index af9f9f29a9832df63e6b0ee0e7de44868f47b1d5..64e00bf64faa9d6cf29f07e77f6e5719695da347 100644 (file)
@@ -10,7 +10,7 @@
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Referal-Links                                    *
  * -------------------------------------------------------------------- *
- * $Revision:: 856                                                    $ *
+ * $Revision::                                                        $ *
  * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
  * $Author::                                                          $ *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 } elseif (!IS_MEMBER()) {
-       LOAD_URL("modules.php?module=index");
+       redirectToUrl('modules.php?module=index');
 }
 
 // Add description as navigation point
-ADD_DESCR("member", __FILE__);
+ADD_DESCR('member', __FILE__);
 
 // Load current referal clicks
 $result = SQL_QUERY_ESC("SELECT ref_clicks FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
@@ -57,7 +57,7 @@ OUTPUT_HTML("<div class=\"tiny\">{--YOUR_PERSONAL_REFLINK--}:<br />
 <strong><a href=\"{!URL!}/ref.php?refid=".getUserId()."\" target=\"_blank\">{!URL!}/ref.php?ref=".getUserId()."</a></strong><br />
 <br />");
 
-if (EXT_IS_ACTIVE("nickname")) {
+if (EXT_IS_ACTIVE('nickname')) {
        // Add nickname link when nickname is entered
        $nick = NICKNAME_GET_NICK(getUserId());
 
@@ -76,17 +76,17 @@ if (EXT_IS_ACTIVE("nickname")) {
 // Clicks on your reflink
 OUTPUT_HTML("{--YOUR_REFCLICKS--}: <strong>".$c."</strong> {--CLICKS--}</div><br /><br />");
 $whereStatement = " WHERE `visible`='Y'";
-if (IS_ADMIN()) $whereStatement = "";
+if (IS_ADMIN()) $whereStatement = '';
 $result = SQL_QUERY("SELECT id, url, alternate, counter, clicks FROM `{!_MYSQL_PREFIX!}_refbanner`", __FILE__, __LINE__);
 
 if (SQL_NUMROWS($result) > 0) {
        // List available ref banners
-       $OUT = ""; $SW = 2;
+       $OUT = ''; $SW = 2;
        while ($content = SQL_FETCHARRAY($result)) {
                $test = str_replace(constant('URL'), constant('PATH'), $content['url']); $size = 0;
                if ($test == $content['url']) {
                        // Download banner (I hope you keep the banner on same server???)
-                       $fp = GET_URL($content['url']); $bannerContent = "";
+                       $fp = sendGetRequest($content['url']); $bannerContent = '';
                        if ((!empty($fp)) && (is_array($fp)) && (count($fp) > 0) {
                                // Loads only found banner, when there is a 404 error this foreach() command
                                // will cause an "Invalid argument supplied for foreach()" error
@@ -95,11 +95,11 @@ if (SQL_NUMROWS($result) > 0) {
                                }
                        }
                        $size = strlen($bannerContent);
-               } elseif (FILE_READABLE($test)) {
+               } elseif (isFileReadable($test)) {
                        $size = filesize($test);
                }
 
-               if ($size > 0) $content['alternate'] .= " (".TRANSLATE_COMMA(round($size/102.4)/10)." {--KBYTES--})";
+               if ($size > 0) $content['alternate'] .= " (".translateComma(round($size/102.4)/10)." {--KBYTES--})";
 
                // Load banner data
                // @TODO Rewritings: alt->alternate,cnt->counter,cks->clicks,uid->userid in template
@@ -126,7 +126,7 @@ if (SQL_NUMROWS($result) > 0) {
        LOAD_TEMPLATE("member_reflinks_table", false, getUserId());
 } else {
        // No refbanner found!
-       LOAD_TEMPLATE("admin_settings_saved", false, getMessage('MEMBER_NO_REFBANNER_FOUND'));
+       LOAD_TEMPLATE('admin_settings_saved', false, getMessage('MEMBER_NO_REFBANNER_FOUND'));
 }
 
 // Free result