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

class.tpl « templates « default « templates « Smarty « HTML « Converters « phpDocumentor « PhpDocumentor-1.3.2 « libs - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 399116ade39f38e3713b8334307c9f9e592d565a (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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{include file="header.tpl" eltype="class" hasel=true contents=$classcontents}

{if $conflicts.conflict_type}<p class="warning">Conflicts with classes:<br />
	{section name=me loop=$conflicts.conflicts}
	{$conflicts.conflicts[me]}<br />
	{/section}
<p>
	{/if}

<div class="leftcol">
	<h3><a href="#class_details">{if $is_interface}Interface{else}Class{/if} Overview</a> <span class="smalllinenumber">[line {if $class_slink}{$class_slink}{else}{$line_number}{/if}]</span></h3>
	<div id="classTree"><pre>{section name=tree loop=$class_tree.classes}{$class_tree.classes[tree]}{$class_tree.distance[tree]}{/section}</pre>
</div>
	<div class="small">
	<p>{$sdesc|default:''}</p>
	{if $tutorial}
	<h4 class="classtutorial">{if $is_interface}Interface{else}Class{/if} Tutorial:</h4>
	<ul>
		<li>{$tutorial}</li>
	</ul>
	{/if}
	<h4>Author(s):</h4>
	<ul>
		{section name=tag loop=$tags}
			{if $tags[tag].keyword eq "author"}
			<li>{$tags[tag].data}</li>
			{/if}
		{/section}
	</ul>
	<h4>Version:</h4>
	<ul>
		{section name=tag loop=$tags}
			{if $tags[tag].keyword eq "version"}
			<li>{$tags[tag].data}</li>
			{/if}
		{/section}
	</ul>

	<h4>Copyright:</h4>
	<ul>
		{section name=tag loop=$tags}
			{if $tags[tag].keyword eq "copyright"}
			<li>{$tags[tag].data}</li>
			{/if}
		{/section}
	</li>
	</div>
</div>

<div class="middlecol">
	<h3><a href="#class_vars">Variables</a></h3>
	<ul class="small">
		{section name=contents loop=$contents.var}
		<li>{$contents.var[contents]}</li>
		{/section}
	</ul>
	<h3><a href="#class_consts">Constants</a></h3>
	<ul class="small">
		{section name=contents loop=$contents.const}
		<li>{$contents.const[contents]}</li>
		{/section}
	</ul>
</div>
<div class="rightcol">
	<h3><a href="#class_methods">Methods</a></h3>
	<ul class="small">
		{section name=contents loop=$contents.method}
		<li>{$contents.method[contents]}</li>
		{/section}
	</ul>
</div>

<div id="content">
<hr>
	<div class="contents">
{if $children}
	<h2>Child classes:</h2>
	{section name=kids loop=$children}
	<dl>
	<dt>{$children[kids].link}</dt>
		<dd>{$children[kids].sdesc}</dd>
	</dl>
	{/section}</p>
{/if}
	</div>

	<div class="leftCol">
    {if $implements}
    <h2>Implements interfaces</h2>
    <ul>
        {foreach item="int" from=$implements}<li>{$int}</li>{/foreach}
    </ul>
    {/if}
	<h2>Inherited Variables</h2>
	{section name=ivars loop=$ivars}
		<div class="indent">
		<h3>Class: {$ivars[ivars].parent_class}</h3>
		<div class="small">
			<dl>
			{section name=ivars2 loop=$ivars[ivars].ivars}
			<dt>
				{$ivars[ivars].ivars[ivars2].link}
			</dt>
			<dd>
				{$ivars[ivars].ivars[ivars2].ivars_sdesc} 
			</dd>
			{/section}
			</dl>
		</div>
		</div>
	{/section}
	<h2>Inherited Constants</h2>
	{section name=iconsts loop=$iconsts}
		<div class="indent">
		<h3>Class: {$iconsts[iconsts].parent_class}</h3>
		<div class="small">
			<dl>
			{section name=iconsts2 loop=$iconsts[iconsts].iconsts}
			<dt>
				{$iconsts[iconsts].iconsts[iconsts2].link}
			</dt>
			<dd>
				{$iconsts[iconsts].iconsts[iconsts2].iconsts_sdesc} 
			</dd>
			{/section}
			</dl>
		</div>
		</div>
	{/section}
	</div>

	<div class="rightCol">
	<h2>Inherited Methods</h2>
	{section name=imethods loop=$imethods}
		<div class="indent">
		<h3>Class: {$imethods[imethods].parent_class}</h3>
		<dl class="small">
			{section name=im2 loop=$imethods[imethods].imethods}
			<dt>
				{$imethods[imethods].imethods[im2].link}
			</dt>
			<dd>
				{$imethods[imethods].imethods[im2].sdesc}
			</dd>
		{/section}
		</dl>
		</div>
	{/section}
	</div>
	<br clear="all">
	<hr>

	<a name="class_details"></a>
	<h2>Class Details</h2>
	{include file="docblock.tpl" type="class" sdesc=$sdesc desc=$desc}
	<p class="small" style="color: #334B66;">[ <a href="#top">Top</a> ]</p>

	<hr>
	<a name="class_vars"></a>
	<h2>Class Variables</h2>
	{include file="var.tpl"}

	<hr>
	<a name="class_methods"></a>
	<h2>Class Methods</h2>
	{include file="method.tpl"}

	<hr>
	<a name="class_consts"></a>
	<h2>Class Constants</h2>
	{include file="const.tpl"}
</div>
{include file="footer.tpl"}