summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/libraries/form_validation.rst
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2015-02-02 12:41:01 +0100
committerAndrey Andreev <narf@devilix.net>2015-02-02 12:41:01 +0100
commitcd3d9dbcbc99fa956b7400d328f202e1bcab4677 (patch)
treeca1e12b6751f31de8f49055118318643f7d647c7 /user_guide_src/source/libraries/form_validation.rst
parent7fd0c2d22ccbeb824419477ae8b506b84002ea13 (diff)
[ci skip] Fix #3515
Diffstat (limited to 'user_guide_src/source/libraries/form_validation.rst')
-rw-r--r--user_guide_src/source/libraries/form_validation.rst40
1 files changed, 20 insertions, 20 deletions
diff --git a/user_guide_src/source/libraries/form_validation.rst b/user_guide_src/source/libraries/form_validation.rst
index 2d05d1b2f..da43a4bec 100644
--- a/user_guide_src/source/libraries/form_validation.rst
+++ b/user_guide_src/source/libraries/form_validation.rst
@@ -352,9 +352,9 @@ commonly is::
set_value('field name')
Open your myform.php view file and update the **value** in each field
-using the :func:`set_value()` function:
+using the :php:func:`set_value()` function:
-**Don't forget to include each field name in the :func:`set_value()`
+**Don't forget to include each field name in the :php:func:`set_value()`
function calls!**
::
@@ -643,7 +643,7 @@ Showing Errors Individually
===========================
If you prefer to show an error message next to each form field, rather
-than as a list, you can use the :func:`form_error()` function.
+than as a list, you can use the :php:func:`form_error()` function.
Try it! Change your form so that it looks like this::
@@ -1018,9 +1018,9 @@ Name Parameter Description
Class Reference
***************
-.. class:: CI_Form_validation
+.. php:class:: CI_Form_validation
- .. method:: set_rules($field[, $label = ''[, $rules = '']])
+ .. php:method:: set_rules($field[, $label = ''[, $rules = '']])
:param string $field: Field name
:param string $label: Field label
@@ -1034,7 +1034,7 @@ Class Reference
- :ref:`setting-validation-rules`
- :ref:`saving-groups`
- .. method:: run([$group = ''])
+ .. php:method:: run([$group = ''])
:param string $group: The name of the validation group to run
:returns: TRUE on success, FALSE if validation failed
@@ -1044,7 +1044,7 @@ Class Reference
on failure. You can optionally pass the name of the validation group via
the method, as described in: :ref:`saving-groups`
- .. method:: set_message($lang[, $val = ''])
+ .. php:method:: set_message($lang[, $val = ''])
:param string $lang: The rule the message is for
:param string $val: The message
@@ -1053,7 +1053,7 @@ Class Reference
Permits you to set custom error messages. See :ref:`setting-error-messages`
- .. method:: set_error_delimiters([$prefix = '<p>'[, $suffix = '</p>']])
+ .. php:method:: set_error_delimiters([$prefix = '<p>'[, $suffix = '</p>']])
:param string $prefix: Error message prefix
:param string $suffix: Error message suffix
@@ -1062,7 +1062,7 @@ Class Reference
Sets the default prefix and suffix for error messages.
- .. method:: set_data($data)
+ .. php:method:: set_data($data)
:param array $data: Array of data validate
:returns: CI_Form_validation instance (method chaining)
@@ -1071,7 +1071,7 @@ Class Reference
Permits you to set an array for validation, instead of using the default
``$_POST`` array.
- .. method:: reset_validation()
+ .. php:method:: reset_validation()
:returns: CI_Form_validation instance (method chaining)
:rtype: CI_Form_validation
@@ -1079,14 +1079,14 @@ Class Reference
Permits you to reset the validation when you validate more than one array.
This method should be called before validating each new array.
- .. method:: error_array()
+ .. php:method:: error_array()
:returns: Array of error messages
:rtype: array
Returns the error messages as an array.
- .. method:: error_string([$prefix = ''[, $suffix = '']])
+ .. php:method:: error_string([$prefix = ''[, $suffix = '']])
:param string $prefix: Error message prefix
:param string $suffix: Error message suffix
@@ -1096,7 +1096,7 @@ Class Reference
Returns all error messages (as returned from error_array()) formatted as a
string and separated by a newline character.
- .. method:: error($field[, $prefix = ''[, $suffix = '']])
+ .. php:method:: error($field[, $prefix = ''[, $suffix = '']])
:param string $field: Field name
:param string $prefix: Optional prefix
@@ -1107,7 +1107,7 @@ Class Reference
Returns the error message for a specific field, optionally adding a
prefix and/or suffix to it (usually HTML tags).
- .. method:: has_rule($field)
+ .. php:method:: has_rule($field)
:param string $field: Field name
:returns: TRUE if the field has rules set, FALSE if not
@@ -1124,12 +1124,12 @@ Helper Reference
Please refer to the :doc:`Form Helper <../helpers/form_helper>` manual for
the following functions:
-- :func:`form_error()`
-- :func:`validation_errors()`
-- :func:`set_value()`
-- :func:`set_select()`
-- :func:`set_checkbox()`
-- :func:`set_radio()`
+- :php:func:`form_error()`
+- :php:func:`validation_errors()`
+- :php:func:`set_value()`
+- :php:func:`set_select()`
+- :php:func:`set_checkbox()`
+- :php:func:`set_radio()`
Note that these are procedural functions, so they **do not** require you
to prepend them with ``$this->form_validation``. \ No newline at end of file