[[toc]]
The “Rich Text” field type has been removed from Craft 3, in favor of new Redactor and CKEditor plugins.
If you have any existing Rich Text fields, they will be automatically converted to Redactor fields when you install the Redactor plugin.
If you do install the Redactor plugin, you will need to ensure that your Redactor configs in config/redactor/
are valid JSON. That means:
- No comments
- All object properties (the config setting names) must be wrapped in double quotes
- All strings must use double quotes rather than single quotes
// Bad:
{
/* interesting comment */
buttons: ['bold', 'italic']
}
// Good:
{
"buttons": ["bold", "italic"]
}
The “Position Select” field type has been removed from Craft 3. If you had any Position Select fields, they will be converted to Dropdown fields, with all the same options.
If you miss Position Select, you can try installing the Position Fieldtype plugin, which brings it back.
Support for Amazon S3, Rackspace Cloud Files, and Google Cloud Storage have been moved into plugins. If you have any asset volumes that were using those services in Craft 2, you will need to install the new plugins:
Some general config settings have been renamed in Craft 3. The old setting names have been deprecated, but will continue to work until Craft 4.
Old Setting | New Setting |
---|---|
activateAccountFailurePath |
invalidUserTokenPath |
backupDbOnUpdate |
backupOnUpdate 1 |
defaultFilePermissions |
defaultFileMode 2 |
defaultFolderPermissions |
defaultDirMode |
environmentVariables |
aliases 3 |
restoreDbOnUpdateFailure |
restoreOnUpdateFailure |
useWriteFileLock |
useFileLocks |
validationKey |
securityKey 4 |
1 Performance should no longer be a major factor when setting backupOnUpdate
to false
, since backups aren’t generated by PHP anymore.
2 defaultFileMode
is now null
by default, meaning it will be determined by the current environment.
*3 Settings that supported values defined by your environmentVariables
config setting in Craft 2 can now be set to system environment variables and aliases in Craft 3. (See Environmental Configuration to learn more about those.) Site URL and Local volume settings will automatically be converted to the new @alias/sub/path
syntax when updating to Craft 3.
4 securityKey
is no longer optional. If you haven’t set it yet, set it to the value in storage/runtime/validation.key
(if the file exists). The auto-generated validation.key
file fallback will be removed in Craft 4.
Some config settings have been removed entirely:
File | Setting |
---|---|
db.php |
collation |
db.php |
initSQLs |
general.php |
appId |
general.php |
cacheMethod (see Configuration → Data Caching Config) |
The omitScriptNameInUrls
setting can no longer be set to 'auto'
, as it was by default in Craft 2. Which means you will need to explicitly set it to true
in config/general.php
if you’ve configured your server to route HTTP requests to index.php
.
Similarly, the usePathInfo
setting can no longer be set to 'auto'
either. If your server is configured to support PATH_INFO, you can set this to true
. This is only necessary if you can’t set omitScriptNameInUrls
to true
, though.
If you have any URL rules saved in config/routes.php
, you will need to update them to Yii 2’s pattern-route syntax.
- Named parameters in the pattern should be defined using the format (
<ParamName:RegExp>
) rather than as a regular expression subpattern ((?P<ParamName>RegExp)
). - Unnamed parameters are no longer allowed (e.g.
([^\/]+)
). They must also be converted to the new named parameter syntax (<ParamName:RegExp>
). - Controller action routes should be defined as a string (
'action/path'
) rather than an array with anaction
key (['action' => 'action/path']
). - Template routes should be defined as an array with a
template
key (['template' => 'template/path']
) rather than a string ('template/path'
).
// Old:
'dashboard' => ['action' => 'dashboard/index'],
'settings/fields/new' => 'settings/fields/_edit',
'settings/fields/edit/(?P<fieldId>\d+)' => 'settings/fields/_edit',
'blog/type/([^\/]+)' => 'blog/_type',
// New:
'dashboard' => 'dashboard/index',
'settings/fields/new' => ['template' => 'settings/fields/_edit'],
'settings/fields/edit/<fieldId:\d+>' => ['template' => 'settings/fields/_edit'],
'blog/type/<type:[^\/]+>' => ['template' => 'blog/_type'],
Some PHP constants have been deprecated in Craft 3, and will no longer work in Craft 4:
Old PHP Constant | What to do instead |
---|---|
CRAFT_LOCALE |
Use the CRAFT_SITE constant1 |
CRAFT_SITE_URL |
Use the config:siteUrl config setting or environment variables |
1 Craft 3 doesn’t require each site/locale to have its own index.php
file anymore, so alternatively you can remove all unnecessary site/locale web roots and subfolders. See the new Localization guide for more info.
Craft 3 still supports static message translations, but the directory structure has changed. Now within your translations/
folder, you should create subdirectories for each locale, and within them, PHP files for each translation category.
The acceptable translation categories are:
Category | Description |
---|---|
app |
Craft’s translation messages |
yii |
Yii’s translation messages |
site |
custom site-specific translation messages |
plugin-handle |
Plugins’ translation messages |
In Craft 3, your translations/
folder might look something like this:
translations/
└── de/
├── app.php
└── site.php
User photos are stored as assets now. When upgrading to Craft 3, Craft will automatically create a new asset volume called “User Photos” at storage/userphotos/
(where Craft previously stored all user photos, but without the <Username>/
subfolders). However this folder is above your web root and inaccessible to HTTP requests, so until you make this volume publicly accessible, user photos will not work on the front end.
Here’s how you can resolve this:
- Move the
storage/userphotos/
folder somewhere below your web root (e.g.web/userphotos/
) - Go to Settings → Assets → Volumes → User Photos and configure the volume based on the new folder location:
- Update the File System Path setting to point to the new folder location
- Enable the “Assets in this volume have public URLs” setting
- Set the correct URL setting for the folder
- Save the volume
Craft 3 uses Twig 2, which has its own breaking changes for templates:
Twig 2 requires that you explicitly import macros in each template where you are using them. They are no longer automatically available if a parent template is including them, or even if they were defined in the same template file.
Old:
{% macro foo %}...{% endmacro %}
{{ _self.foo() }}
New:
{% macro foo %}...{% endmacro %}
{% import _self as macros %}
{{ macros.foo() }}
Twig 1 let you call block()
even for blocks that didn’t exist:
{% if block('foo') is not empty %}
{{ block('foo') }}
{% endif %}
Twig 2 will throw an error unless it’s a defined
test:
{% if block('foo') is defined %}
{{ block('foo') }}
{% endif %}
The {% paginate %} tag no longer has an {% endpaginate %}
closing tag, so remove any instances of that.
Some Twig template tags have been deprecated in Craft 3, and will be completely removed in Craft 4:
Old Tag | What to do instead |
---|---|
{% includeCss %} |
Use the {% css %} tag |
{% includeHiResCss %} |
Use the {% css %} tag and write your own media selector |
{% includeJs %} |
Use the {% js %} tag |
{% includeCssFile url %} |
{% do view.registerCssFile(url) %} |
{% includeJsFile url %} |
{% do view.registerJsFile(url) %} |
{% includeCssResource path %} |
Use an asset bundle |
{% includeJsResource path %} |
Use an asset bundle |
Some template functions have been removed completely:
Old Template Function | What to do instead |
---|---|
craft.hasPackage() |
(n/a) |
craft.entryRevisions.getDraftByOffset() |
(n/a) |
craft.entryRevisions.getVersionByOffset() |
(n/a) |
craft.fields.getFieldType(type) |
craft.app.fields.createField(type) |
craft.fields.populateFieldType() |
(n/a) |
craft.tasks.areTasksPending() |
craft.app.queue.getHasWaitingJobs() 1 |
craft.tasks.getRunningTask() |
(n/a) |
craft.tasks.getTotalTasks() |
(n/a) |
craft.tasks.haveTasksFailed() |
(n/a) |
craft.tasks.isTaskRunning() |
craft.app.queue.getHasReservedJobs() 1 |
1 Only available if the queue
component implements api:craft\queue\QueueInterface.
Some template functions have been deprecated in Craft 3, and will be completely removed in Craft 4:
Old Template Function | What to do instead |
---|---|
round(num) |
`num |
getCsrfInput() |
csrfInput() |
getHeadHtml() |
head() |
getFootHtml() |
endBody() |
getTranslations() |
`view.getTranslations() |
craft.categoryGroups.getAllGroupIds() |
craft.app.categories.allGroupIds |
craft.categoryGroups.getEditableGroupIds() |
craft.app.categories.editableGroupIds |
craft.categoryGroups.getAllGroups() |
craft.app.categories.allGroups |
craft.categoryGroups.getEditableGroups() |
craft.app.categories.editableGroups |
craft.categoryGroups.getTotalGroups() |
craft.app.categories.totalGroups |
craft.categoryGroups.getGroupById(id) |
craft.app.categories.getGroupById(id) |
craft.categoryGroups.getGroupByHandle(handle) |
craft.app.categories.getGroupByHandle(handle) |
craft.config.[setting] (magic getter) |
craft.app.config.general.[setting] |
craft.config.get(setting) |
craft.app.config.general.[setting] |
craft.config.usePathInfo() |
craft.app.config.general.usePathInfo |
craft.config.omitScriptNameInUrls() |
craft.app.config.general.omitScriptNameInUrls |
craft.config.getResourceTrigger() |
craft.app.config.general.resourceTrigger |
craft.locale() |
craft.app.language |
craft.isLocalized() |
craft.app.isMultiSite |
craft.deprecator.getTotalLogs() |
craft.app.deprecator.totalLogs |
craft.elementIndexes.getSources() |
craft.app.elementIndexes.sources |
craft.emailMessages.getAllMessages() |
craft.emailMessages.allMessages |
craft.emailMessages.getMessage(key) |
craft.app.emailMessages.getMessage(key) |
craft.entryRevisions.getDraftsByEntryId(id) |
craft.app.entryRevisions.getDraftsByEntryId(id) |
craft.entryRevisions.getEditableDraftsByEntryId(id) |
craft.entryRevisions.getEditableDraftsByEntryId(id) |
craft.entryRevisions.getDraftById(id) |
craft.app.entryRevisions.getDraftById(id) |
craft.entryRevisions.getVersionsByEntryId(id) |
craft.app.entryRevisions.getVersionsByEntryId(id) |
craft.entryRevisions.getVersionById(id) |
craft.app.entryRevisions.getVersionById(id) |
craft.feeds.getFeedItems(url) |
craft.app.feeds.getFeedItems(url) |
craft.fields.getAllGroups() |
craft.app.fields.allGroups |
craft.fields.getGroupById(id) |
craft.app.fields.getGroupById(id) |
craft.fields.getFieldById(id) |
craft.app.fields.getFieldById(id) |
craft.fields.getFieldByHandle(handle) |
craft.app.fields.getFieldByHandle(handle) |
craft.fields.getAllFields() |
craft.app.fields.allFields |
craft.fields.getFieldsByGroupId(id) |
craft.app.fields.getFieldsByGroupId(id) |
craft.fields.getLayoutById(id) |
craft.app.fields.getLayoutById(id) |
craft.fields.getLayoutByType(type) |
craft.app.fields.getLayoutByType(type) |
craft.fields.getAllFieldTypes() |
craft.app.fields.allFieldTypes |
craft.globals.getAllSets() |
craft.app.globals.allSets |
craft.globals.getEditableSets() |
craft.app.globals.editableSets |
craft.globals.getTotalSets() |
craft.app.globals.totalSets |
craft.globals.getTotalEditableSets() |
craft.app.globals.totalEditableSets |
craft.globals.getSetById(id) |
craft.app.globals.getSetById(id) |
craft.globals.getSetByHandle(handle) |
craft.app.globals.getSetByHandle(handle) |
craft.i18n.getAllLocales() |
craft.app.i18n.allLocales |
craft.i18n.getAppLocales() |
craft.app.i18n.appLocales |
craft.i18n.getCurrentLocale() |
craft.app.locale |
craft.i18n.getLocaleById(id) |
craft.app.i18n.getLocaleById(id) |
craft.i18n.getSiteLocales() |
craft.app.i18n.siteLocales |
craft.i18n.getSiteLocaleIds() |
craft.app.i18n.siteLocaleIds |
craft.i18n.getPrimarySiteLocale() |
craft.app.i18n.primarySiteLocale |
craft.i18n.getEditableLocales() |
craft.app.i18n.editableLocales |
craft.i18n.getEditableLocaleIds() |
craft.app.i18n.editableLocaleIds |
craft.i18n.getLocaleData() |
craft.app.i18n.getLocaleById(id) |
craft.i18n.getDatepickerJsFormat() |
craft.app.locale.getDateFormat('short', 'jui') |
craft.i18n.getTimepickerJsFormat() |
craft.app.locale.getTimeFormat('short', 'php') |
craft.request.isGet() |
craft.app.request.isGet |
craft.request.isPost() |
craft.app.request.isPost |
craft.request.isDelete() |
craft.app.request.isDelete |
craft.request.isPut() |
craft.app.request.isPut |
craft.request.isAjax() |
craft.app.request.isAjax |
craft.request.isSecure() |
craft.app.request.isSecureConnection |
craft.request.isLivePreview() |
craft.app.request.isLivePreview 1 |
craft.request.getScriptName() |
craft.app.request.scriptFilename |
craft.request.getPath() |
craft.app.request.pathInfo |
craft.request.getUrl() |
url(craft.app.request.pathInfo) |
craft.request.getSegments() |
craft.app.request.segments |
craft.request.getSegment(num) |
craft.app.request.getSegment(num) |
craft.request.getFirstSegment() |
`craft.app.request.segments |
craft.request.getLastSegment() |
`craft.app.request.segments |
craft.request.getParam(name) |
craft.app.request.getParam(name) |
craft.request.getQuery(name) |
craft.app.request.getQueryParam(name) |
craft.request.getPost(name) |
craft.app.request.getBodyParam(name) |
craft.request.getCookie(name) |
craft.app.request.cookies.get(name) |
craft.request.getServerName() |
craft.app.request.serverName |
craft.request.getUrlFormat() |
craft.app.config.general.usePathInfo |
craft.request.isMobileBrowser() |
craft.app.request.isMobileBrowser() |
craft.request.getPageNum() |
craft.app.request.pageNum |
craft.request.getHostInfo() |
craft.app.request.hostInfo |
craft.request.getScriptUrl() |
craft.app.request.scriptUrl |
craft.request.getPathInfo() |
craft.app.request.getPathInfo(true) |
craft.request.getRequestUri() |
craft.app.request.url |
craft.request.getServerPort() |
craft.app.request.serverPort |
craft.request.getUrlReferrer() |
craft.app.request.referrer |
craft.request.getUserAgent() |
craft.app.request.userAgent |
craft.request.getUserHostAddress() |
craft.app.request.userIP |
craft.request.getUserHost() |
craft.app.request.userHost |
craft.request.getPort() |
craft.app.request.port |
craft.request.getCsrfToken() |
craft.app.request.csrfToken |
craft.request.getQueryString() |
craft.app.request.queryString |
craft.request.getQueryStringWithoutPath() |
craft.app.request.queryStringWithoutPath |
craft.request.getIpAddress() |
craft.app.request.userIP |
craft.request.getClientOs() |
craft.app.request.clientOs |
craft.sections.getAllSections() |
craft.app.sections.allSections |
craft.sections.getEditableSections() |
craft.app.sections.editableSections |
craft.sections.getTotalSections() |
craft.app.sections.totalSections |
craft.sections.getTotalEditableSections() |
craft.app.sections.totalEditableSections |
craft.sections.getSectionById(id) |
craft.app.sections.getSectionById(id) |
craft.sections.getSectionByHandle(handle) |
craft.app.sections.getSectionByHandle(handle) |
craft.systemSettings.[category] (magic getter) |
craft.app.systemSettings.getSettings('category') |
craft.userGroups.getAllGroups() |
craft.app.userGroups.allGroups |
craft.userGroups.getGroupById(id) |
craft.app.userGroups.getGroupById(id) |
craft.userGroups.getGroupByHandle(handle) |
craft.app.userGroups.getGroupByHandle(handle) |
craft.userPermissions.getAllPermissions() |
craft.app.userPermissions.allPermissions |
craft.userPermissions.getGroupPermissionsByUserId(id) |
craft.app.userPermissions.getGroupPermissionsByUserId(id) |
craft.session.isLoggedIn() |
not craft.app.user.isGuest |
craft.session.getUser() |
currentUser |
craft.session.getRemainingSessionTime() |
craft.app.user.remainingSessionTime |
craft.session.getRememberedUsername() |
craft.app.user.rememberedUsername |
craft.session.getReturnUrl() |
craft.app.user.getReturnUrl() |
craft.session.getFlashes() |
craft.app.session.getAllFlashes() |
craft.session.getFlash() |
craft.app.session.getFlash() |
craft.session.hasFlash() |
craft.app.session.hasFlash() |
1 craft.app.request.isLivePreview
is also deprecated, and only will return true
when previewing categories or plugin-supplied element types that don’t support the new previewing system. If you were calling this to work around Craft templating bugs in Live Preview requests, you can simply delete the condition now, and treat Live Preview requests the same as any other request type.
Craft’s extended DateTime class has been removed in Craft 3. Here’s a list of things you used to be able to do in your templates, and what the Craft 3 equivalent is. (The DateTime object is represented by the d
variable. In reality it could be entry.postDate
, now
, etc.)
Old | New |
---|---|
{{ d }} (treated as a string) |
`{{ d |
{{ d.atom() }} |
`{{ d |
{{ d.cookie() }} |
`{{ d |
{{ d.day() }} |
`{{ d |
{{ d.iso8601() }} |
`{{ d |
{{ d.localeDate() }} |
`{{ d |
{{ d.localeTime() }} |
`{{ d |
{{ d.month() }} |
`{{ d |
{{ d.mySqlDateTime() }} |
`{{ d |
{{ d.nice() }} |
`{{ d |
{{ d.rfc1036() }} |
`{{ d |
{{ d.rfc1123() }} |
`{{ d |
{{ d.rfc2822() }} |
`{{ d |
{{ d.rfc3339() }} |
`{{ d |
{{ d.rfc822() }} |
`{{ d |
{{ d.rfc850() }} |
`{{ d |
{{ d.rss() }} |
`{{ d |
{{ d.uiTimestamp() }} |
`{{ d |
{{ d.w3c() }} |
`{{ d |
{{ d.w3cDate() }} |
`{{ d |
{{ d.year() }} |
`{{ d |
The |currency
filter now maps to api:craft\i18n\Formatter::asCurrency(). It still works the same, but the stripZeroCents
argument has been renamed to stripZeros
, and pushed back a couple notches, so you will need to update your templates if you were setting that argument.
Old:
{{ num|currency('USD', true) }}
{{ num|currency('USD', stripZeroCents = true) }}
New:
{{ num|currency('USD', stripZeros = true) }}
Some element query params have been removed:
Element Type | Old Param | What to do instead |
---|---|---|
All of them | childOf |
Use a relatedTo param with a sourceElement key |
All of them | childField |
Use a relatedTo param with a field key |
All of them | parentOf |
Use a relatedTo param with a targetElement key |
All of them | parentField |
Use a relatedTo param with a field key |
All of them | depth |
Use the level param |
Tag | name |
Use the title param |
Tag | setId |
Use the groupId param |
Tag | set |
Use the group param |
Tag | orderBy:"name" |
Set the orderBy param to 'title' |
Some element query params have been renamed in Craft 3. The old params have been deprecated, but will continue to work until Craft 4.
Element Type | Old Param | New Param |
---|---|---|
All of them | order |
orderBy |
All of them | locale |
siteId or site |
All of them | localeEnabled |
enabledForSite |
All of them | relatedTo.sourceLocale |
relatedTo.sourceSite |
Asset | source |
volume |
Asset | sourceId |
volumeId |
Matrix Block | ownerLocale |
site or siteId |
The limit
param is now set to null
(no limit) by default, rather than 100.
If you want to set a param value to an array, you now must type out the array brackets.
Old:
{% set query = craft.entries()
.relatedTo('and', 1, 2, 3) %}
New:
{% set query = craft.entries()
.relatedTo(['and', 1, 2, 3]) %}
In Craft 2, each time you call a parameter-setter method (e.g. .type('article')
), the method would:
- clone the
ElementCriteriaModel
object - set the parameter value on the cloned object
- return the cloned object
That made it possible to execute variations of an element query, without affecting subsequent queries. For example:
{% set query = craft.entries.section('news') %}
{% set articleEntries = query.type('article').find() %}
{% set totalEntries = query.total() %}
Here .type()
is applying the type
parameter to a clone of query
, so it had no effect on query.total()
, which will still return the total number of News entries, regardless of their entry types.
This behavior has changed in Craft 3, though. Now any time you call a parameter-setter method, the method will:
- set the parameter value on the current element query
- return the element query
Which means in the above code example, totalEntries
will be set to the total Article entries, as the type
parameter will still be applied.
If you have any templates that count on the Craft 2 behavior, you can fix them using the clone() function.
{% set query = craft.entries.section('news') %}
{% set articleEntries = clone(query).type('article').all() %}
{% set totalEntries = query.count() %}
The findElementAtOffset()
element query method has been removed in Craft 3. Use nth()
instead.
Some element query methods have been renamed in Craft 3. The old methods have been deprecated, but will continue to work until Craft 4.
Old Method | New Method |
---|---|
ids(criteria) |
ids() (setting criteria params here is now deprecated) |
find() |
all() |
first() |
one() |
last() |
inReverse().one() (see last()) |
total() |
count() |
Support for treating element queries as if they’re arrays has been deprecated in Craft 3, and will be completely removed in Craft 4.
When you need to loop over an element query, you should start explicitly calling .all()
, which will execute the database query and return the array of results:
Old:
{% for entry in craft.entries.section('news') %}...{% endfor %}
{% for asset in entry.myAssetsField %}...{% endfor %}
New:
{% for entry in craft.entries.section('news').all() %}...{% endfor %}
{% for asset in entry.myAssetsField.all() %}...{% endfor %}
When you need to get the total number of results from an element query, you should call the .count()
method:
Old:
{% set total = craft.entries.section('news')|length %}
New:
{% set total = craft.entries.section('news').count() %}
Alternatively, if you already needed to fetch the actual query results, and you didn’t set the offset
or limit
params, you can use the length filter to find the total size of the results array without the need for an extra database query.
{% set entries = craft.entries()
.section('news')
.all() %}
{% set total = entries|length %}
last()
was deprecated in Craft 3 because it isn’t clear that it needs to run two database queries behind the scenes (the equivalent of query.nth(query.count() - 1)
).
In most cases you can replace calls to .last()
with .inReverse().one()
and get the same result, without the extra database query. (inReverse()
will reverse the sort direction of all of the ORDER BY
columns in the generated SQL.)
{# Channel entries are ordered by `postDate DESC` by default, so this will swap
it to `postDate ASC`, returning the oldest News entry: #}
{% set oldest = craft.entries()
.section('news')
.inReverse()
.one() %}
There are two cases where inReverse()
won’t work as expected, though:
- when there is no
ORDER BY
clause in the SQL, therefore nothing to reverse - when the
orderBy
param contains a api:yii\db\Expression object
In those cases, you can just replace the .last()
call with what it’s already doing internally:
{% set query = craft.entries()
.section('news') %}
{% set total = query.count() %}
{% set last = query.nth(total - 1) %}
Tag elements no longer have a name
property. Use title
instead.
All elements’ locale
properties have been deprecated, and will be completely removed in Craft 4. Use siteId
if you need to know an element’s site ID, site.handle
if you need to know its handle, or site.language
if you need to know its site’s language.
Models’ getError('attribute')
methods have been deprecated, and will be completely removed in Craft 4. Use getFirstError('attribute')
instead.
Some locale methods have been deprecated in Craft 3, and will be completely removed in Craft 4:
Old Method | What to do instead |
---|---|
getId() |
id |
getName() |
getDisplayName(craft.app.language) |
getNativeName() |
getDisplayName() |
Your front-end <form>
s and JS scripts that submit to a controller action will need to be updated with the following changes.
action
params must be rewritten in kebab-case
rather than camelCase
.
Old:
<input type="hidden" name="action" value="entries/saveEntry">
New:
<input type="hidden" name="action" value="entries/save-entry">
Some controller actions have been renamed:
Old Controller Action | New Controller Action |
---|---|
categories/createCategory |
categories/save-category |
users/validate |
users/verify-email |
users/saveProfile |
users/save-user |
users/forgotPassword |
users/send-password-reset-email |
redirect
params must be hashed now.
Old:
<input type="hidden" name="redirect" value="foo/bar">
New:
<input type="hidden" name="redirect" value="{{ 'foo/bar'|hash }}">
The redirectInput()
function is provided as a shortcut.
{{ redirectInput('foo/bar') }}
Some redirect
param tokens have been renamed:
Controller Action | Old Token | New Token |
---|---|---|
entries/save-entry |
{entryId} |
{id} |
entry-revisions/save-draft |
{entryId} |
{id} |
entry-revisions/publish-draft |
{entryId} |
{id} |
fields/save-field |
{fieldId} |
{id} |
globals/save-set |
{setId} |
{id} |
sections/save-section |
{sectionId} |
{id} |
users/save-user |
{userId} |
{id} |
CSRF protection is enabled by default in Craft 3. If you didn’t already have it enabled (via the enableCsrfProtection
config setting), each of your front-end <form>
s and JS scripts that submit to a controller action will need to be updated with a new CSRF token param.
{% set csrfParam = craft.app.request.csrfParam %}
{% set csrfToken = craft.app.request.csrfToken %}
<input type="hidden" name="{{ csrfParam }}" value="{{ csrfToken }}">
The csrfInput()
function is provided as a shortcut.
{{ csrfInput() }}