Skip to content
Snippets Groups Projects

Add tutorial from outcast creatures, see dgo.to/3495880

Merged jurgenhaas requested to merge develop into main
@@ -6,13 +6,17 @@ tags:
---
# Taxonomy url alias with an anchor
This will walk you through how to re-write a taxonomy's url alias with an anchor ('#') (on creation or save), which will work with a views glossary view of taxonomy terms.
This will walk you through how to re-write a taxonomy's url alias with an anchor ('#') (on creation or save).
For this example we will use movie "gCinema (genre)" taxonomy.
Go to `/admin/config/workflow/eca` and create a "New Model", this will be our canvas to work with.
We need to add two fields to our taxonomy term at "/admin/structure/taxonomy/manage/cinema_genre/overview/fields"
All fields will be "plain text" "simeple text". Name the fields:
field_cinema_g_name_html, and field_cinema_g_name_node_view.
- First things first, lets give our model a name, so on the right side of your screen, you will find your details palate, (which we will refer later also).
- General --> Name: Taxonomy url alias
Now go to `/admin/config/workflow/eca` and create a "New Model", this will be our canvas to work with.
- First things first, lets give our model a name, so on the right side of your screen, you will find your details palate, (which we will refer later also).
- General --> Name: Cinema (genre)
Now click the "Save" button at the top of your screen"
- Drag and drop "Create StartEvent" (the circle from the palate on the left), This will be our "Event to fire on" That will tell eca when to activate our code.
@@ -21,53 +25,57 @@ Now click the "Save" button at the top of your screen"
Next we will add create a task for our code to do.
Click on our circle on our canvas, and you will see a small pop-up palete that contains a few items. Drag and drop the square or "Append Task" on to your canvas.
- The first task is to remove "the, an, a" from the name so it sorts correctly. While clicked on your new "Task" (the square we just placed), fill in the following options
- General -- > Name: remove ('A', 'An' and 'The')
- Template: Tamper find replace regex
- Custom Properties -- > Data to be Tampered: `[term:name]`
- Custom Properties -- > REGEX to find: `/^(The|An|A)\\s+/`
- Custom Properties -- > Result token name: `[taxonomy_url_remove_an]`
Drag another "Append Task" onto your canvas.
Now we are going to move all text to lowercase since it is a url
This task we are going to fill the "field_cinema_g_name_node_view" field that we created in our taxonomy term.
- Genreal --> Name: set field value
- Template: Entity: set field value
- Custom properties --> Field name: field_cinema_g_name_node_view
- Custom properties --> Field value: [term:name]
(the reason we move the term name directly to the text field because in drupal using the term name in views and other systems is a bit tough, but a text field all system support)
Click on the circle again and add another task. This task chain will fill the "field_cinema_g_name_html" field we created on our taxonomy term.
(the first event in this chain is to replace the spaces with dashes)
- General --> Name: replace
- Template: Tamper: find replace regex
- Custom properties --> Data to be tampered: [term:name]
- Custom properties --> Regex to find: /[\s]/
- Custom properties --> Replacement pattern: -
- Custom properties --> Result token name: [cinema_g_name_html_replace]
While clicked on the square, use the small pop-up and add a task.
(now we need to take our resulting string from the above task and turn it all lowercase)
- General --> Name: lowercase
- Template: Tamper convert case
- Custom Properties -- > Data to be tampered: `[taxonomy_url_remove_an]`
- Custom Properties -- > How to convert case: Convert to lowercase
- Custom Properties -- > Result token name: `[taxonomy_url_lowercase]`
Drag another "Append task" onto your canvas.
Since this is a url we need to remove characters that don't parse in a url for this we will use regex again
- General -- > Name: remove
- Template: Tamper find replace regex
- Custom Properties -- > Data to be Tampered: `[taxonomy_url_lowercase]`
- Custom Properties -- > REGEX to find: `/\[^a-zA-Z0-9\\s\]/`
- Custom Properties -- > Result token name: `[taxonomy_url_remove]`
Drag another "Append task" onto your canvas.
Since this is for a url, we need to replace the spaces with dashes.
- General -- > Name: replace
- Template: Tamper find replace regex
- Custom Properties -- > Data to be Tampered: `[taxonomy_url_remove]`
- Custom Properties -- > REGEX to find: `/(\\s|(\\s)\\1+)+/`
- Custom Properties -- > Result token name: `[taxonomy_url_replace]`
Now we need to truncate the term to one letter so that it will work with views glossary setting.
- General -- > Name: truncate
- Template: Tamper truncate
- Custom Properties -- > Data to be Tampered: `[taxonomy_url_replace]`
- Custom Properties -- > Number of characters: 1
- Custom Properties -- > Result token name: `[taxonomy_url_trun]`
Now we need to set that target field, which is "URL alias" on the term edit form.
- General -- > Name: set field
- Template: Entity set field value
- Custom Properties -- > Field name: path
- Custom Properties -- > Field value: `/[taxonomy_url_trun]#[taxonomy_url_replace]`
Now when a term is created or saved, the url alias to written for you!
- Custom properties -- > Data to be tampered: `[cinema_g_name_html_replace]`
- Custom properties -- > How to convert case: Convert to lowercase
- Custom properties -- > Result token name: `[cinema_g_name_html_lower]`
While clicked on the square, use the small pop-up and add a task.
(we now need to set the value of "field_cinema_g_name_html)
- General --> Name: set field value
- Template: Entity: set field value
- Custom properties --> Field name: field_cinema_g_name_html
- Custom properties --> Field value: [cinema_g_name_html_lower]
-----
Now click on the circle again and add another task.
(we need to set the value of the url alias of our taxonomy term)
- General --> Name: replace
- Template: Tamper: find replace regex
- Custom properties --> Data to be tampered: [term:name]
- Custom properties --> Regex to find: /[\s]/
- Custom properties --> Replacement pattern: -
- Custom properties --> Result token name: [cinema_g_path_replace]
While clicked on the square, use the small pop-up and add a task.
(now we need to take our resulting string from the above task and turn it all lowercase)
- General --> Name: lowercase
- Template: Tamper convert case
- Custom properties -- > Data to be tampered: `[cinema_g_path_replace]`
- Custom properties -- > How to convert case: Convert to lowercase
- Custom properties -- > Result token name: `[cinema_g_path_lower]`
While clicked on the square, use the small pop-up and add a task.
(we now need to set the value of "field_cinema_g_name_html)
- General --> Name: set field value
- Template: Entity: set field value
- Custom properties --> Field name: path
- Custom properties --> Field value: [cinema_g_path_lower]
\ No newline at end of file
Loading