You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -110,6 +110,14 @@ This parameter is replaced with the URL to the entry with the Entry ID appended
110
110
111
111
The Template_Group/Template with which to display the member profile of the author of the entry. Typically, this variable will be specified as {member_path='member/index'}.
112
112
113
+
### `{switch=}`
114
+
115
+
{switch="option_one|option_two|option_three"}
116
+
117
+
This variable permits you to rotate through any number of values as the entries are displayed. The first entry will use "option_one", the second will use "option_two", the third "option_three", the fourth "option_one", and so on.
118
+
119
+
Multiple instances of the {switch=} tag may be used and ExpressionEngine will intelligently keep track of each one.
120
+
113
121
## Search Keywords Tag
114
122
115
123
This tag lets you display the keywords used to perform a search. It is used on the search results page in order to show the user exactly what search terms they used:
Copy file name to clipboardExpand all lines: docs/development/services/model/relating-models.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,7 @@ Here `left` describes the pivot table key connecting the current model and `righ
123
123
124
124
## Inverse Relationships
125
125
126
-
All relationships must be declared in both associated models. Thif tmproves code consistency and predictability by allowing both sides of the relationship to be altered without creating orphaned objects. This is particularly important when creating parent-child relationships that cascade their deletions automatically.
126
+
All relationships must be declared in both associated models. This improves code consistency and predictability by allowing both sides of the relationship to be altered without creating orphaned objects. This is particularly important when creating parent-child relationships that cascade their deletions automatically.
127
127
128
128
When relating to models that are not your own, this becomes problematic since your addon cannot directly add relationships to native models. To get around this problem and to allow for native events to cascade to your models, you must declare all external dependencies in your `addon.setup.php` file:
Copy file name to clipboardExpand all lines: docs/fieldtypes/fluid.md
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,10 @@ Fields can be used more than once and in any order. They can be re-ordered withi
31
31
32
32
The frontend will output the various field contents in the order specified in the entry.
33
33
34
+
## Channel Form
35
+
36
+
A fluid field cannot be used in the channel form.
37
+
34
38
## Template Tags
35
39
36
40
Fluid field content is ouput using variable pairs. An outer variable pair using the Fluid field's shortname wraps all content. Within that wrapper variable pair, each field can be output using a prefixed variable pair and the `{content}` variable. Within the prefixed variable pair, the `{content}` variable is used in place of the field's shortname.
Copy file name to clipboardExpand all lines: docs/installation/changelog.md
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,22 @@
9
9
10
10
# ExpressionEngine v5 Change Log
11
11
12
+
## Version 5.3.1
13
+
14
+
Release Date: April 9, 2020
15
+
16
+
-**Added support for PHP 7.4**
17
+
- Fixed a bug ([#147](https://github.com/ExpressionEngine/ExpressionEngine/issues/147)) where `is_system_on` was changed to `y` when updating the CMS.
18
+
- Fixed a bug ([#188](https://github.com/ExpressionEngine/ExpressionEngine/issues/188)) where image uploads where failing because of missing integer casting.
19
+
- Fixed a bug ([#190](https://github.com/ExpressionEngine/ExpressionEngine/issues/190)) where omitting the return parameter for the `{exp:consent:form}` tag didn't redirect to same page as it was submitted on per the [docs](https://docs.expressionengine.com/latest/add-ons/consent.html#return).
20
+
- Fixed a bug ([#248](https://github.com/ExpressionEngine/ExpressionEngine/issues/248)) where the `after_channel_entry_save` extension hook would run twice when saving a new channel entry.
21
+
- Fixed a bug ([#292](https://github.com/ExpressionEngine/ExpressionEngine/issues/292)) where a user was unable to delete page uri or page template with default theme installed.
22
+
- Fixes a bug ([#321](https://github.com/ExpressionEngine/ExpressionEngine/issues/321)) where a warning was not being displayed when an entry was saved if a URI was entered in the Pages module without also selecting a template.
23
+
- Fixed a bug ([#337](https://github.com/ExpressionEngine/ExpressionEngine/issues/337)) where an entry with a URL title of `n` was being ignored.
24
+
- Fixed a bug ([#346](https://github.com/ExpressionEngine/ExpressionEngine/issues/346)) where strpos Non-string needles will be interpreted as strings in the future.
25
+
- Fixed a bug ([#382](https://github.com/ExpressionEngine/ExpressionEngine/issues/382)) where drag and drop fields were producing errors in MSM sites.
0 commit comments