PHP code example of tastyigniter / ti-ext-translate
1. Go to this page and download the library: Download tastyigniter/ti-ext-translate library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
use Igniter\System\Models\Language;
use Livewire\Component;
class LocalePicker extends Component
{
public function render()
{
return view('localepicker', [
'locales' => Language::listSupported(),
'activeLocale' => resolve('translator.localization')->getLocale(),
]);
}
public function onSwitchLocale($locale)
{
resolve('translator.localization')->setLocale($locale);
return redirect()->back();
}
}
use Igniter\Translate\Actions\TranslatableModel;
use Igniter\Flame\Database\Model;
class Category extends Model
{
public array $implement = [TranslatableModel::class];
public function translatable() {
return ['name'];
}
}
use Igniter\Cart\Models\Category;
use Igniter\Translate\Actions\TranslatableModel;
public function boot()
{
Category::extend(function ($model) {
$model->implement[] = TranslatableModel::class;
$model->addDynamicMethod('translatable', function () {
return ['name', 'description'];
});
});
}
$category = Category::find(1);
$category->name = 'Nom de la catégorie';
$category->save();
$category = Category::create([
'name' => [
'en' => 'Category Name',
'fr' => 'Nom de la catégorie',
],
]);
resolve('translator.localization')->setLocale('fr');
$category = Category::find(1);
$category->name = 'Nom de la catégorie';
$category->save();
$category = Category::find(1);
$category->name = [
'en' => 'Category Name',
'fr' => 'Nom de la catégorie',
];
$category->save();