diff --git a/docs/development/services/cp-form.md b/docs/development/services/cp-form.md index 9d60007fc..c275d4779 100644 --- a/docs/development/services/cp-form.md +++ b/docs/development/services/cp-form.md @@ -13,7 +13,6 @@ The CP/Form Service allows for the creation of Shared Form View data using an object oriented interface. -TIP: Note this requires PHP >= 7.1 ## Usage diff --git a/docs/development/shared-form-view.md b/docs/development/shared-form-view.md index 022a8d7d3..1822ffcc5 100755 --- a/docs/development/shared-form-view.md +++ b/docs/development/shared-form-view.md @@ -13,10 +13,14 @@ lang: php # Shared Form View +TIP: Note. You can also build out control panel views [with objects using the CP form service](development/services/cp-form.md) + [TOC] ExpressionEngine's control panel markup is very modular and consistent. Because of that, we were able to abstract out the creation of most form views to a single view file to save repeating ourselves and keeping our form markup maintainable. This view is also available to add-on developers and is recommended for built-in support for form validation. + + ## Getting started The concept is quite familiar. In an ExpressionEngine controller file, we will create a variable and pass it to a view. The variable will be a specifically-structured array that will describe the layout and contents of our form.