new_topic_action_row

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "new_topic_action_row".
... in new_topic_action_row.naml
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
<override_macro name="new_topic_action_row" requires="node_page">
    <n.if.equal value1="[n.page_node.id/]" value2='525' >
        <then>
    <tr>
        <td style="width:20px">
            <img src="http://cdn1.iconfinder.com/data/icons/woocons1/News%20Add.png" class="image16" border="0"/>
        </td>
        <td class="nowrap" style="padding-left:.2em">
            <n.page_node.new_topic_link
                text="[t]New Notice[/t]"
                title="[t]Post new notice in [t.location.page_node.subject/][/t]"
            />
        </td>
    </tr>
</then>
        <else>
        <n.if.equal value1="[n.page_node.id/]" value2='871' >
<then>
    <tr>
        <td style="width:20px">
            <img src="http://cdn1.iconfinder.com/data/icons/fatcow/32/chart_bar.png" class="image16" border="0"/>
        </td>
        <td class="nowrap" style="padding-left:.2em">
            <n.page_node.new_topic_link
                text="[t]New Poll[/t]"
                title="[t]Post new poll in [t.location.page_node.subject/][/t]"
            />
        </td>
    </tr>
</then>
        <else>
            <tr>
        <td style="width:20px">
            <img src="http://www.sniperjum.com/images-forum/newtopic.png" class="image16" border="0"/>
        </td>
        <td class="nowrap" style="padding-left:.2em">
            <n.page_node.new_topic_link
                text="[t]New Post[/t]"
                title="[t]Post new message in [t.location.page_node.subject/][/t]"
            />
        </td>
    </tr>
    </else>
</n.if.equal>
    </else>
</n.if.equal>
</override_macro>
Overrides default macro
... in widget.naml
69
70
71
72
73
74
75
76
77
78
79
80
81
<macro name="new_topic_action_row" requires="node_page">
    <tr>
        <td style="width:20px">
            <img src="/images/icon_post_message.png" class="image16" border="0"/>
        </td>
        <td class="nowrap" style="padding-left:.2em">
            <n.page_node.new_topic_link
                text="[t]New Post[/t]"
                title="[t]Post new message in [t.location.page_node.subject/][/t]"
            />
        </td>
    </tr>
</macro>