Skip to content

Commit ae3fe24

Browse files
authored
Merge pull request #1120 from ExpressionEngine/fix/broken-links
Did a round of bad link cleanup
2 parents e20a80e + 70bda5d commit ae3fe24

8 files changed

Lines changed: 17 additions & 17 deletions

File tree

docs/add-ons/pro-search/filters.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ You can use the native `category` parameter to filter by category. For more adva
177177

178178
### `category`
179179

180-
Like the [native category= parameter](/channel/channel_entries.md#category), but it also accepts category URL titles.
180+
Like the [native category= parameter](channels/entries.md#category), but it also accepts category URL titles.
181181

182182
### `category:group_name`
183183

@@ -235,7 +235,7 @@ You can use the native `search:field_name` parameter to target specific fields.
235235

236236
#### `search:field_name`
237237

238-
Like the [Channel search:field_name= parameter](/channel/entries.md#searchfield_name).
238+
Like the [Channel search:field_name= parameter](channels/entries.md#searchfield_name).
239239

240240
#### `search:field_name:column_name`
241241

@@ -255,7 +255,7 @@ Works just like the `search:field_name` parameter, but targets statuses.
255255

256256
#### `contains_words`
257257

258-
Accepts search field parameter names. Force the given parameter values to match the full term, to ensure that the values are [not contained within other words](/channel/channel_entries.md#contains-matching). Similar to forcing full term matching by using `search:field_name="value\W"`.
258+
Accepts search field parameter names. Force the given parameter values to match the full term, to ensure that the values are [not contained within other words](channels/entries.md#contains-matching). Similar to forcing full term matching by using `search:field_name="value\W"`.
259259

260260
contains_words="search:field_name"
261261

docs/channels/entries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ NOTE: **Note:** You will often use this parameter in conjunction with the [if no
518518

519519
The "search:" parameter allows you to constrain Channel Entries output based on content within your fields. You specify which field to search by using the field's short name immediately after "search:". You can search based on whether a field is an exact match to your provided term or whether or not a field simply contains your term.
520520

521-
NOTE: **Note:** Some fields store their content in a manner that affects the ability to work with this parameter. Grid fields, for instance, can only use this parameter for columns with "Include in search?" enabled (For performance, EE groups those columns into a searchable blob.). You can, however, search on Grid columns by using Pro Search's [`{exp:pro_search:results}`](add-ons/pro-search/tags.md#exppro_searchresults) tag and the [Field Search filter](/add-ons/pro-search/filters.md#field-search). Pro Search can also be used to filter entries by [title](/add-ons/pro-search/filters.md#searchtitle), [url_title](/add-ons/pro-search/filters.md#searchurltitle), [status](/add-ons/pro-search/filters.md#searchstatus), and [more](/add-ons/pro-search/filters.md#field-search). Relationship fields cannot be searched using the "search:" parameter.
521+
NOTE: **Note:** Some fields store their content in a manner that affects the ability to work with this parameter. Grid fields, for instance, can only use this parameter for columns with "Include in search?" enabled (For performance, EE groups those columns into a searchable blob.). You can, however, search on Grid columns by using Pro Search's [`{exp:pro_search:results}`](add-ons/pro-search/tags.md#exppro_searchresults) tag and the [Field Search filter](/add-ons/pro-search/filters.md#field-search). Pro Search can also be used to filter entries by [title](/add-ons/pro-search/filters.md#searchtitle), [url_title](/add-ons/pro-search/filters.md#searchurl_title), [status](/add-ons/pro-search/filters.md#searchstatus), and [more](/add-ons/pro-search/filters.md#field-search). Relationship fields cannot be searched using the "search:" parameter.
522522

523523

524524
NOTE: **Note:** You can also use search:title and search:url_title in addition to searching field content. Remember that it is best to use url_title="something" if you're looking for an exact url_title match.

docs/development/legacy/helpers/text-helper.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The Text Helper file contains functions that assist in working with text. This h
2121

2222
[TOC=3]
2323

24-
### `word_limiter($str[, $limit = 100[, $end_char = '…']])`
24+
### `word_limiter($str[, $limit = 100[, $end_char = '...']])`
2525

2626
| Parameter | Type | Description |
2727
| ---------- | -------- | ----------------------------------- |
@@ -38,7 +38,7 @@ Truncates a string to the number of _words_ specified. Example:
3838

3939
The third parameter is an optional suffix added to the string. By default it adds an ellipsis.
4040

41-
### `character_limiter($str[, $n = 500[, $end_char = '…']])`
41+
### `character_limiter($str[, $n = 500[, $end_char = '...']])`
4242

4343
| Parameter | Type | Description |
4444
| ---------- | -------- | ----------------------------------- |

docs/development/legacy/libraries/template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ lang: php
1717

1818
If you are not familiar with the ExpressionEngine template language, you may wish to read the [Template Overview](templates/overview.md).
1919

20-
When you create a [Plugin](development/plugins.md) or [Module](development/modules.md), the name of your add-on and any of its public methods become available as ExpressionEngine tags for use in templates:
20+
When you create a [Plugin](development/custom-template-tags.md) or [Module](development/modules.md), the name of your add-on and any of its public methods become available as ExpressionEngine tags for use in templates:
2121

2222
{exp:addon:method} some template data {/exp:addon:method}
2323

@@ -578,4 +578,4 @@ EE Templates have a special EE Code Comments for site designer notes and are rem
578578

579579
### `sync_from_files()`
580580

581-
Synchronize templates between database and files
581+
Synchronize templates between database and files

docs/development/v3-add-on-migration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ lang: php
1515

1616
[TOC]
1717

18-
This guide is an overview of the changes you will need to make to have your add-ons up and running under 3.0. The most notable changes to add-ons are the [addon.setup.php file](development/addon-setup-php-file.md) and the new [Control Panel Style Reference](#control-panel-styles).
18+
This guide is an overview of the changes you will need to make to have your add-ons up and running under 3.0. The most notable changes to add-ons are the [addon.setup.php file](development/addon-setup-php-file.md) and the new [Control Panel Style Reference](#module-changes).
1919

2020
There are some deprecated features and code, so be sure to check the [Developer Logs](control-panel/system-logs.md#developer-logs) in the control panel for messages regarding method deprecation to make sure your add-on is not calling any deprecated code.
2121

2222
If you're just getting started, we recommend reviewing some of the new service documentation as well as the following pages:
2323

2424
- [The addon.setup.php File](development/addon-setup-php-file.md)
2525
- [General Syntax Changes](#syntax-changes)
26-
- [Control Panel Pages](#control-panel-styles)
26+
- [Control Panel Pages](#module-changes)
2727

2828
## Required Changes
2929

@@ -95,7 +95,7 @@ ExpressionEngine 3.0 adopts [PSR-1](https://www.php-fig.org/psr/psr-1/) and [PSR
9595

9696
#### CP URLs
9797

98-
`cp_url(...)` has been deprecated, please use `ee('CP/URL', '...')`. For the full documentation see [Control Panel Styles](#control-panel-styles).
98+
`cp_url(...)` has been deprecated, please use `ee('CP/URL', '...')`. For the full documentation see [Control Panel Styles](#module-changes).
9999

100100
#### Model Service
101101

docs/fieldtypes/text.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The maximum number of characters this field should allow.
2121

2222
### Text Formatting
2323

24-
Specifies how the entered-text will be formatted when rendered on the front-end. Choices include replacing each linebreak with a `BR` tag, automatically surrounding paragraphs with `P` tags, or Markdown processing. [Additional plugins](development/plugins.md) may be installed to provide more text formatting options.
24+
Specifies how the entered-text will be formatted when rendered on the front-end. Choices include replacing each linebreak with a `BR` tag, automatically surrounding paragraphs with `P` tags, or Markdown processing. [Additional plugins](development/text-formatting.md) may be installed to provide more text formatting options.
2525

2626
### Allow Override?
2727

docs/fieldtypes/textarea.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Height of the editor in rows of text.
2323

2424
### Text Formatting
2525

26-
Specifies how the entered-text will be formatted when rendered on the front-end. Choices include replacing each linebreak with a `BR` tag, automatically surrounding paragraphs with `P` tags, or Markdown processing. [Additional plugins](development/plugins.md) may be installed to provide more text formatting options.
26+
Specifies how the entered-text will be formatted when rendered on the front-end. Choices include replacing each linebreak with a `BR` tag, automatically surrounding paragraphs with `P` tags, or Markdown processing. [Additional plugins](development/text-formatting.md) may be installed to provide more text formatting options.
2727

2828
### Allow Override?
2929

@@ -55,4 +55,4 @@ The supported fields for file tags include:
5555
- `height`: The height of the file in pixels.
5656
- `mime_type`: The MIME type of the file.
5757
- `location`: Where the photo was taken
58-
- `credits`: Photo credits
58+
- `credits`: Photo credits

docs/installation/changelog.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ NOTE: **Important:** This version includes important security updates.
470470
- Resolved an issue where curl requests on Windows could not use the native root certificate store
471471
- Resolved an issue where updates from the CLI would not increment the version number
472472

473-
NOTE: **Important:** If your site uses any textareas that contain multiple image links, you should [Update File Usage Information](/latest/control-panel/utilities/data-operations.md#update-file-usage-information) after upgrading to trigger a re-count of file usage statistics.
473+
NOTE: **Important:** If your site uses any textareas that contain multiple image links, you should [Update File Usage Information](control-panel/utilities/data-operations.md#update-file-usage-information) after upgrading to trigger a re-count of file usage statistics.
474474

475475

476476
## Version 7.5.8
@@ -2238,7 +2238,7 @@ NOTE: **Important:** This version includes important security updates.
22382238

22392239

22402240
- **Developers** 💻
2241-
- New [Add-on Classes](development/best-practices/about.md)
2241+
- New [Add-on Classes](development/addon-development-overview.md)
22422242
- `make:addon` CLI command now generates add-on's with Add-on controller classes
22432243

22442244
## Version 7.1.6
@@ -2526,7 +2526,7 @@ NOTE:**Note:** If multiple members are needed, an ExpressionEngine Pro license i
25262526
- Ability to organize content into [subfolders](/control-panel/file-manager/subfolders.md)
25272527
- Folders can now be created directly on the filesystem through the File Manager
25282528
- Implemented [FlySystem PHP library](https://flysystem.thephpleague.com/docs/) to add more extensiblity to the File Manager.
2529-
- Added support for cloud based file storage through [Adapters](/control-panel/file-manager/adapters.md)
2529+
- Added support for cloud based file storage through [Adapters](control-panel/file-manager/upload-directories.md#adapter)
25302530
- Changed how files are referenced in the database. Previously files were referenced using `{filedir_X}filename.ext`. Files are now referenced using `{file:XX:url}`. [Compatibility Mode](/control-panel/file-manager/file-manager.md#compatibility-mode) is recommended for upgrades until there is confirmation that all add-ons will work with new file data format.
25312531
- File usage is now available in the File Manager to display where a file is used throughout the Control Panel as well as notify users if a file is in use before deleting the file
25322532

0 commit comments

Comments
 (0)