Homepage
Main navigation
Main content
Additional information
Login / Sign up
Quality Guidelines
About
GitHub
Propose new content
Winter CMS resources and help articles
Simple and to the point. Optimized by the community.
×
Login / Sign up
Quality Guidelines
About
GitHub
Propose new content
Edit trick
Changes will be published after manual review
Title
Give your trick a describing title. Do
not
start with «How to...».
Your trick
Keep it short and concise! Markdown is supported.
It's a nice when URL is speaking about its content and is localized. Also for marketing puposes. But that doesn't work out of the box with the language selector templates out there. In your Model.php add this ``` <?php namespace Yourname\Yourplugin\Models; . . . class Yourmodel extends Model { use \Winter\Rain\Database\Traits\Sluggable; public $implement = ['RainLab.Translate.Behaviors.TranslatableModel']; public $translatable = [ ['slug', 'index' => true], ['title', 'index' => true], ]; protected $slugs = ['slug' => 'title']; public $rules = [ 'slug' => 'required', 'title' => 'required' ]; /* needed for url translation */ public static function translateParams($params, $oldLocale, $newLocale) { $newParams = $params; foreach ($params as $paramName => $paramValue) { $records = self::transWhere($paramName, $paramValue, $oldLocale)->first(); if ($records) { $records->translateContext($newLocale); $newParams[$paramName] = $records->$paramName; } } return $newParams; } ```
References
Add additional online resources to your trick
+ Add reference
Topics
If your trick fits more than one topic select multiple. Select at least one.
Backend
Plugin Development
CMS
Twig
Themes
Deployment
Tags
You can use existing tags or create new ones. Add at least one.
Submit for review
Cancel
We use cookies to measure the performance of this website. Do you want to accept these cookies?
Accept
Decline