Havas Okulu - Tekil Mesaj gösterimi - vBulletin if koşulları
Tekil Mesaj gösterimi
  #5  
Alt 24.05.16, 13:45
HeartLess - ait Kullanıcı Resmi (Avatar)
HeartLess HeartLess isimli Üye şimdilik offline konumundadır
Administrator
 
Üyelik tarihi: 18.08.14
Bulunduğu yer: Dip..
Mesajlar: 4,785
Etiketlendiği Mesaj: 2244 Mesaj
Etiketlendiği Konu: 0 Konu
Standart

Display Information To Members Only
--------------------------
If you want to show a link only to registered members you would use this conditional.

HTML Code:
<if condition="$show['member']"></if>
Display Information To Guests Only
--------------------------
The following conditional will display information only to guests and no one else. This is helpful in displaying a welcome message that you only wish for guests to see.

HTML Code:
<if condition="$show['guest']"></if>
If Viewer is in the Following Usergroups Array. Enter the Usergroup Number(s) Seperated by a Comma
--------------------------
If you want to show an advertisement to viewers that are unregistered, registered members and awaiting email confirmation you would use the usergroup ids 1,2,3 within the array.

HTML Code:
<if condition="is_member_of($vbulletin->userinfo, 1, 2, 3)"></if>
If This Script Is or Is Not XXX
--------------------------
If this script is index (as used in the example below) then it will show the code within the conditional. You can use it to show a piece of code only on Forumhome if you have to put it in a template that is global such as the header. To find out what the script is per page open up the php file that loads the page like for instance showthread.php and look for.

HTML Code:
define('THIS_SCRIPT', 'showthread');
And the showthread part is what you would use.

HTML Code:
<if condition="THIS_SCRIPT == 'index'"></if>
And here you can show information on every page but the index page by using this conditional.

HTML Code:
<if condition="THIS_SCRIPT != 'index'"></if>
If this user equals or does not equal XXX
--------------------------
What this conditional will do is only show certain information if the person viewing the page has the same userid as defined within the conditional. So if you put userid 667 inside the conditional below and put a link inside the conditional tags only the user that has the userid 667 will see that link.

HTML Code:
<if condition="$bbuserinfo['userid'] == 667"></if>
And it works the opposite way as well if you do not want information to show for 667 but you want it to show for everyone else you would use.

HTML Code:
<if condition="$bbuserinfo['userid'] != 667"></if>
Display Information On a Per Forum Basis
--------------------------
This conditional allows you to display information on a per forum basis. This can be helpful if you wish to display different advertisements depending on what forum that the user is in. You would simply replace X with the forum id that you wish the information to appear in.

HTML Code:
<if condition="$forum[forumid] == X"></if>
And on the other hand you can use the ! to do the opposite and display the information in every forum but the id you list.

HTML Code:
<if condition="$forum[forumid] != X"></if>
Or if you have multiple forums you wish to include something with you can use an array such as this.

HTML Code:
<if condition="in_array($forum['forumid'], array(1,2,3,6))"></if>
If Usergroup Is or Is Not X
--------------------------
If the user is a member of the x usergroup then show the code.

HTML Code:
<if condition="$post['usergroupid'] == 6"></if>
And then you can use the ! to tell it to not show it to the x usergroup but show it to everyone else.

HTML Code:
<if condition="$post['usergroupid'] != 6"></if>
If Users Birthday is Less Than or Greater Than XXXX-XX-XX Do Something
--------------------------
Just to show the power of vBulletin here is a cool conditional that will show information based on the birthday of the user. The one below will show "Too Young" if they were born after 01-01-1980.

HTML Code:
<if condition="$bbuserinfo['birthday_search'] > '1980-01-01'">Too Young</if>
And this one will show you "Too Young" if the user was born before 01-01-1980.

HTML Code:
<if condition="$bbuserinfo['birthday_search'] < '1980-01-01'">Too Young</if>
If Thread is or is not in X Forum Execute Code
--------------------------
For instance if you want a piece of code to appear within thread in a particular forum you can do so with this conditional.

HTML Code:
<if condition="$thread['forumid'] == X"></if>
If you want to show the piece of code on every new reply on every thread but 1 forum you can use this which says if thread is in forum x do not show the code but show it for all the other threads out side of forum x.

HTML Code:
<if condition="$thread['forumid'] != X"></if>
And of course you can define multiple forum ids with the array.

HTML Code:
<if condition="in_array($thread['forumid'], array(1,2,3,6))"></if>
Is user moderator of any forum?
--------------------------
If the user is a moderator execute code.

HTML Code:
<if condition="can_moderate()"></if>
Is user moderator of current forum?
--------------------------
If the user is a moderator of the current forum execute code.

HTML Code:
<if condition="can_moderate($forum['forumid'])"></if>
Is user moderator of X Forum?
--------------------------
If the user is a moderator of x forum execute code.

HTML Code:
<if condition="can_moderate($forum['x'])"></if>
Is user the thread starter?
--------------------------
Is the user the thread creator? If so execute code.

HTML Code:
<if condition="$threadinfo['postuserid'] == $bbuserinfo['userid']"></if>
Thread is closed?
--------------------------
If the thread is closed execute code.

HTML Code:
<if condition="!$show['closethread']"></if>
Place Information After First Post
--------------------------
Useful for adding a advertisement or other information after the first post on every page.

HTML Code:
<if condition="!$GLOBALS['FIRSTPOSTID']"></if>
Place Information After x Post On Every Page
--------------------------
This will add your code directly after the post number you define on each page. If you put 2 in place of x the code will appear on every page after the second post.

HTML Code:
<if condition="$post['postcount'] % $vboptions['maxposts'] == x"></if>
Using If Else in Templates
--------------------------
You can also use If Else conditionals within your templates. The below shows you how to correctly do this.

HTML Code:
<if condition="$show['guest']"> Show Guest This Message <else /> Show Everyone but guests this message </if>

__________________
öLürüm yoLuna öLürümde yine boyun eğmem, yakarım dünyayı uğruna ama sana eğiLmem.. öyLe sInIrsIz öyLe Derin öyLe Çok Severim ki KORKARSIN!! Kuruyup çöLe dönsemde Pare Pare oLsamda YENiLMEM!!..
Alıntı ile Cevapla
 

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