summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/general/reserved_names.rst
blob: 5ce7fc2ff77f2b521e19b9aab8c6eaa0a9c6962c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
##############
Reserved Names
##############

In order to help out, CodeIgniter uses a series of functions and names
in its operation. Because of this, some names cannot be used by a
developer. Following is a list of reserved names that cannot be used.

Controller names
----------------

Since your controller classes will extend the main application
controller you must be careful not to name your functions identically to
the ones used by that class, otherwise your local functions will
override them. The following is a list of reserved names. Do not name
your controller any of these:

-  Controller
-  CI_Base
-  _ci_initialize
-  Default
-  index

Functions
---------

-  is_really_writable()
-  load_class()
-  get_config()
-  config_item()
-  show_error()
-  show_404()
-  log_message()
-  _exception_handler()
-  get_instance()

Variables
---------

-  $config
-  $mimes
-  $lang

Constants
---------

-  ENVIRONMENT
-  EXT
-  FCPATH
-  SELF
-  BASEPATH
-  APPPATH
-  CI_VERSION
-  FILE_READ_MODE
-  FILE_WRITE_MODE
-  DIR_READ_MODE
-  DIR_WRITE_MODE
-  FOPEN_READ
-  FOPEN_READ_WRITE
-  FOPEN_WRITE_CREATE_DESTRUCTIVE
-  FOPEN_READ_WRITE_CREATE_DESTRUCTIVE
-  FOPEN_WRITE_CREATE
-  FOPEN_READ_WRITE_CREATE
-  FOPEN_WRITE_CREATE_STRICT
-  FOPEN_READ_WRITE_CREATE_STRICT