Subversion-Projekte lars-tiefland.codeigniter

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3
<head>
4
 
5
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
<title>Creating Core System Classes : CodeIgniter User Guide</title>
7
 
8
<style type='text/css' media='all'>@import url('../userguide.css');</style>
9
<link rel='stylesheet' type='text/css' media='all' href='../userguide.css' />
10
 
11
<script type="text/javascript" src="../nav/nav.js"></script>
12
<script type="text/javascript" src="../nav/prototype.lite.js"></script>
13
<script type="text/javascript" src="../nav/moo.fx.js"></script>
14
<script type="text/javascript" src="../nav/user_guide_menu.js"></script>
15
 
16
<meta http-equiv='expires' content='-1' />
17
<meta http-equiv= 'pragma' content='no-cache' />
18
<meta name='robots' content='all' />
19
<meta name='author' content='ExpressionEngine Dev Team' />
20
<meta name='description' content='CodeIgniter User Guide' />
21
 
22
</head>
23
<body>
24
 
25
<!-- START NAVIGATION -->
26
<div id="nav"><div id="nav_inner"><script type="text/javascript">create_menu('../');</script></div></div>
27
<div id="nav2"><a name="top"></a><a href="javascript:void(0);" onclick="myHeight.toggle();"><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>
28
<div id="masthead">
29
<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
30
<tr>
31
<td><h1>CodeIgniter User Guide Version 1.7.1</h1></td>
32
<td id="breadcrumb_right"><a href="../toc.html">Table of Contents Page</a></td>
33
</tr>
34
</table>
35
</div>
36
<!-- END NAVIGATION -->
37
 
38
 
39
<!-- START BREADCRUMB -->
40
<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
41
<tr>
42
<td id="breadcrumb">
43
<a href="http://codeigniter.com/">CodeIgniter Home</a> &nbsp;&#8250;&nbsp;
44
<a href="../index.html">User Guide Home</a> &nbsp;&#8250;&nbsp;
45
Creating Core System Classes
46
</td>
47
<td id="searchbox"><form method="get" action="http://www.google.com/search"><input type="hidden" name="as_sitesearch" id="as_sitesearch" value="codeigniter.com/user_guide/" />Search User Guide&nbsp; <input type="text" class="input" style="width:200px;" name="q" id="q" size="31" maxlength="255" value="" />&nbsp;<input type="submit" class="submit" name="sa" value="Go" /></form></td>
48
</tr>
49
</table>
50
<!-- END BREADCRUMB -->
51
 
52
<br clear="all" />
53
 
54
 
55
<!-- START CONTENT -->
56
<div id="content">
57
 
58
<h1>Creating Core System Classes</h1>
59
 
60
<p>Every time CodeIgniter runs there are several base classes that are initialized automatically as part of the core framework.
61
It is possible, however, to swap any of the core system classes with your own versions or even extend the core versions.</p>
62
 
63
<p><strong>Most users will never have any need to do this,
64
but the option to replace or extend them does exist for those who would like to significantly alter the CodeIgniter core.</strong>
65
</p>
66
 
67
<p class="important"><strong>Note:</strong>&nbsp; Messing with a core system class has a lot of implications, so make sure you
68
know what you are doing before attempting it.</p>
69
 
70
 
71
<h2>System Class List</h2>
72
 
73
<p>The following is a list of the core system files that are invoked every time CodeIgniter runs:</p>
74
 
75
<ul>
76
<li>Benchmark</li>
77
<li>Config</li>
78
<li>Controller</li>
79
<li>Exceptions</li>
80
<li>Hooks</li>
81
<li>Input</li>
82
<li>Language</li>
83
<li>Loader</li>
84
<li>Log</li>
85
<li>Output</li>
86
<li>Router</li>
87
<li>URI</li>
88
</ul>
89
 
90
<h2>Replacing Core Classes</h2>
91
 
92
<p>To use one of your own system classes instead of a default one simply place your version inside your local <dfn>application/libraries</dfn> directory:</p>
93
 
94
<code>application/libraries/<dfn>some-class.php</dfn></code>
95
 
96
<p>If this directory does not exist you can create it.</p>
97
 
98
<p>Any file named identically to one from the list above will be used instead of the one normally used.</p>
99
 
100
<p>Please note that your class must use <kbd>CI</kbd> as a prefix. For example, if your file is named <kbd>Input.php</kbd> the class will be named:</p>
101
 
102
<code>
103
class CI_Input {<br /><br />
104
 
105
}
106
</code>
107
 
108
 
109
 
110
<h2>Extending Core Class</h2>
111
 
112
<p>If all you need to do is add some functionality to an existing library - perhaps add a function or two - then
113
it's overkill to replace the entire library with your version.  In this case it's better to simply extend the class.
114
Extending a class is nearly identical to replacing a class with a couple exceptions:</p>
115
 
116
<ul>
117
<li>The class declaration must extend the parent class.</li>
118
<li>Your new class name and filename must be prefixed with <kbd>MY_</kbd> (this item is configurable.  See below.).</li>
119
</ul>
120
 
121
<p>For example, to extend the native <kbd>Input</kbd> class you'll create a file named <dfn>application/libraries/</dfn><kbd>MY_Input.php</kbd>, and declare your class with:</p>
122
 
123
<code>
124
class MY_Input extends CI_Input {<br /><br />
125
 
126
}</code>
127
 
128
<p>Note: If you need to use a constructor in your class make sure you extend the parent constructor:</p>
129
 
130
<code>
131
class MY_Input extends CI_Input {<br />
132
<br />
133
&nbsp;&nbsp;&nbsp;&nbsp;function My_Input()<br />
134
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
135
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;parent::CI_Input();<br />
136
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
137
}</code>
138
 
139
<p class="important"><strong>Tip:</strong>&nbsp; Any functions in your class that are named identically to the functions in the parent class will be used instead of the native ones
140
(this is known as "method overriding").
141
This allows you to substantially alter the CodeIgniter core.</p>
142
 
143
<p>If you are extending the Controller core class, then be sure to extend your new class in your application controller's constructors.</p>
144
 
145
<code>class Welcome extends MY_Controller {<br />
146
<br />
147
&nbsp;&nbsp;&nbsp;&nbsp;function Welcome()<br />
148
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
149
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;parent::MY_Controller();<br />
150
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
151
<br />
152
&nbsp;&nbsp;&nbsp;&nbsp;function index()<br />
153
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
154
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$this->load->view('welcome_message');<br />
155
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
156
}</code>
157
 
158
<h3>Setting Your Own Prefix</h3>
159
 
160
<p>To set your own sub-class prefix, open your <dfn>application/config/config.php</dfn> file and look for this item:</p>
161
 
162
<code>$config['subclass_prefix'] = 'MY_';</code>
163
 
164
<p>Please note that all native CodeIgniter libraries are prefixed with <kbd>CI_</kbd> so DO NOT use that as your prefix.</p>
165
 
166
 
167
 
168
 
169
</div>
170
<!-- END CONTENT -->
171
 
172
 
173
<div id="footer">
174
<p>
175
Previous Topic:&nbsp;&nbsp;<a href="creating_libraries.html">Creating Your Own Libraries</a>
176
&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;
177
<a href="#top">Top of Page</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;
178
<a href="../index.html">User Guide Home</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;
179
Next Topic:&nbsp;&nbsp;<a href="hooks.html">Hooks - Extending the Core</a>
180
</p>
181
<p><a href="http://codeigniter.com">CodeIgniter</a> &nbsp;&middot;&nbsp; Copyright &#169; 2006-2008 &nbsp;&middot;&nbsp; <a href="http://ellislab.com/">Ellislab, Inc.</a></p>
182
</div>
183
 
184
</body>
185
</html>