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
|charset=|charset to use with the content_type parameter.|
39
-
|content_disposition=|Content-Disposition - You can manually write out the full header value (i.e. attachment; filename="example.txt"), or just use a value of "attachmenet" and use the filename= parameter.|
40
-
|content_encoding=|Content-Encoding|
41
-
|content_language=|Content-Language|
42
-
|content_length=|Content-Length|
43
-
|content_location=|Content-Location|
44
-
|content_md5=|Content-MD5|
45
-
|content_range=|Content-Range|
46
-
|content_type=|Content-Type - You can manually write out the full header value (i.e. text/html; charset=UTF-8) or you can simply specify the type and use the charset= parameter.|
47
-
|etag=|ETag|
48
-
|expires=|Expires - You can use relative date such as "+1 day";|
49
-
|filename=|When content_disposition is set to attachment, this sets the filename.|
50
-
|last_modified=|Last-Modified - You can use relative date such as "+1 day";|
51
-
|link=|Link|
52
-
|location=|Location|
53
-
|permissions_policy|Permissions-Policy (set to `interest-cohort=()` to opt out of FLoC)|
54
-
|pragma=|Pragma|
55
-
|refresh=|Refresh - You can manually write out the full header value (i.e. 5; url=https://example.com/), or just set the refresh value in seconds and use the url= parameter.|
56
-
|retry_after=|Retry-After - You can either specify a number of seconds or use relative dates (i.e. "+90 mins").|
|charset= |charset to use with the content_type parameter.|
39
+
|content_disposition= |Content-Disposition - You can manually write out the full header value (i.e. attachment; filename="example.txt"), or just use a value of "attachmenet" and use the filename= parameter.|
40
+
|content_encoding= |Content-Encoding|
41
+
|content_language= |Content-Language|
42
+
|content_length= |Content-Length|
43
+
|content_location= |Content-Location|
44
+
|content_md5= |Content-MD5|
45
+
|content_range= |Content-Range|
46
+
|content_type= |Content-Type - You can manually write out the full header value (i.e. text/html; charset=UTF-8) or you can simply specify the type and use the charset= parameter.|
47
+
|etag= |ETag|
48
+
|expires= |Expires - You can use relative date such as "+1 day";|
49
+
|filename= |When content_disposition is set to `attachment`, this sets the filename.|
50
+
|last_modified= |Last-Modified - You can use relative date such as "+1 day";|
51
+
|link= |Link|
52
+
|location= |Location|
53
+
|permissions_policy= |Permissions-Policy|
54
+
|pragma= |Pragma|
55
+
|refresh= |Refresh - You can manually write out the full header value (i.e. 5; url=https://example.com/), or just set the refresh value in seconds and use the url= parameter.|
56
+
|retry_after= |Retry-After - You can either specify a number of seconds or use relative dates (i.e. "+90 mins").|
57
+
|status= |Status|
58
+
|tk= |Tk|
59
+
|url= |URL to use in the refresh parameter.|
60
+
|vary= |Vary|
61
+
|via= |Via|
62
+
|warning= |Warning|
63
+
|x_content_duration= |X-Content-Duration|
64
+
|x_content_type_options= |X-Content-Type-Options|
65
+
|x_frame_options= |X-Frame-Options|
66
+
|x_ua_compatible= |X-UA-Compatible|
67
+
68
+
69
+
NOTE: **Note:** The plugin can only be used in templates that are not being cached.
Copy file name to clipboardExpand all lines: docs/add-ons/search/advanced.md
+58-1Lines changed: 58 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -267,6 +267,63 @@ With this parameter, you can specify the css class you want the form to have, en
267
267
268
268
With this parameter, you can specify the css id you want the form to have.
269
269
270
+
### `orderby=`
271
+
272
+
orderby="entry_date"
273
+
274
+
The "orderby" parameter sets the display order of the entries. The available values for this property are `entry_date`, `most_comments`, `recent_comment`, `title`, `status`, `entry_id`, `url_title`, `edit_date`, `comment_total`, `expiration_date`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`.`
275
+
276
+
If this parameter is not set, it will default to ordering by entry date.
277
+
278
+
### `sort=`
279
+
280
+
sort="asc"
281
+
282
+
sort="desc"
283
+
284
+
The sort order can be "asc" (ascending order or "oldest item first") or "desc" (descending order or "newest item first"). If you do not use a sort order the default is desc.
285
+
270
286
## Variables
271
287
272
-
A full discussion of the available variables is not feasible there is a great deal of interdependence between the various form fields, variables, and javascript functions. The Parameters can be used to modify how the search behaves. If you wish to modify the search form itself, simply use the default form as a base and customize it from there.
288
+
### `channel_names`
289
+
290
+
Pre-populated string containing list of `<option>` tags containing channels that can be used to select channel to search in.
291
+
292
+
### `lang:...`
293
+
294
+
Should you be willing to use the language string from ExpressionEngine language files to build the search, the following are available:
Copy file name to clipboardExpand all lines: docs/add-ons/search/results.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,6 +100,8 @@ An excerpt from the entry. The excerpt consists of the first 50 words from the f
100
100
101
101
The text from the entry. Unlike the {excerpt} variable, this one returns the entire text from the field specified for search excerpting in your [Channel Management](control-panel/channels.md) settings for your channels.
102
102
103
+
TIP: **Tip:** Use [variable modifiers](templates/variable-modifiers.md) to more precisely control the output of search results variables.
104
+
103
105
### `{id_auto_path}`
104
106
105
107
This parameter is replaced with the URL to the entry with the Entry ID appended to the end. Unlike other "path" variables, this variable does **not** require the Template_Group/Template to be specified. Instead, the path will automatically be determined by the Channel URL setting for the channel in [Channel Management](control-panel/channels.md).
Copy file name to clipboardExpand all lines: docs/add-ons/search/simple.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -182,6 +182,22 @@ With this parameter, you can specify the css class you want the form to have, en
182
182
183
183
With this parameter, you can specify the css id you want the form to have.
184
184
185
+
### `orderby=`
186
+
187
+
orderby="entry_date"
188
+
189
+
The "orderby" parameter sets the display order of the entries. The available values for this property are `entry_date`, `most_comments`, `recent_comment`, `title`, `status`, `entry_id`, `url_title`, `edit_date`, `comment_total`, `expiration_date`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`.`
190
+
191
+
If this parameter is not set, it will default to ordering by entry date.
192
+
193
+
### `sort=`
194
+
195
+
sort="asc"
196
+
197
+
sort="desc"
198
+
199
+
The sort order can be "asc" (ascending order or "oldest item first") or "desc" (descending order or "newest item first"). If you do not use a sort order the default is desc.
200
+
185
201
## Variables
186
202
187
203
There are no specific variables associated with the Simple Search Form. You may use the [{path=''}](templates/globals/path.md) Global Variable to create a link to an Advanced Search Form if you wish.
Copy file name to clipboardExpand all lines: docs/advanced-usage/front-end/dock.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,11 +46,15 @@ The Control Panel button on the Dock will open the site's Control Panel in a new
46
46
## Prolets
47
47
Prolets are add-on components that reveal some of add-on's functionality for the Control Panel to the front-end, making it possible to edit data directly on the page where it belongs.
48
48
49
-
### Entries Prolet
50
-
Pro is currently shipped with the Entries prolet. Clicking on the Entries prolet opens a prolet window with all entries currently listed. Allowing you to quickly find and edit other entries in your site.
49
+
### Built-in Prolets
50
+
ExpressionEngine is shipped with the Entries and Publish prolets.
51
+
52
+
Clicking on the Entries prolet opens a prolet window with all entries currently listed. Allowing you to quickly find and edit other entries in your site.
51
53
52
54

53
55
56
+
Publish prolets allows creation of new entry directly from the page you are viewing. Clicking Publish prolet button brings the window with channel selection, and picking the channel brings entry form.
57
+
54
58
### Custom Prolets
55
59
Developers may create third-party prolets that can be installed with add-ons. Read the [docs on creating prolets](development/prolets.md) for more information on how to create and install third-party prolets.
0 commit comments