Welcome to mirror list, hosted at ThFree Co, Russian Federation.

form_add_goal.tpl « templates « Goals « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 73a4f89f57740bc9cc64d97ad09ea684ef7bca30 (plain)
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
<div class='entityAddContainer' style="display:none;">
<form>
<table class="dataTable entityTable">
	<thead>
		<tr class="first">
			<th colspan="2">{'Goals_AddNewGoal'|translate}</th>
		<tr>
	</thead>
	<tbody>
		<tr>
            <td class="first">{'Goals_GoalName'|translate} </th>
			<td><input type="text" name="name" value="" size="28" id="goal_name" class="inp" /></td>
		</tr>
		<tr>
			<td style='width:260px;' class="first">{'Goals_GoalIsTriggered'|translate}
				<select name="trigger_type" class="inp">
					<option value="visitors">{'Goals_WhenVisitors'|translate}</option>
					<option value="manually">{'Goals_Manually'|translate}</option>
				</select>
			</td>
			<td>
				<input type="radio" id="match_attribute_url" value="url" name="match_attribute" />
                <label for="match_attribute_url">{'Goals_VisitUrl'|translate}</label>
				<br />
				<input type="radio" id="match_attribute_title" value="title" name="match_attribute" />
                <label for="match_attribute_title">{'Goals_VisitPageTitle'|translate}</label>
				<br />
				<input type="radio" id="match_attribute_file" value="file" name="match_attribute" />
				<label for="match_attribute_file">{'Goals_Download'|translate}</label>
				<br />
				<input type="radio" id="match_attribute_external_website" value="external_website" name="match_attribute" />
				<label for="match_attribute_external_website">{'Goals_ClickOutlink'|translate}</label>
			</td>
			</tr>
	</tbody>
	<tbody id="match_attribute_section">
		<tr>
			<td class="first">{'Goals_WhereThe'|translate} <span id="match_attribute_name"></span></td>
			<td>
				<select name="pattern_type" class="inp">
                    <option value="contains">{'Goals_Contains'|translate:""}</option>
                    <option value="exact">{'Goals_IsExactly'|translate:""}</option>
                    <option value="regex">{'Goals_MatchesExpression'|translate:""}</option>
				</select>
			
				<input type="text" name="pattern" value="" size="16" class="inp" />
				<br />
				<div id="examples_pattern" class="entityInlineHelp"></div>
				<br />
				<span style="float:right">
				{'Goals_Optional'|translate} <input type="checkbox" id="case_sensitive" />
                <label for="case_sensitive">{'Goals_CaseSensitive'|translate}</label>
				</span>
			</td>
		</tr>
	</tbody>
	<tbody id="manual_trigger_section" style="display:none">
		<tr><td colspan="2" class="first">
				{'Goals_WhereVisitedPageManuallyCallsJavascriptTrackerLearnMore'|translate:"<a target='_blank' href='?module=Proxy&action=redirect&url=http://piwik.org/docs/javascript-tracking/%23toc-manually-trigger-a-conversion-for-a-goal'>":"</a>"}
		</td></tr>
	</tbody>
	<tbody>
		<tr>
            <td class="first"> {'Goals_AllowMultipleConversionsPerVisit'|translate} </td>
			<td>
				<input type="radio" id="allow_multiple_0" value="0" name="allow_multiple" />
                <label for="allow_multiple_0">{'Goals_DefaultGoalConvertedOncePerVisit'|translate}</label>
            	<div class="entityInlineHelp">  
            		{'Goals_HelpOneConversionPerVisit'|translate}
            	</div>
                <br/>
                
                <input type="radio" id="allow_multiple_1" value="1" name="allow_multiple" />
                <label for="allow_multiple_1">{'Goals_AllowGoalConvertedMoreThanOncePerVisit'|translate}</label>
				<br /><br />
		</tr>
		<tr>
	</tbody>
	<tbody>
		<tr>
            <td class="first">{'Goals_Optional'|translate} {'Goals_DefaultRevenue'|translate}</td>
			<td>{' <input type="text" name="revenue" size="2" value="0" class="inp" /> '|money:$idSite}
            <div class="entityInlineHelp"> {'Goals_DefaultRevenueHelp'|translate} </div>
			</td>
		</tr>
		<tr>
	</tbody>
</table>
        <input type="hidden" name="methodGoalAPI" value="" />	
        <input type="hidden" name="goalIdUpdate" value="" />
        <input type="submit" value="" name="submit" id="goal_submit" class="submit" />
</form>
</div>