Subversion Repositories Applications.framework

Rev

Rev 467 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 467 Rev 476
1
<!DOCTYPE html>
1
<!DOCTYPE html>
2
<html lang="en">
2
<html lang="en">
3
<head>
3
<head>
4
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
4
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
5
    <meta charset="utf-8"/>
5
    <meta charset="utf-8"/>
6
    <title>TBFramework - v0.2</title>
6
    <title>TBFramework - v0.2</title>
7
    <meta name="author" content=""/>
7
    <meta name="author" content=""/>
8
    <meta name="description" content=""/>
8
    <meta name="description" content=""/>
9
 
9
 
10
    <link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css" rel="stylesheet">
10
    <link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css" rel="stylesheet">
11
    <link href="https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet">
11
    <link href="https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet">
12
    <link href="../css/prism.css" rel="stylesheet" media="all"/>
12
    <link href="../css/prism.css" rel="stylesheet" media="all"/>
13
    <link href="../css/template.css" rel="stylesheet" media="all"/>
13
    <link href="../css/template.css" rel="stylesheet" media="all"/>
14
    
14
    
15
    <!--[if lt IE 9]>
15
    <!--[if lt IE 9]>
16
    <script src="https://html5shim.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script>
16
    <script src="https://html5shim.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script>
17
    <![endif]-->
17
    <![endif]-->
18
    <script src="https://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
18
    <script src="https://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
19
    <script src="https://code.jquery.com/ui/1.10.3/jquery-ui.min.js" type="text/javascript"></script>
19
    <script src="https://code.jquery.com/ui/1.10.3/jquery-ui.min.js" type="text/javascript"></script>
20
    <script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
20
    <script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
21
    <script src="../js/jquery.smooth-scroll.js"></script>
21
    <script src="../js/jquery.smooth-scroll.js"></script>
22
    <script src="../js/prism.min.js"></script>
22
    <script src="../js/prism.min.js"></script>
23
    <!-- TODO: Add http://jscrollpane.kelvinluck.com/ to style the scrollbars for browsers not using webkit-->
23
    <!-- TODO: Add http://jscrollpane.kelvinluck.com/ to style the scrollbars for browsers not using webkit-->
24
    <script type="text/javascript">
24
    <script type="text/javascript">
25
    function loadExternalCodeSnippets() {
25
    function loadExternalCodeSnippets() {
26
        Array.prototype.slice.call(document.querySelectorAll('pre[data-src]')).forEach(function (pre) {
26
        Array.prototype.slice.call(document.querySelectorAll('pre[data-src]')).forEach(function (pre) {
27
            var src = pre.getAttribute('data-src');
27
            var src = pre.getAttribute('data-src');
28
            var extension = (src.match(/\.(\w+)$/) || [, ''])[1];
28
            var extension = (src.match(/\.(\w+)$/) || [, ''])[1];
29
            var language = 'php';
29
            var language = 'php';
30
 
30
 
31
            var code = document.createElement('code');
31
            var code = document.createElement('code');
32
            code.className = 'language-' + language;
32
            code.className = 'language-' + language;
33
 
33
 
34
            pre.textContent = '';
34
            pre.textContent = '';
35
 
35
 
36
            code.textContent = 'Loading…';
36
            code.textContent = 'Loading…';
37
 
37
 
38
            pre.appendChild(code);
38
            pre.appendChild(code);
39
 
39
 
40
            var xhr = new XMLHttpRequest();
40
            var xhr = new XMLHttpRequest();
41
 
41
 
42
            xhr.open('GET', src, true);
42
            xhr.open('GET', src, true);
43
 
43
 
44
            xhr.onreadystatechange = function () {
44
            xhr.onreadystatechange = function () {
45
                if (xhr.readyState == 4) {
45
                if (xhr.readyState == 4) {
46
 
46
 
47
                    if (xhr.status < 400 && xhr.responseText) {
47
                    if (xhr.status < 400 && xhr.responseText) {
48
                        code.textContent = xhr.responseText;
48
                        code.textContent = xhr.responseText;
49
 
49
 
50
                        Prism.highlightElement(code);
50
                        Prism.highlightElement(code);
51
                    }
51
                    }
52
                    else if (xhr.status >= 400) {
52
                    else if (xhr.status >= 400) {
53
                        code.textContent = '✖ Error ' + xhr.status + ' while fetching file: ' + xhr.statusText;
53
                        code.textContent = '✖ Error ' + xhr.status + ' while fetching file: ' + xhr.statusText;
54
                    }
54
                    }
55
                    else {
55
                    else {
56
                        code.textContent = '✖ Error: File does not exist or is empty';
56
                        code.textContent = '✖ Error: File does not exist or is empty';
57
                    }
57
                    }
58
                }
58
                }
59
            };
59
            };
60
 
60
 
61
            xhr.send(null);
61
            xhr.send(null);
62
        });
62
        });
63
    }
63
    }
64
 
64
 
65
    $(document).ready(function(){
65
    $(document).ready(function(){
66
        loadExternalCodeSnippets();
66
        loadExternalCodeSnippets();
67
    });
67
    });
68
    $('#source-view').on('shown', function () {
68
    $('#source-view').on('shown', function () {
69
        loadExternalCodeSnippets();
69
        loadExternalCodeSnippets();
70
    })
70
    })
71
</script>
71
</script>
72
 
72
 
73
    <link rel="shortcut icon" href="../images/favicon.ico"/>
73
    <link rel="shortcut icon" href="../images/favicon.ico"/>
74
    <link rel="apple-touch-icon" href="../images/apple-touch-icon.png"/>
74
    <link rel="apple-touch-icon" href="../images/apple-touch-icon.png"/>
75
    <link rel="apple-touch-icon" sizes="72x72" href="../images/apple-touch-icon-72x72.png"/>
75
    <link rel="apple-touch-icon" sizes="72x72" href="../images/apple-touch-icon-72x72.png"/>
76
    <link rel="apple-touch-icon" sizes="114x114" href="../images/apple-touch-icon-114x114.png"/>
76
    <link rel="apple-touch-icon" sizes="114x114" href="../images/apple-touch-icon-114x114.png"/>
77
</head>
77
</head>
78
<body>
78
<body>
79
 
79
 
80
<div class="navbar navbar-fixed-top">
80
<div class="navbar navbar-fixed-top">
81
    <div class="navbar-inner">
81
    <div class="navbar-inner">
82
        <div class="container">
82
        <div class="container">
83
            <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
83
            <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
84
                <i class="icon-ellipsis-vertical"></i>
84
                <i class="icon-ellipsis-vertical"></i>
85
            </a>
85
            </a>
86
            <a class="brand" href="../index.html">TBFramework - v0.2</a>
86
            <a class="brand" href="../index.html">TBFramework - v0.2</a>
87
 
87
 
88
            <div class="nav-collapse">
88
            <div class="nav-collapse">
89
                <ul class="nav pull-right">
89
                <ul class="nav pull-right">
90
                    <li class="dropdown">
90
                    <li class="dropdown">
91
                        <a href="../index.html" class="dropdown-toggle" data-toggle="dropdown">
91
                        <a href="../index.html" class="dropdown-toggle" data-toggle="dropdown">
92
                            API Documentation <b class="caret"></b>
92
                            API Documentation <b class="caret"></b>
93
                        </a>
93
                        </a>
94
                        <ul class="dropdown-menu">
94
                        <ul class="dropdown-menu">
95
                                                    </ul>
95
                                                    </ul>
96
                    </li>
96
                    </li>
97
                    <li class="dropdown" id="charts-menu">
97
                    <li class="dropdown" id="charts-menu">
98
                        <a href="#" class="dropdown-toggle" data-toggle="dropdown">
98
                        <a href="#" class="dropdown-toggle" data-toggle="dropdown">
99
                            Charts <b class="caret"></b>
99
                            Charts <b class="caret"></b>
100
                        </a>
100
                        </a>
101
                        <ul class="dropdown-menu">
101
                        <ul class="dropdown-menu">
102
                            <li>
102
                            <li>
103
                                <a href="../graphs/class.html">
103
                                <a href="../graphs/class.html">
104
                                    <i class="icon-list-alt"></i>&#160;Class hierarchy diagram
104
                                    <i class="icon-list-alt"></i>&#160;Class hierarchy diagram
105
                                </a>
105
                                </a>
106
                            </li>
106
                            </li>
107
                        </ul>
107
                        </ul>
108
                    </li>
108
                    </li>
109
                    <li class="dropdown" id="reports-menu">
109
                    <li class="dropdown" id="reports-menu">
110
                        <a href="#" class="dropdown-toggle" data-toggle="dropdown">
110
                        <a href="#" class="dropdown-toggle" data-toggle="dropdown">
111
                            Reports <b class="caret"></b>
111
                            Reports <b class="caret"></b>
112
                        </a>
112
                        </a>
113
                        <ul class="dropdown-menu">
113
                        <ul class="dropdown-menu">
114
                            <li>
114
                            <li>
115
                                <a href="../reports/errors.html">
115
                                <a href="../reports/errors.html">
116
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <i class="icon-list-alt"></i>&#160;Errors <span class="label label-info pull-right">54</span>
116
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <i class="icon-list-alt"></i>&#160;Errors <span class="label label-info pull-right">70</span>
117
                                </a>
117
                                </a>
118
                            </li>
118
                            </li>
119
                            <li>
119
                            <li>
120
                                <a href="../reports/markers.html">
120
                                <a href="../reports/markers.html">
121
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <i class="icon-list-alt"></i>&#160;Markers <span class="label label-info pull-right">0</span>
121
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <i class="icon-list-alt"></i>&#160;Markers <span class="label label-info pull-right">0</span>
122
                                </a>
122
                                </a>
123
                            </li>
123
                            </li>
124
                        </ul>
124
                        </ul>
125
                    </li>
125
                    </li>
126
                </ul>
126
                </ul>
127
            </div>
127
            </div>
128
        </div>
128
        </div>
129
    </div>
129
    </div>
130
    <!--<div class="go_to_top">-->
130
    <!--<div class="go_to_top">-->
131
    <!--<a href="#___" style="color: inherit">Back to top&#160;&#160;<i class="icon-upload icon-white"></i></a>-->
131
    <!--<a href="#___" style="color: inherit">Back to top&#160;&#160;<i class="icon-upload icon-white"></i></a>-->
132
    <!--</div>-->
132
    <!--</div>-->
133
</div>
133
</div>
134
 
134
 
135
<div id="___" class="container-fluid">
135
<div id="___" class="container-fluid">
136
        <section class="row-fluid">
136
        <section class="row-fluid">
137
        <div class="span2 sidebar">
137
        <div class="span2 sidebar">
138
                                <div class="accordion" style="margin-bottom: 0">
138
                                <div class="accordion" style="margin-bottom: 0">
139
        <div class="accordion-group">
139
        <div class="accordion-group">
140
            <div class="accordion-heading">
140
            <div class="accordion-heading">
141
                                    <a class="accordion-toggle " data-toggle="collapse" data-target="#namespace-152390243"></a>
141
                                    <a class="accordion-toggle " data-toggle="collapse" data-target="#namespace-1450018424"></a>
142
                                <a href="../namespaces/default.html" style="margin-left: 30px; padding-left: 0">\</a>
142
                                <a href="../namespaces/default.html" style="margin-left: 30px; padding-left: 0">\</a>
143
            </div>
143
            </div>
144
            <div id="namespace-152390243" class="accordion-body collapse in">
144
            <div id="namespace-1450018424" class="accordion-body collapse in">
145
                <div class="accordion-inner">
145
                <div class="accordion-inner">
146
 
146
 
147
                    
147
                    
148
                    <ul>
148
                    <ul>
149
                                                                                                    <li class="class"><a href="../classes/Url.html">Url</a></li>
149
                                                                                                    <li class="class"><a href="../classes/Url.html">Url</a></li>
150
                                                    <li class="class"><a href="../classes/Debug.html">Debug</a></li>
150
                                                    <li class="class"><a href="../classes/Debug.html">Debug</a></li>
151
                                                    <li class="class"><a href="../classes/Chronometre.html">Chronometre</a></li>
151
                                                    <li class="class"><a href="../classes/Chronometre.html">Chronometre</a></li>
152
                                                    <li class="class"><a href="../classes/SquelettePhp.html">SquelettePhp</a></li>
152
                                                    <li class="class"><a href="../classes/SquelettePhp.html">SquelettePhp</a></li>
153
                                                    <li class="class"><a href="../classes/Controleur.html">Controleur</a></li>
153
                                                    <li class="class"><a href="../classes/Controleur.html">Controleur</a></li>
154
                                                    <li class="class"><a href="../classes/GestionnaireException.html">GestionnaireException</a></li>
154
                                                    <li class="class"><a href="../classes/GestionnaireException.html">GestionnaireException</a></li>
155
                                                    <li class="class"><a href="../classes/Modele.html">Modele</a></li>
155
                                                    <li class="class"><a href="../classes/Modele.html">Modele</a></li>
156
                                                    <li class="class"><a href="../classes/Registre.html">Registre</a></li>
156
                                                    <li class="class"><a href="../classes/Registre.html">Registre</a></li>
-
 
157
                                                    <li class="class"><a href="../classes/I18n.html">I18n</a></li>
157
                                                    <li class="class"><a href="../classes/Config.html">Config</a></li>
158
                                                    <li class="class"><a href="../classes/Config.html">Config</a></li>
158
                                                    <li class="class"><a href="../classes/Application.html">Application</a></li>
159
                                                    <li class="class"><a href="../classes/Application.html">Application</a></li>
159
                                                    <li class="class"><a href="../classes/Log.html">Log</a></li>
160
                                                    <li class="class"><a href="../classes/Log.html">Log</a></li>
160
                                            </ul>
161
                                            </ul>
161
                </div>
162
                </div>
162
            </div>
163
            </div>
163
        </div>
164
        </div>
164
    </div>
165
    </div>
165
 
166
 
166
        </div>
167
        </div>
167
    </section>
168
    </section>
168
    <section class="row-fluid">
169
    <section class="row-fluid">
169
        <div class="span10 offset2">
170
        <div class="span10 offset2">
170
            <div class="row-fluid">
171
            <div class="row-fluid">
171
                <div class="span8 content class">
172
                <div class="span8 content class">
172
                    <nav>
173
                    <nav>
173
                                                <a href="../namespaces/default.html">\</a> <i class="icon-level-up"></i>
174
                                                <a href="../namespaces/default.html">\</a> <i class="icon-level-up"></i>
174
                                            </nav>
175
                                            </nav>
175
                    <a href="#source-view" role="button" class="pull-right btn" data-toggle="modal"><i class="icon-code"></i></a>
176
                    <a href="#source-view" role="button" class="pull-right btn" data-toggle="modal"><i class="icon-code"></i></a>
176
 
177
 
177
                    <h1><small>\</small>Registre</h1>
178
                    <h1><small>\</small>Registre</h1>
178
                    <p><em>Classe registre, qui permet un accès à différentes variables à travers les autres classes.</em></p>
179
                    <p><em>Classe registre, qui permet un accès à différentes variables à travers les autres classes.</em></p>
179
                    <p>C'est un singleton</p>
180
                    <p>C'est un singleton</p>
180
<p>PHP Version 5</p>
-
 
181
 
181
 
182
                    <section id="summary">
182
                    <section id="summary">
183
                        <h2>Summary</h2>
183
                        <h2>Summary</h2>
184
                        <section class="row-fluid heading">
184
                        <section class="row-fluid heading">
185
                            <section class="span4">
185
                            <section class="span4">
186
                                <a href="#methods">Methods</a>
186
                                <a href="#methods">Methods</a>
187
                            </section>
187
                            </section>
188
                            <section class="span4">
188
                            <section class="span4">
189
                                <a href="#properties">Properties</a>
189
                                <a href="#properties">Properties</a>
190
                            </section>
190
                            </section>
191
                            <section class="span4">
191
                            <section class="span4">
192
                                <a href="#constants">Constants</a>
192
                                <a href="#constants">Constants</a>
193
                            </section>
193
                            </section>
194
                        </section>
194
                        </section>
195
                        <section class="row-fluid public">
195
                        <section class="row-fluid public">
196
                            <section class="span4">
196
                            <section class="span4">
197
                                                                    <a href="../classes/Registre.html#method_getInstance" class="">getInstance()</a><br />
197
                                                                    <a href="../classes/Registre.html#method_getInstance" class="">getInstance()</a><br />
198
                                                                    <a href="../classes/Registre.html#method_set" class="">set()</a><br />
198
                                                                    <a href="../classes/Registre.html#method_set" class="">set()</a><br />
199
                                                                    <a href="../classes/Registre.html#method_get" class="">get()</a><br />
199
                                                                    <a href="../classes/Registre.html#method_get" class="">get()</a><br />
200
                                                                    <a href="../classes/Registre.html#method_detruire" class="">detruire()</a><br />
200
                                                                    <a href="../classes/Registre.html#method_detruire" class="">detruire()</a><br />
201
                                                                    <a href="../classes/Registre.html#method_existe" class="">existe()</a><br />
201
                                                                    <a href="../classes/Registre.html#method_existe" class="">existe()</a><br />
202
                                                            </section>
202
                                                            </section>
203
                            <section class="span4">
203
                            <section class="span4">
204
                                                                    <em>No public properties found</em>
204
                                                                    <em>No public properties found</em>
205
                                                            </section>
205
                                                            </section>
206
                            <section class="span4">
206
                            <section class="span4">
207
                                                                    <em>No constants found</em>
207
                                                                    <em>No constants found</em>
208
                                                            </section>
208
                                                            </section>
209
                        </section>
209
                        </section>
210
                        <section class="row-fluid protected">
210
                        <section class="row-fluid protected">
211
                            <section class="span4">
211
                            <section class="span4">
212
                                                                    <em>No protected methods found</em>
212
                                                                    <em>No protected methods found</em>
213
                                                            </section>
213
                                                            </section>
214
                            <section class="span4">
214
                            <section class="span4">
215
                                                                    <em>No protected properties found</em>
215
                                                                    <em>No protected properties found</em>
216
                                                            </section>
216
                                                            </section>
217
                            <section class="span4">
217
                            <section class="span4">
218
                                <em>N/A</em>
218
                                <em>N/A</em>
219
                            </section>
219
                            </section>
220
                        </section>
220
                        </section>
221
                        <section class="row-fluid private">
221
                        <section class="row-fluid private">
222
                            <section class="span4">
222
                            <section class="span4">
223
                                                                    <a href="../classes/Registre.html#method___construct" class="">__construct()</a><br />
223
                                                                    <a href="../classes/Registre.html#method___construct" class="">__construct()</a><br />
224
                                                            </section>
224
                                                            </section>
225
                            <section class="span4">
225
                            <section class="span4">
226
                                                                    <a href="../classes/Registre.html#property_stockage" class="">$stockage</a><br />
226
                                                                    <a href="../classes/Registre.html#property_stockage" class="">$stockage</a><br />
227
                                                                    <a href="../classes/Registre.html#property_registre" class="">$registre</a><br />
227
                                                                    <a href="../classes/Registre.html#property_registre" class="">$registre</a><br />
228
                                                            </section>
228
                                                            </section>
229
                            <section class="span4">
229
                            <section class="span4">
230
                                <em>N/A</em>
230
                                <em>N/A</em>
231
                            </section>
231
                            </section>
232
                        </section>
232
                        </section>
233
                    </section>
233
                    </section>
234
                </div>
234
                </div>
235
                <aside class="span4 detailsbar">
235
                <aside class="span4 detailsbar">
236
                                        
236
                                        
237
                    
237
                    
238
                    <dl>
238
                    <dl>
239
                        <dt>File</dt>
239
                        <dt>File</dt>
240
                            <dd><a href="../files/Registre.php.html"><div class="path-wrapper">Registre.php</div></a></dd>
240
                            <dd><a href="../files/Registre.php.html"><div class="path-wrapper">Registre.php</div></a></dd>
241
                                                <dt>Package</dt>
241
                                                <dt>Package</dt>
242
                            <dd><div class="namespace-wrapper">\Framework</div></dd>
242
                            <dd><div class="namespace-wrapper">\Framework</div></dd>
243
                                                <dt>Class hierarchy</dt>
243
                                                <dt>Class hierarchy</dt>
244
                            <dd class="hierarchy">
244
                            <dd class="hierarchy">
245
                                                                                                                                                                    <div class="namespace-wrapper">\Registre</div>
245
                                                                                                                                                                    <div class="namespace-wrapper">\Registre</div>
246
                            </dd>
246
                            </dd>
247
 
247
 
248
                        
248
                        
249
                        
249
                        
250
                        
-
 
251
                                                                            <dt>See also</dt>
-
 
252
                                                                                    <dd><a href="/doc/framework/"><div class="namespace-wrapper">/doc/framework/</div></a></dd>
250
                        
253
                                                    
251
                        
254
                                                                        </dl>
252
                                                                        </dl>
255
                    <h2>Tags</h2>
253
                    <h2>Tags</h2>
256
                    <table class="table table-condensed">
254
                    <table class="table table-condensed">
257
                                            <tr>
255
                                            <tr>
258
                            <th>
256
                            <th>
259
                                category
257
                                category
260
                            </th>
258
                            </th>
261
                            <td>
259
                            <td>
262
                                                                    <p>Class</p>
260
                                                                    <p>PHP 5.2</p>
263
                                                            </td>
261
                                                            </td>
264
                        </tr>
262
                        </tr>
265
                                            <tr>
263
                                            <tr>
266
                            <th>
264
                            <th>
267
                                author
265
                                author
268
                            </th>
266
                            </th>
269
                            <td>
267
                            <td>
270
                                                                    <p>Jean-Pascal Milcent <a href="mailto:jmp@tela-botanica.org">jmp@tela-botanica.org</a></p>
268
                                                                    <p>Jean-Pascal MILCENT <a href="mailto:jpm@tela-botanica.org">jpm@tela-botanica.org</a></p>
271
                                                            </td>
269
                                                            </td>
272
                        </tr>
270
                        </tr>
273
                                            <tr>
271
                                            <tr>
274
                            <th>
272
                            <th>
275
                                copyright
273
                                copyright
276
                            </th>
274
                            </th>
277
                            <td>
275
                            <td>
278
                                                                    <p>2009 Tela-Botanica</p>
276
                                                                    <p>Copyright (c) 2009, Tela Botanica (accueil@tela-botanica.org)</p>
279
                                                            </td>
277
                                                            </td>
280
                        </tr>
278
                        </tr>
281
                                            <tr>
279
                                            <tr>
282
                            <th>
280
                            <th>
283
                                license
281
                                license
284
                            </th>
282
                            </th>
285
                            <td>
283
                            <td>
286
                                                                    <p><a href="http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt">http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt</a> Licence CECILL</p>
-
 
287
                                                                    <p><a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> Licence GNU-GPL</p>
284
                                                                    <p>GNU-GPL-v3 <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a></p>
288
                                                            </td>
-
 
289
                        </tr>
-
 
290
                                            <tr>
-
 
291
                            <th>
-
 
292
                                version
-
 
293
                            </th>
-
 
294
                            <td>
-
 
295
                                                                    <p>SVN: $$Id: Registre.php 120 2009-09-01 12:21:14Z aurelien $$</p>
285
                                                                    <p>CECILL-v2 <a href="http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt">http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt</a></p>
296
                                                            </td>
286
                                                            </td>
297
                        </tr>
287
                        </tr>
298
                                            <tr>
288
                                            <tr>
299
                            <th>
289
                            <th>
300
                                todo
290
                                todo
301
                            </th>
291
                            </th>
302
                            <td>
292
                            <td>
303
                                                            </td>
293
                                                            </td>
304
                        </tr>
294
                        </tr>
305
                                        </table>
295
                                        </table>
306
                </aside>
296
                </aside>
307
            </div>
297
            </div>
308
 
298
 
309
                        
299
                        
310
                                    <a id="properties" name="properties"></a>
300
                                    <a id="properties" name="properties"></a>
311
            <div class="row-fluid">
301
            <div class="row-fluid">
312
                <div class="span8 content class">
302
                <div class="span8 content class">
313
                    <h2>Properties</h2>
303
                    <h2>Properties</h2>
314
                </div>
304
                </div>
315
                <aside class="span4 detailsbar"></aside>
305
                <aside class="span4 detailsbar"></aside>
316
            </div>
306
            </div>
317
 
307
 
318
                                                                    <div class="row-fluid">
308
                                                                    <div class="row-fluid">
319
        <div class="span8 content class">
309
        <div class="span8 content class">
320
            <a id="property_stockage" name="property_stockage" class="anchor"></a>
310
            <a id="property_stockage" name="property_stockage" class="anchor"></a>
321
            <article class="property">
311
            <article class="property">
322
                <h3 class="private ">$stockage</h3>
312
                <h3 class="private ">$stockage</h3>
323
                <pre class="signature">$stockage</pre>
313
                <pre class="signature">$stockage</pre>
324
                <p><em>Tableau associatif stockant les variables</em></p>
314
                <p><em>Tableau associatif stockant les variables</em></p>
325
                
315
                
326
 
316
 
327
                            </article>
317
                            </article>
328
        </div>
318
        </div>
329
        <aside class="span4 detailsbar">
319
        <aside class="span4 detailsbar">
330
            <h1><i class="icon-arrow-down"></i></h1>
320
            <h1><i class="icon-arrow-down"></i></h1>
331
                        <dl>
321
                        <dl>
332
                                                            </dl>
322
                                                            </dl>
333
            <h2>Tags</h2>
323
            <h2>Tags</h2>
334
            <table class="table table-condensed">
324
            <table class="table table-condensed">
335
                                    <tr>
325
                                    <tr>
336
                        <th>
326
                        <th>
337
                            todo
327
                            todo
338
                        </th>
328
                        </th>
339
                        <td>
329
                        <td>
340
                                                    </td>
330
                                                    </td>
341
                    </tr>
331
                    </tr>
342
                            </table>
332
                            </table>
343
        </aside>
333
        </aside>
344
    </div>
334
    </div>
345
 
335
 
346
                                    <div class="row-fluid">
336
                                    <div class="row-fluid">
347
        <div class="span8 content class">
337
        <div class="span8 content class">
348
            <a id="property_registre" name="property_registre" class="anchor"></a>
338
            <a id="property_registre" name="property_registre" class="anchor"></a>
349
            <article class="property">
339
            <article class="property">
350
                <h3 class="private ">$registre</h3>
340
                <h3 class="private ">$registre</h3>
351
                <pre class="signature">$registre</pre>
341
                <pre class="signature">$registre</pre>
352
                <p><em>La classe registre se contient elle-même, (pour le pattern singleton)</em></p>
342
                <p><em>La classe registre se contient elle-même, (pour le pattern singleton)</em></p>
353
                
343
                
354
 
344
 
355
                            </article>
345
                            </article>
356
        </div>
346
        </div>
357
        <aside class="span4 detailsbar">
347
        <aside class="span4 detailsbar">
358
            <h1><i class="icon-arrow-down"></i></h1>
348
            <h1><i class="icon-arrow-down"></i></h1>
359
                        <dl>
349
                        <dl>
360
                                                            </dl>
350
                                                            </dl>
361
            <h2>Tags</h2>
351
            <h2>Tags</h2>
362
            <table class="table table-condensed">
352
            <table class="table table-condensed">
363
                                    <tr>
353
                                    <tr>
364
                        <th>
354
                        <th>
365
                            todo
355
                            todo
366
                        </th>
356
                        </th>
367
                        <td>
357
                        <td>
368
                                                    </td>
358
                                                    </td>
369
                    </tr>
359
                    </tr>
370
                            </table>
360
                            </table>
371
        </aside>
361
        </aside>
372
    </div>
362
    </div>
373
 
363
 
374
                            
364
                            
375
                                    <a id="methods" name="methods"></a>
365
                                    <a id="methods" name="methods"></a>
376
            <div class="row-fluid">
366
            <div class="row-fluid">
377
                <div class="span8 content class"><h2>Methods</h2></div>
367
                <div class="span8 content class"><h2>Methods</h2></div>
378
                <aside class="span4 detailsbar"></aside>
368
                <aside class="span4 detailsbar"></aside>
379
            </div>
369
            </div>
380
 
370
 
381
                                    <div class="row-fluid">
371
                                    <div class="row-fluid">
382
        <div class="span8 content class">
372
        <div class="span8 content class">
383
            <a id="method_getInstance" name="method_getInstance" class="anchor"></a>
373
            <a id="method_getInstance" name="method_getInstance" class="anchor"></a>
384
            <article class="method">
374
            <article class="method">
385
                <h3 class="public ">getInstance()</h3>
375
                <h3 class="public ">getInstance()</h3>
386
                <a href="#source-view" role="button" class="pull-right btn" data-toggle="modal" style="font-size: 1.1em; padding: 9px 14px"><i class="icon-code"></i></a>
376
                <a href="#source-view" role="button" class="pull-right btn" data-toggle="modal" style="font-size: 1.1em; padding: 9px 14px"><i class="icon-code"></i></a>
387
                <pre class="signature" style="margin-right: 54px;">getInstance()</pre>
377
                <pre class="signature" style="margin-right: 54px;">getInstance()</pre>
388
                <p><em>Fonction qui renvoie l&#039;instance de classe en assurant son unicité, c&#039;est l&#039;unique méthode qui doit être
378
                <p><em>Fonction qui renvoie l&#039;instance de classe en assurant son unicité, c&#039;est l&#039;unique méthode qui doit être
389
utilisée pour récupérer l&#039;objet Registre</em></p>
379
utilisée pour récupérer l&#039;objet Registre</em></p>
390
                
380
                
391
 
381
 
392
                
382
                
393
                
383
                
394
                            </article>
384
                            </article>
395
        </div>
385
        </div>
396
        <aside class="span4 detailsbar">
386
        <aside class="span4 detailsbar">
397
            <h1><i class="icon-arrow-down"></i></h1>
387
            <h1><i class="icon-arrow-down"></i></h1>
398
                            <span class="label label-info">static</span>
388
                            <span class="label label-info">static</span>
399
                                                            <dl>
389
                                                            <dl>
400
                                                                            </dl>
390
                                                                            </dl>
401
            <h2>Tags</h2>
391
            <h2>Tags</h2>
402
            <table class="table table-condensed">
392
            <table class="table table-condensed">
403
                                    <tr>
393
                                    <tr>
404
                        <th>
394
                        <th>
405
                            todo
395
                            todo
406
                        </th>
396
                        </th>
407
                        <td>
397
                        <td>
408
                                                    </td>
398
                                                    </td>
409
                    </tr>
399
                    </tr>
410
                            </table>
400
                            </table>
411
        </aside>
401
        </aside>
412
    </div>
402
    </div>
413
 
403
 
414
                                    <div class="row-fluid">
404
                                    <div class="row-fluid">
415
        <div class="span8 content class">
405
        <div class="span8 content class">
416
            <a id="method_set" name="method_set" class="anchor"></a>
406
            <a id="method_set" name="method_set" class="anchor"></a>
417
            <article class="method">
407
            <article class="method">
418
                <h3 class="public ">set()</h3>
408
                <h3 class="public ">set()</h3>
419
                <a href="#source-view" role="button" class="pull-right btn" data-toggle="modal" style="font-size: 1.1em; padding: 9px 14px"><i class="icon-code"></i></a>
409
                <a href="#source-view" role="button" class="pull-right btn" data-toggle="modal" style="font-size: 1.1em; padding: 9px 14px"><i class="icon-code"></i></a>
420
                <pre class="signature" style="margin-right: 54px;">set( <span class="argument">$intitule</span>,  <span class="argument">$objet</span>)</pre>
410
                <pre class="signature" style="margin-right: 54px;">set( <span class="argument">$intitule</span>,  <span class="argument">$objet</span>)</pre>
421
                <p><em>Ajoute un objet au tableau selon un intitulé donné</em></p>
411
                <p><em>Ajoute un objet au tableau selon un intitulé donné</em></p>
422
                
412
                
423
 
413
 
424
                                    <h4>Parameters</h4>
414
                                    <h4>Parameters</h4>
425
                    <table class="table table-condensed table-hover">
415
                    <table class="table table-condensed table-hover">
426
                                                    <tr>
416
                                                    <tr>
427
                                <td></td>
417
                                <td></td>
428
                                <td>$intitule</td>
418
                                <td>$intitule</td>
429
                                <td></td>
419
                                <td></td>
430
                            </tr>
420
                            </tr>
431
                                                    <tr>
421
                                                    <tr>
432
                                <td></td>
422
                                <td></td>
433
                                <td>$objet</td>
423
                                <td>$objet</td>
434
                                <td></td>
424
                                <td></td>
435
                            </tr>
425
                            </tr>
436
                                            </table>
426
                                            </table>
437
                
427
                
438
                
428
                
439
                            </article>
429
                            </article>
440
        </div>
430
        </div>
441
        <aside class="span4 detailsbar">
431
        <aside class="span4 detailsbar">
442
            <h1><i class="icon-arrow-down"></i></h1>
432
            <h1><i class="icon-arrow-down"></i></h1>
443
                                                            <dl>
433
                                                            <dl>
444
                                                                            </dl>
434
                                                                            </dl>
445
            <h2>Tags</h2>
435
            <h2>Tags</h2>
446
            <table class="table table-condensed">
436
            <table class="table table-condensed">
447
                                    <tr>
437
                                    <tr>
448
                        <th>
438
                        <th>
449
                            todo
439
                            todo
450
                        </th>
440
                        </th>
451
                        <td>
441
                        <td>
452
                                                    </td>
442
                                                    </td>
453
                    </tr>
443
                    </tr>
454
                            </table>
444
                            </table>
455
        </aside>
445
        </aside>
456
    </div>
446
    </div>
457
 
447
 
458
                                    <div class="row-fluid">
448
                                    <div class="row-fluid">
459
        <div class="span8 content class">
449
        <div class="span8 content class">
460
            <a id="method_get" name="method_get" class="anchor"></a>
450
            <a id="method_get" name="method_get" class="anchor"></a>
461
            <article class="method">
451
            <article class="method">
462
                <h3 class="public ">get()</h3>
452
                <h3 class="public ">get()</h3>
463
                <a href="#source-view" role="button" class="pull-right btn" data-toggle="modal" style="font-size: 1.1em; padding: 9px 14px"><i class="icon-code"></i></a>
453
                <a href="#source-view" role="button" class="pull-right btn" data-toggle="modal" style="font-size: 1.1em; padding: 9px 14px"><i class="icon-code"></i></a>
464
                <pre class="signature" style="margin-right: 54px;">get( <span class="argument">$intitule</span>) : mixed</pre>
454
                <pre class="signature" style="margin-right: 54px;">get( <span class="argument">$intitule</span>) : mixed</pre>
465
                <p><em>Renvoie l&#039;objet associé à l&#039;intitulé donné en paramètre</em></p>
455
                <p><em>Renvoie l&#039;objet associé à l&#039;intitulé donné en paramètre</em></p>
466
                
456
                
467
 
457
 
468
                                    <h4>Parameters</h4>
458
                                    <h4>Parameters</h4>
469
                    <table class="table table-condensed table-hover">
459
                    <table class="table table-condensed table-hover">
470
                                                    <tr>
460
                                                    <tr>
471
                                <td></td>
461
                                <td></td>
472
                                <td>$intitule</td>
462
                                <td>$intitule</td>
473
                                <td></td>
463
                                <td></td>
474
                            </tr>
464
                            </tr>
475
                                            </table>
465
                                            </table>
476
                
466
                
477
                
467
                
478
                                    <h4>Returns</h4>
468
                                    <h4>Returns</h4>
479
                    mixed
469
                    mixed
480
                                            &mdash; <p>l'objet associé à l'intitulé ou null s'il n'est pas présent</p>
470
                                            &mdash; <p>l'objet associé à l'intitulé ou null s'il n'est pas présent</p>
481
                                                </article>
471
                                                </article>
482
        </div>
472
        </div>
483
        <aside class="span4 detailsbar">
473
        <aside class="span4 detailsbar">
484
            <h1><i class="icon-arrow-down"></i></h1>
474
            <h1><i class="icon-arrow-down"></i></h1>
485
                                                            <dl>
475
                                                            <dl>
486
                                                                            </dl>
476
                                                                            </dl>
487
            <h2>Tags</h2>
477
            <h2>Tags</h2>
488
            <table class="table table-condensed">
478
            <table class="table table-condensed">
489
                                    <tr>
479
                                    <tr>
490
                        <th>
480
                        <th>
491
                            todo
481
                            todo
492
                        </th>
482
                        </th>
493
                        <td>
483
                        <td>
494
                                                    </td>
484
                                                    </td>
495
                    </tr>
485
                    </tr>
496
                            </table>
486
                            </table>
497
        </aside>
487
        </aside>
498
    </div>
488
    </div>
499
 
489
 
500
                                    <div class="row-fluid">
490
                                    <div class="row-fluid">
501
        <div class="span8 content class">
491
        <div class="span8 content class">
502
            <a id="method_detruire" name="method_detruire" class="anchor"></a>
492
            <a id="method_detruire" name="method_detruire" class="anchor"></a>
503
            <article class="method">
493
            <article class="method">
504
                <h3 class="public ">detruire()</h3>
494
                <h3 class="public ">detruire()</h3>
505
                <a href="#source-view" role="button" class="pull-right btn" data-toggle="modal" style="font-size: 1.1em; padding: 9px 14px"><i class="icon-code"></i></a>
495
                <a href="#source-view" role="button" class="pull-right btn" data-toggle="modal" style="font-size: 1.1em; padding: 9px 14px"><i class="icon-code"></i></a>
506
                <pre class="signature" style="margin-right: 54px;">detruire( <span class="argument">$intitule</span>)</pre>
496
                <pre class="signature" style="margin-right: 54px;">detruire( <span class="argument">$intitule</span>)</pre>
507
                <p><em>Détruit l&#039;objet associé à l&#039;intitulé, n&#039;a pas d&#039;effet si il n&#039;y a pas d&#039;objet associé</em></p>
497
                <p><em>Détruit l&#039;objet associé à l&#039;intitulé, n&#039;a pas d&#039;effet si il n&#039;y a pas d&#039;objet associé</em></p>
508
                
498
                
509
 
499
 
510
                                    <h4>Parameters</h4>
500
                                    <h4>Parameters</h4>
511
                    <table class="table table-condensed table-hover">
501
                    <table class="table table-condensed table-hover">
512
                                                    <tr>
502
                                                    <tr>
513
                                <td></td>
503
                                <td></td>
514
                                <td>$intitule</td>
504
                                <td>$intitule</td>
515
                                <td></td>
505
                                <td></td>
516
                            </tr>
506
                            </tr>
517
                                            </table>
507
                                            </table>
518
                
508
                
519
                
509
                
520
                            </article>
510
                            </article>
521
        </div>
511
        </div>
522
        <aside class="span4 detailsbar">
512
        <aside class="span4 detailsbar">
523
            <h1><i class="icon-arrow-down"></i></h1>
513
            <h1><i class="icon-arrow-down"></i></h1>
524
                                                            <dl>
514
                                                            <dl>
525
                                                                            </dl>
515
                                                                            </dl>
526
            <h2>Tags</h2>
516
            <h2>Tags</h2>
527
            <table class="table table-condensed">
517
            <table class="table table-condensed">
528
                                    <tr>
518
                                    <tr>
529
                        <th>
519
                        <th>
530
                            todo
520
                            todo
531
                        </th>
521
                        </th>
532
                        <td>
522
                        <td>
533
                                                    </td>
523
                                                    </td>
534
                    </tr>
524
                    </tr>
535
                            </table>
525
                            </table>
536
        </aside>
526
        </aside>
537
    </div>
527
    </div>
538
 
528
 
539
                                    <div class="row-fluid">
529
                                    <div class="row-fluid">
540
        <div class="span8 content class">
530
        <div class="span8 content class">
541
            <a id="method_existe" name="method_existe" class="anchor"></a>
531
            <a id="method_existe" name="method_existe" class="anchor"></a>
542
            <article class="method">
532
            <article class="method">
543
                <h3 class="public ">existe()</h3>
533
                <h3 class="public ">existe()</h3>
544
                <a href="#source-view" role="button" class="pull-right btn" data-toggle="modal" style="font-size: 1.1em; padding: 9px 14px"><i class="icon-code"></i></a>
534
                <a href="#source-view" role="button" class="pull-right btn" data-toggle="modal" style="font-size: 1.1em; padding: 9px 14px"><i class="icon-code"></i></a>
545
                <pre class="signature" style="margin-right: 54px;">existe( <span class="argument">$intitule</span>) : boolean</pre>
535
                <pre class="signature" style="margin-right: 54px;">existe( <span class="argument">$intitule</span>) : boolean</pre>
546
                <p><em>Teste si un objet est présent sous un intitulé donné</em></p>
536
                <p><em>Teste si un objet est présent sous un intitulé donné</em></p>
547
                
537
                
548
 
538
 
549
                                    <h4>Parameters</h4>
539
                                    <h4>Parameters</h4>
550
                    <table class="table table-condensed table-hover">
540
                    <table class="table table-condensed table-hover">
551
                                                    <tr>
541
                                                    <tr>
552
                                <td></td>
542
                                <td></td>
553
                                <td>$intitule</td>
543
                                <td>$intitule</td>
554
                                <td></td>
544
                                <td></td>
555
                            </tr>
545
                            </tr>
556
                                            </table>
546
                                            </table>
557
                
547
                
558
                
548
                
559
                                    <h4>Returns</h4>
549
                                    <h4>Returns</h4>
560
                    boolean
550
                    boolean
561
                                            &mdash; <p>true si un objet associé à cet intitulé est présent, false sinon</p>
551
                                            &mdash; <p>true si un objet associé à cet intitulé est présent, false sinon</p>
562
                                                </article>
552
                                                </article>
563
        </div>
553
        </div>
564
        <aside class="span4 detailsbar">
554
        <aside class="span4 detailsbar">
565
            <h1><i class="icon-arrow-down"></i></h1>
555
            <h1><i class="icon-arrow-down"></i></h1>
566
                                                            <dl>
556
                                                            <dl>
567
                                                                            </dl>
557
                                                                            </dl>
568
            <h2>Tags</h2>
558
            <h2>Tags</h2>
569
            <table class="table table-condensed">
559
            <table class="table table-condensed">
570
                                    <tr>
560
                                    <tr>
571
                        <th>
561
                        <th>
572
                            todo
562
                            todo
573
                        </th>
563
                        </th>
574
                        <td>
564
                        <td>
575
                                                    </td>
565
                                                    </td>
576
                    </tr>
566
                    </tr>
577
                            </table>
567
                            </table>
578
        </aside>
568
        </aside>
579
    </div>
569
    </div>
580
 
570
 
581
                                                                    <div class="row-fluid">
571
                                                                    <div class="row-fluid">
582
        <div class="span8 content class">
572
        <div class="span8 content class">
583
            <a id="method___construct" name="method___construct" class="anchor"></a>
573
            <a id="method___construct" name="method___construct" class="anchor"></a>
584
            <article class="method">
574
            <article class="method">
585
                <h3 class="private ">__construct()</h3>
575
                <h3 class="private ">__construct()</h3>
586
                <a href="#source-view" role="button" class="pull-right btn" data-toggle="modal" style="font-size: 1.1em; padding: 9px 14px"><i class="icon-code"></i></a>
576
                <a href="#source-view" role="button" class="pull-right btn" data-toggle="modal" style="font-size: 1.1em; padding: 9px 14px"><i class="icon-code"></i></a>
587
                <pre class="signature" style="margin-right: 54px;">__construct()</pre>
577
                <pre class="signature" style="margin-right: 54px;">__construct()</pre>
588
                <p><em>Constructeur par défaut, privé, car on accède à la classe par le getInstance</em></p>
578
                <p><em>Constructeur par défaut, privé, car on accède à la classe par le getInstance</em></p>
589
                
579
                
590
 
580
 
591
                
581
                
592
                
582
                
593
                            </article>
583
                            </article>
594
        </div>
584
        </div>
595
        <aside class="span4 detailsbar">
585
        <aside class="span4 detailsbar">
596
            <h1><i class="icon-arrow-down"></i></h1>
586
            <h1><i class="icon-arrow-down"></i></h1>
597
                                                            <dl>
587
                                                            <dl>
598
                                                                            </dl>
588
                                                                            </dl>
599
            <h2>Tags</h2>
589
            <h2>Tags</h2>
600
            <table class="table table-condensed">
590
            <table class="table table-condensed">
601
                                    <tr>
591
                                    <tr>
602
                        <th>
592
                        <th>
603
                            todo
593
                            todo
604
                        </th>
594
                        </th>
605
                        <td>
595
                        <td>
606
                                                    </td>
596
                                                    </td>
607
                    </tr>
597
                    </tr>
608
                            </table>
598
                            </table>
609
        </aside>
599
        </aside>
610
    </div>
600
    </div>
611
 
601
 
612
                                    </div>
602
                                    </div>
613
    </section>
603
    </section>
614
 
604
 
615
    <div id="source-view" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="source-view-label" aria-hidden="true">
605
    <div id="source-view" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="source-view-label" aria-hidden="true">
616
        <div class="modal-header">
606
        <div class="modal-header">
617
            <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
607
            <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
618
            <h3 id="source-view-label">Registre.php</h3>
608
            <h3 id="source-view-label">Registre.php</h3>
619
        </div>
609
        </div>
620
        <div class="modal-body">
610
        <div class="modal-body">
621
            <pre data-src="../files/Registre.php.txt" class="language-php line-numbers"></pre>
611
            <pre data-src="../files/Registre.php.txt" class="language-php line-numbers"></pre>
622
        </div>
612
        </div>
623
    </div>
613
    </div>
624
 
614
 
625
    <footer class="row-fluid">
615
    <footer class="row-fluid">
626
        <section class="span10 offset2">
616
        <section class="span10 offset2">
627
            <section class="row-fluid">
617
            <section class="row-fluid">
628
                <section class="span10 offset1">
618
                <section class="span10 offset1">
629
                    <section class="row-fluid footer-sections">
619
                    <section class="row-fluid footer-sections">
630
                        <section class="span4">
620
                        <section class="span4">
631
                                                        <h1><i class="icon-code"></i></h1>
621
                                                        <h1><i class="icon-code"></i></h1>
632
                            <div>
622
                            <div>
633
                                <ul>
623
                                <ul>
634
                                                                    </ul>
624
                                                                    </ul>
635
                            </div>
625
                            </div>
636
                        </section>
626
                        </section>
637
                        <section class="span4">
627
                        <section class="span4">
638
                                                        <h1><i class="icon-bar-chart"></i></h1>
628
                                                        <h1><i class="icon-bar-chart"></i></h1>
639
                            <div>
629
                            <div>
640
                                <ul>
630
                                <ul>
641
                                    <li><a href="../graphs/class.html">Class Hierarchy Diagram</a></li>
631
                                    <li><a href="../graphs/class.html">Class Hierarchy Diagram</a></li>
642
                                </ul>
632
                                </ul>
643
                            </div>
633
                            </div>
644
                        </section>
634
                        </section>
645
                        <section class="span4">
635
                        <section class="span4">
646
                                                        <h1><i class="icon-pushpin"></i></h1>
636
                                                        <h1><i class="icon-pushpin"></i></h1>
647
                            <div>
637
                            <div>
648
                                <ul>
638
                                <ul>
649
                                    <li><a href="../reports/errors.html">Errors</a></li>
639
                                    <li><a href="../reports/errors.html">Errors</a></li>
650
                                    <li><a href="../reports/markers.html">Markers</a></li>
640
                                    <li><a href="../reports/markers.html">Markers</a></li>
651
                                </ul>
641
                                </ul>
652
                            </div>
642
                            </div>
653
                        </section>
643
                        </section>
654
                    </section>
644
                    </section>
655
                </section>
645
                </section>
656
            </section>
646
            </section>
657
            <section class="row-fluid">
647
            <section class="row-fluid">
658
                <section class="span10 offset1">
648
                <section class="span10 offset1">
659
                    <hr />
649
                    <hr />
660
                    Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor </a> and authored
650
                    Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor </a> and authored
661
                    on March 12th, 2014 at 16:55.
651
                    on March 18th, 2014 at 19:19.
662
                </section>
652
                </section>
663
            </section>
653
            </section>
664
        </section>
654
        </section>
665
    </footer>
655
    </footer>
666
</div>
656
</div>
667
 
657
 
668
</body>
658
</body>
669
</html>
659
</html>