-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmod_subs.xml
44 lines (40 loc) · 1.14 KB
/
mod_subs.xml
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
<?xml version="1.0"?>
<!DOCTYPE modification SYSTEM "http://www.simplemachines.org/xml/modification">
<modification xmlns="http://www.simplemachines.org/xml/modification" xmlns:smf="http://www.simplemachines.org/">
<id>temar:TEA</id>
<version>1.1.2</version>
<file name="$sourcedir/Subs.php">
<operation>
<search position="replace"><![CDATA[function setupMenuContext()
{
global $context, $modSettings, $user_info, $txt, $scripturl;
]]></search>
<add><![CDATA[function setupMenuContext()
{
global $context, $modSettings, $user_info, $txt, $scripturl;
loadLanguage('TEA');
]]></add>
</operation>
<operation>
<search position="replace"><![CDATA[ ),
),
'pm' => array(
'title' => $txt['pm_short'],
'href' => $scripturl . '?action=pm',
'show' => $context['allow_pm'],
]]></search>
<add><![CDATA[ 'tea' => array(
'title' => $txt['tea_tea'],
'href' => $scripturl . '?action=profile;area=tea',
'show' => true,
),
),
),
'pm' => array(
'title' => $txt['pm_short'],
'href' => $scripturl . '?action=pm',
'show' => $context['allow_pm'],
]]></add>
</operation>
</file>
</modification>