-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·248 lines (191 loc) · 12.7 KB
/
index.html
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>GiftFlow Development Guide</title>
<style type="text/css" media="all">@import url('./css/userguide.css');</style>
<link rel="shortcut icon" type="image/png" href="./images/favicon.png" />
<link rel="stylesheet" type="text/css" media="all" href="./css/userguide.css" />
<link rel="alternate" type="application/rss+xml" title="DMZ Updates Feed" href="http://www.overzealous.com/dmz/rss.xml" />
<meta http-equiv="expires" content="-1" />
<meta http-equiv= 'pragma' content="no-cache" />
<meta name="robots" content="all" />
</head>
<body>
<!-- START NAVIGATION -->
<div id="nav"><div id="nav_inner"></div></div>
<div id="nav2"><a name="top"> </a><a id="nav_toggle" href="#"><img src="./images/nav_toggle_darker.jpg" width="154" height="43" border="0" title="Toggle Table of Contents" alt="Toggle Table of Contents" /></a></div>
<div id="masthead">
<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
<tr>
<td><h1>GiftFlow Development Guide</h1></td>
<td id="breadcrumb_right"><a href="./pages/toc.html">Table of Contents Page</a></td>
</tr>
</table>
</div>
<!-- END NAVIGATION -->
<!-- START BREADCRUMB -->
<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
<tr>
<td id="breadcrumb">
<a href="../">GiftFlow</a> ›
Development Guide Home
</td>
</tr>
</table>
<!-- END BREADCRUMB -->
<br clear="all" />
<!-- START CONTENT -->
<div id="content">
<h1>Table of Contents</h1>
<p>Repository homepage <a href='http://www.github.com/Giftflow'>on Github</a></p>
<p>Visit our Github page to see a Wiki of the features we hope to create and current bugs and issues with the code.</p>
<p>Here is documentation for the Codeigniter Framework with which GiftFlow is built. </p>
<h2>CodeIgniter</h2>
<table cellpadding="0" cellspacing="10" border="0" width="100%">
<tr>
<td valign="top" width="25%">
<h3>Basic Info</h3>
<ul>
<li><a href="./ci/general/requirements.html">Server Requirements</a></li>
<li><a href="/ci/license.html">License Agreement</a></li>
<li><a href="/ci/changelog.html">Change Log</a></li>
<li><a href="./ci/general/credits.html">Credits</a></li>
</ul>
<h3>Installation</h3>
<ul>
<li><a href="./ci/installation/downloads.html">Downloading CodeIgniter </a></li>
<li><a href="./ci/installation/index.html">Installation Instructions</a></li>
<li><a href="./ci/installation/upgrading.html">Upgrading from an Previous Version</a></li>
<li><a href="./ci/installation/troubleshooting.html">Troubleshooting</a></li>
</ul>
<h3>Introduction</h3>
<ul>
<li><a href="./ci/overview/getting_started.html">Getting Started</a></li>
<li><a href="./ci/overview/at_a_glance.html">CodeIgniter at a Glance</a></li>
<li><a href="./ci/overview/cheatsheets.html">CodeIgniter Cheatsheets</a></li>
<li><a href="./ci/overview/features.html">Supported Features</a></li>
<li><a href="./ci/overview/appflow.html">Application Flow Chart</a></li>
<li><a href="./ci/overview/mvc.html">Model-View-Controller</a></li>
<li><a href="./ci/overview/goals.html">Architectural Goals</a></li>
</ul>
</td>
<td valign="top" width="25%">
<h3>General Topics</h3>
<ul>
<li><a href="./ci/general/urls.html">CodeIgniter URLs</a></li>
<li><a href="./ci/general/controllers.html">Controllers</a></li>
<li><a href="./ci/general/reserved_names.html">Reserved Names</a></li>
<li><a href="./ci/general/views.html">Views</a></li>
<li><a href="./ci/general/models.html">Models</a></li>
<li><a href="./ci/general/helpers.html">Helpers</a></li>
<li><a href="./ci/general/plugins.html">Plugins</a></li>
<li><a href="./ci/general/libraries.html">Using CodeIgniter Libraries</a></li>
<li><a href="./ci/general/creating_libraries.html">Creating Your Own Libraries</a></li>
<li><a href="./ci/general/core_classes.html">Creating Core Classes</a></li>
<li><a href="./ci/general/hooks.html">Hooks - Extending the Core</a></li>
<li><a href="./ci/general/autoloader.html">Auto-loading Resources</a></li>
<li><a href="general/common_functions.html">Common Functions</a></li>
<li><a href="./ci/general/scaffolding.html">Scaffolding</a></li>
<li><a href="./ci/general/routing.html">URI Routing</a></li>
<li><a href="./ci/general/errors.html">Error Handling</a></li>
<li><a href="./ci/general/caching.html">Caching</a></li>
<li><a href="./ci/general/profiling.html">Profiling Your Application</a></li>
<li><a href="./ci/general/managing_apps.html">Managing Applications</a></li>
<li><a href="./ci/general/alternative_php.html">Alternative PHP Syntax</a></li>
<li><a href="./ci/general/security.html">Security</a></li>
<li><a href="./ci/general/styleguide.html">PHP Style Guide</a></li>
<li><a href="./ci/doc_style/index.html">Writing Documentation</a></li>
</ul>
</td>
<td valign="top" width="25%">
<h3>Class Reference</h3>
<ul>
<li><a href="./ci/libraries/benchmark.html">Benchmarking Class</a></li>
<li><a href="./ci/libraries/calendar.html">Calendar Class</a></li>
<li><a href="./ci/libraries/cart.html">Cart Class</a></li>
<li><a href="./ci/libraries/config.html">Config Class</a></li>
<li><a href="./ci/database/index.html">Database Class</a></li>
<li><a href="./ci/libraries/email.html">Email Class</a></li>
<li><a href="./ci/libraries/encryption.html">Encryption Class</a></li>
<li><a href="./ci/libraries/file_uploading.html">File Uploading Class</a></li>
<li><a href="./ci/libraries/form_validation.html">Form Validation Class</a></li>
<li><a href="./ci/libraries/ftp.html">FTP Class</a></li>
<li><a href="./ci/libraries/table.html">HTML Table Class</a></li>
<li><a href="./ci/libraries/image_lib.html">Image Manipulation Class</a></li>
<li><a href="./ci/libraries/input.html">Input and Security Class</a></li>
<li><a href="./ci/libraries/loader.html">Loader Class</a></li>
<li><a href="./ci/libraries/language.html">Language Class</a></li>
<li><a href="./ci/libraries/output.html">Output Class</a></li>
<li><a href="./ci/libraries/pagination.html">Pagination Class</a></li>
<li><a href="./ci/libraries/sessions.html">Session Class</a></li>
<li><a href="./ci/libraries/trackback.html">Trackback Class</a></li>
<li><a href="./ci/libraries/parser.html">Template Parser Class</a></li>
<li><a href="./ci/libraries/typography.html">Typography Class</a></li>
<li><a href="./ci/libraries/unit_testing.html">Unit Testing Class</a></li>
<li><a href="./ci/libraries/uri.html">URI Class</a></li>
<li><a href="./ci/libraries/user_agent.html">User Agent Class</a></li>
<li><a href="./ci/libraries/xmlrpc.html">XML-RPC Class</a></li>
<li><a href="./ci/libraries/zip.html">Zip Encoding Class</a></li>
</ul>
</td>
<td valign="top" width="25%">
<h3>Helper Reference</h3>
<ul>
<li><a href="./ci/helpers/array_helper.html">Array Helper</a></li>
<li><a href="./ci/helpers/compatibility_helper.html">Compatibility Helper</a></li>
<li><a href="./ci/helpers/cookie_helper.html">Cookie Helper</a></li>
<li><a href="./ci/helpers/date_helper.html">Date Helper</a></li>
<li><a href="./ci/helpers/directory_helper.html">Directory Helper</a></li>
<li><a href="./ci/helpers/download_helper.html">Download Helper</a></li>
<li><a href="./ci/helpers/email_helper.html">Email Helper</a></li>
<li><a href="./ci/helpers/file_helper.html">File Helper</a></li>
<li><a href="./ci/helpers/form_helper.html">Form Helper</a></li>
<li><a href="./ci/helpers/html_helper.html">HTML Helper</a></li>
<li><a href="./ci/helpers/inflector_helper.html">Inflector Helper</a></li>
<li><a href="./ci/helpers/language_helper.html">Language Helper</a></li>
<li><a href="./ci/helpers/number_helper.html">Number Helper</a></li>
<li><a href="./ci/helpers/path_helper.html">Path Helper</a></li>
<li><a href="./ci/helpers/security_helper.html">Security Helper</a></li>
<li><a href="./ci/helpers/smiley_helper.html">Smiley Helper</a></li>
<li><a href="./ci/helpers/string_helper.html">String Helper</a></li>
<li><a href="./ci/helpers/text_helper.html">Text Helper</a></li>
<li><a href="./ci/helpers/typography_helper.html">Typography Helper</a></li>
<li><a href="./ci/helpers/url_helper.html">URL Helper</a></li>
<li><a href="./ci/helpers/xml_helper.html">XML Helper</a></li>
</ul>
<h3>Additional Resources</h3>
<ul>
<li><a href="http://codeigniter.com/forums/">Community Forums</a></li>
<li><a href="http://codeigniter.com/wiki/">Community Wiki</a></li>
</ul>
</td>
</tr>
</table>
<h2>DataMapper</h2>
<table cellpadding="0" border="0" style="width: 98%;" cellspaceing="0"><tbody><tr><td valign="top"><ul><li><a href="../index.html">User Guide Home</a></li><li><a href="toc.html">Table of Contents Page</a></li></ul><h3>Basic Info</h3><ul><li><a href="license.html">License Agreement</a></li><li><a href="changelog.html">Change Log</a></li><li><a href="roadmap.html">Road Map</a></li><li><a href="credits.html">Credits</a></li><li><a href="manual.html">Using This Manual</a></li></ul><h3>Installation</h3><ul><li><a href="requirements.html">Server Requirements</a></li><li><a href="download.html">Downloading DMZ</a></li><li><a href="installation.html">Installation Instructions</a></li><li><a href="upgrade.html">Upgrading Instructions</a></li><li><a href="troubleshooting.html">Troubleshooting / FAQ</a></li></ul></td><td valign="top"><h3>General Topics</h3><ul><li><a href="gettingstarted.html">Getting Started</a></li><li><a href="config.html">Configuration</a></li><li><a href="reservednames.html">Reserved Names</a></li><li><a href="database.html">Database Tables</a></li><li><a href="models.html">DataMapper Models</a></li><li><a href="prefix.html">Setting up Table Prefixes</a></li><li><a href="relationtypes.html">Relationship Types</a></li><li><a href="settingrelations.html">Setting up Relationships</a></li><li><a href="advancedrelations.html">Advanced Relationships</a></li><li><a href="controllers.html">DataMapper in Controllers</a></li><li><a href="timestamp.html">Automated Timestamps</a></li><li><a href="validation.html">Validation</a></li><li><a href="getrules.html">Get Rules</a></li><li><a href="transactions.html">Transactions</a></li><li><a href="prodcache.html">Production Cache</a></li></ul></td><td valign="top"><h3>Functions</h3><ul><li><a href="get.html">Get</a></li><li><a href="getadvanced.html">Get (Advanced)</a></li><li><a href="getby.html">Get By</a></li><li><a href="functions.html">SQL Functions</a></li><li><a href="subqueries.html">Subqueries</a></li><li><a href="clonecopy.html">Cloning and Copies</a></li><li><a href="save.html">Save</a></li><li><a href="update.html">Update</a></li><li><a href="delete.html">Delete</a></li><li><a href="deleteall.html">Delete All</a></li><li><a href="refreshall.html">Refresh All</a></li><li><a href="validate.html">Validate</a></li><li><a href="clear.html">Clear</a></li><li><a href="count.html">Count</a></li><li><a href="exists.html">Exists</a></li><li><a href="utility.html">Utility Methods</a></li></ul></td><td valign="top"><h3>Relationships</h3><ul><li><a href="accessingrelations.html">Accessing Relationships</a></li><li><a href="savingrelations.html">Saving Relationships</a></li><li><a href="deletingrelations.html">Deleting Relationships</a></li><li><a href="joinfields.html">Working with Join Fields</a></li></ul><h3>Extending DataMapper</h3><ul><li><a href="extensions.html">Using Extensions</a></li><li><a href="extwrite.html">Writing an Extension</a></li><li><a href="extlist.html">Included Extensions</a></li></ul><h3>Examples</h3><ul><li><a href="examples.html">Example Application</a></li></ul><h3>Glossary</h3><ul><li><a href="glossary.html">Glossary</a></li></ul></td></tr></tbody></table>
</div>
<!-- END CONTENT -->
<div id="footer">
<p><a href="#top">Top of Page</a></p>
<div id="copyrights">
<p><a href="http://www.overzealous.com/dmz/">DMZ</a> · Copyright © 2009 · <a href="http://www.overzealous.com/">Phil DeJarnett</a></p>
<p><a href="http://stensi.com">DataMapper</a> · Copyright © 2008 · <a href="http://stensi.com/">Simon Stenhouse</a></p>
<p><a href="http://codeigniter.com">CodeIgniter</a> · Copyright © 2006-2008 · <a href="http://ellislab.com/">Ellislab, Inc.</a></p>
</div>
</div>
<script type="text/javascript" src="./js/mootools.js"></script>
<script type="text/javascript" src="./js/menu.js"></script>
<script type="text/javascript">
<!--
window.addEvent('domready', function() {
// Create Menu
var menu = new Menu({
basepath: './',
pagespath: './pages/'
});
});
//-->
</script>
</body>
</html>