Havas Okulu

Havas Okulu (https://www.havasokulu.com/)
-   vBulletin (https://www.havasokulu.com/vbulletin/)
-   -   vBulletin Dbtech Üye Etiketleme Sistemi Footer Link Kaldırmak (https://www.havasokulu.com/vbulletin/591-vbulletin-dbtech-uye-etiketleme-sistemi-footer-link-kaldirmak.html)

HeartLess 28.05.15 10:22

vBulletin Dbtech Üye Etiketleme Sistemi Footer Link Kaldırmak
 
dbtech > usertag > hooks > global_start[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...]php dosyasındakilerin içindekini boşaltın alttakileri yazın

PHP- Kodu:

<?php
// Fetch required classes
require_once(DIR '/dbtech/usertag/includes/class_core.php');
require_once(
DIR '/dbtech/usertag/includes/class_cache.php');
if (
intval($vbulletin->versionnumber) == AND !class_exists('vB_Template'))
{
    
// We need the template class
    
require_once(DIR '/dbtech/usertag/includes/class_template.php');
}
if (isset(
$this) AND is_object($this))
{
    
// Loads the cache class
    
USERTAG_CACHE::init($vbulletin$this->datastore_entries);
}
else
{
    
// Loads the cache class
    
USERTAG_CACHE::init($vbulletin$specialtemplates);
}
// Initialise forumon
USERTAG::init($vbulletin);
$vbulletin->options['dbtech_usertag_emaildefault'] =  isset($vbulletin->options['dbtech_usertag_emaildefault']) ?  $vbulletin->options['dbtech_usertag_emaildefault'] : 1;
//if (USERTAG::$permissions['canview'])
//{
    
$show['usertag'] = $vbulletin->options['dbtech_usertag_navbar'];
    
$show['usertag_ispro'] = USERTAG::$isPro;
    if (
$vbulletin->options['dbtech_usertag_integration'] & 1)
    {
        
$show['usertag_ql'] = true;
    }
    if (
$vbulletin->options['dbtech_usertag_integration'] & 2)
    {
        
$show['usertag_cm'] = true;
        
$show['usertag_cm2'] = !($vbulletin->options['dbtech_usertag_disabledfeatures'] & 8);
    }
 
    
// Whether stats are enabled
    
$show['usertag_enablestats'] = $vbulletin->options['dbtech_usertag_enablestats'];
//}
// Show branding or not
$show['dbtech_usertag_producttype'] = (USERTAG::$isPro ' (Pro)' ' (Lite)');
$show['usertag_branding'] =  $vbulletin->options['dbtech_usertag_branding_free'] !=  '25599748-c04cf8c62f9e2c151de89a3f61dea8c2';
if (
$show['usertag_branding'] AND !$show['_dbtech_branding_override'])
{
    
$brandingVariables = array(
        
'flavour'             => 'User Alert System provided by ',
        
'productid'         => 20,
        
'utm_source'         => str_replace('www.'''$_SERVER['HTTP_HOST']),        
        
'utm_content'         => (USERTAG::$isPro 'Pro' 'Lite'),
        
'referrerid'         => $vbulletin->options['dbtech_usertag_referral'],
        
'title'             => 'Advanced User Tagging',
        
'displayversion'     => $vbulletin->options['dbtech_usertag_displayversion'],
        
'version'             => USERTAG::$version,
        
'producttype'         => $show['dbtech_usertag_producttype'],
        
'showhivel'         => (!USERTAG::$isPro AND !$vbulletin->options['dbtech_usertag_nohivel'])
    );
    
$str $brandingVariables['flavour'] . '
        <a rel="nofollow"  href="http://www.dragonbyte-tech.com/vbecommerce.php' 
.  ($brandingVariables['productid'] ? '?productid=' .  $brandingVariables['productid'] . '&do=product&' '?') .  'utm_source=' $brandingVariables['utm_source'] .  '&utm_campaign=Footer%2BLinks&utm_medium=' .  urlencode(str_replace(' ''+'$brandingVariables['title'])) .  '&utm_content=' $brandingVariables['utm_content'] .  ($brandingVariables['referrerid'] ? '&referrerid=' .  $brandingVariables['referrerid'] : '') . '" target="_blank">' .  $brandingVariables['title'] . ($brandingVariables['displayversion'] ? '  v' $brandingVariables['version'] : '') .  $brandingVariables['producttype'] . '</a> - 
        <a href="http://www.dragonbyte-tech.com/?utm_source=' 
.  $brandingVariables['utm_source'] .  '&utm_campaign=Footer%2BLinks&utm_medium=' .  urlencode(str_replace(' ''+'$brandingVariables['title'])) .  '&utm_content=' $brandingVariables['utm_content'] .  ($brandingVariables['referrerid'] ? '&referrerid=' .  $brandingVariables['referrerid'] : '') . '" target="_blank">vBulletin  Mods &amp; Addons</a> Copyright &copy; ' date('Y') . '  DragonByte Technologies Ltd.' 
        (
$brandingVariables['showhivel'] ? ' Runs best on <a  href="http://www.hivelocity.net/?utm_source=Iain%2BKidd&utm_medium=back%2Blink&utm_term=Dedicated%2BServer%2BSponsor&utm_campaign=Back%2BLinks%2Bfrom%2BIain%2BKidd"  target="_blank">HiVelocity Hosting</a>.' '');
 
}



Tüm Zamanlar GMT +3 Olarak Ayarlanmış. Şuanki Zaman: 14:09.

Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.

HavasOkulu.Com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147