Download the PHP package ianreid/switcher without Composer
On this page you can find all versions of the php package ianreid/switcher. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ianreid/switcher
More information about ianreid/switcher
Files in ianreid/switcher
Package switcher
Short Description A flexible and easy-to-use sites switcher for Craft CMS.
License MIT
Informations about the package switcher
Switcher for Craft CMS
Requirements
This plugin requires Craft CMS ^4.x or ^5.x
Installation
To install the plugin, follow these instructions.
-
In your terminal, go to your Craft project:
cd /path/to/project
-
Then tell Composer to load the plugin:
composer require ianreid/switcher -w && php craft plugin/install switcher
Overview
The Switcher plugin for Craft CMS provides a Twig function for generating a site switcher on your webpage. This switcher can be configured to display sites from the current group or all groups.
Twig function
The getSwitcherSites()
Twig function comes with several parameters.
getSwitcherSites()
Parameters | Type | Default | Description |
---|---|---|---|
source | Element or Array | null | Element or array from which the sites are extracted. |
removeCurrent | Bool | true | Determines whether the current site should be excluded from the output. |
onlyCurrentGroup | Bool | true | Specifies whether only sites from the current group should be shown. |
redirectHomeIfMissing | Bool | false | Decides whether to redirect to the home page if a site is missing. |
Recommended usage
We suggest setting the source on a per-template basis. You can establish a fallback to entry
, which allows you to set the variable for elements like categories, products, or an array of custom routes.
1. Define an availableSites variable in your main layout file
{% set availableSites = getSwitcherSites(switcherCustomSource|default(entry ?? null)) %}
In this variable, we use the switcherCustomSource
variable as the source, with entry
as the fallback, and then null
.
You can then pass this variable to your navbar or any file that includes a site/languages switcher to prevent a redundant query.
By defining an availableSites
variable at the top of your main layout file, you can also use it for the og:locale:alternate
meta in the head, the <link rel=alternate>
, etc.
2. Determine your source in your page template
For any craft\base\Element
other than Entry
(the default in the previous example), you can do the following in your page template :
or
or for an array (ex: with custom routes)
Output
The function returns an array of items with two keys: "url" and "site". The "url" key is the site's URL, and the "site" key is the site model.
Site Switcher Examples
Basic usage
Grouping Sites by Groups
Displaying Only the First Two Letters of the Language
Using for og:locale:alternate in <head>
Use your previously created availableSites
variable if you wish to apply the same parameters, or create a different variable if not.
:bulb: You must define your variable PRIOR to the following meta property.
:bulb: All these examples can be adjusted based on the function parameters.
This plugin is brought to you by Ian Reid Langevin