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

globals.tpl « templates « default « templates « peardoc2 « DocBook « XML « 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: 7392d87a3105e69cb4efb39b132fb93f8c2db2c3 (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
<refentry id="{$id}">
   <refnamediv>
    <refname>Package {$package} Global Variables</refname>
    <refpurpose>Global Variables defined in and used by {$package}</refpurpose>
   </refnamediv>
   <refsect1 id="{$id}.details">
    <title>All Global Variables</title>
{section name=files loop=$globals}
    <refsect2 id="{$id}.details.{$globals[files].page}">
     <title>
      Global Variables defined in {$globals[files].name}
     </title>
     <para>
      <table>
      <title>Global Variables defined in {$globals[files].name}</title>
{section name=d loop=$globals[files].globals}
{if $globals[files].globals[d].conflicts}{assign var="globalconflict" value=true}{/if}
{/section}
       <tgroup cols="{if $globalconflict}4{else}3{/if}">
        <thead>
         <row>
          <entry>Name</entry>
          <entry>Value</entry>
          <entry>Line Number</entry>
{if $globalconflict}
          <entry>Conflicts with other packages</entry>
{/if}
         </row>
        </thead>
        <tbody>
{section name=d loop=$globals}
         <row>
	     
<entry>{$globals[files].globals[d].name}</entry>
          <entry>{$globals[files].globals[d].value}</entry>
          <entry>{$globals[files].globals[d].line_number}</entry>
{if $globalconflict}
          <entry>{$globals[files].globals[d].conflicts}</entry>
{/if}
         </row>
{/section}
        </tbody>
       </tgroup>
      </table>
     </para>
    </refsect2>
{/section}
 </refsect1>
</refentry>
<!-- Generated by phpDocumentor v {$phpdocversion} {$phpdocwebsite} -->
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->